EnumerationsTokenKindOn this pageTokenKind An exported enum describing the different kinds of tokens that the lexer emits.Index Enumeration MembersAMPATBANGBLOCK_STRINGBRACE_LBRACE_RBRACKET_LBRACKET_RCOLONCOMMENTDOLLAREOFEQUALSFLOATINTNAMEPAREN_LPAREN_RPIPEQUESTION_MARKSOFSPREADSTRINGEnumeration Members AMPAMP: & = "&"ATAT: @ = "@"BANGBANG: ! = "!"BLOCK_STRINGBLOCK_STRING: BlockString = "BlockString"BRACE_LBRACE_L: { = "{"BRACE_RBRACE_R: } = "}"BRACKET_LBRACKET_L: [ = "["BRACKET_RBRACKET_R: ] = "]"COLONCOLON: : = ":"COMMENTCOMMENT: Comment = "Comment"DOLLARDOLLAR: $ = "$"EOFEOF: <EOF> = "<EOF>"EQUALSEQUALS: = = "="FLOATFLOAT: Float = "Float"INTINT: Int = "Int"NAMENAME: Name = "Name"PAREN_LPAREN_L: ( = "("PAREN_RPAREN_R: ) = ")"PIPEPIPE: | = "|"QUESTION_MARKQUESTION_MARK: ? = "?"SOFSOF: <SOF> = "<SOF>"SPREADSPREAD: ... = "..."STRINGSTRING: String = "String"
An exported enum describing the different kinds of tokens that the lexer emits.