parse String
fun parseString( source: A_String, startPosition: Int, startLineNumber: Int, lexer: A_Lexer): A_Token
Content copied to clipboard
Attempt to parse string from the given string, starting at the given position, and treating it as starting at the given line number.
Return
The resulting token, if successful. Note that the size of the token's lexeme (A_Token.string) accurately conveys how many codepoints were consumed.
Parameters
Throws
If a string token could not be parsed starting at the given position.