Create a lexer
Source string to tokenize
Keyword index amounts to
Previous valid source index
Entire value an index amounts to
Source index, or the current character index to lex
Source to tokenize
Expose Lexer#_keyword
Expose Lexer#_prev
Expose Lexer#_value
Checks if next index is blank or a newline / EOL
Gets charcode of escaped character by it's base (radix)
Espaces current index character
Finds entire keyword and sets in keywords
Checks if character is alpha
character to check
Checks if the charcter is alphanumerical
character to check
Checks if the charcter is a digit
character to check
Checks if the charcter is a hexadeximal
character to check
Returns true if the character is a whitespace
character to check
Finds entire json object and places in values
Ignores entire line the comment exists on
Check if the character matches the source index
Match on a condition
Match until a condition
Tokenize next (or first) character in Lexer#src
Finds entire int or float value and sets in values
Finds entire quoted string and places in values
Set value to start index (previous) and current index
Check if index is a whitespace or a newline
Generated using TypeDoc
Lexer class