fn lex_literal_string(stream: &mut LocatingSlice<&'_ str>) -> TokenExpand description
Process literal string
;; Literal String
literal-string = apostrophe *literal-char apostrophe
apostrophe = %x27 ; ' apostrophe
literal-char = %x09 / %x20-26 / %x28-7E / non-asciiยงSafety
streammust be UTF-8stream[0] == b'\''