Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Position ¶
type Position struct { Filename string Offset int //offset relative to entire file Line int Col int //offset relative to each line }
Position is the location of a code point in the source
type TokenType ¶
type TokenType int
token
const ( TOKEN_ILLEGAL TokenType = (iota - 1) // Illegal token TOKEN_EOF //End Of File TOKEN_PLUS // + TOKEN_MINUS // - TOKEN_MULTIPLY // * TOKEN_DIVIDE // '/' TOKEN_MOD // '%' TOKEN_POWER // ** TOKEN_LPAREN // ( TOKEN_RPAREN // ) TOKEN_ASSIGN // = TOKEN_SEMICOLON //; TOKEN_LBRACE // { TOKEN_RBRACE // } TOKEN_NUMBER //10 or 10.1 TOKEN_IDENTIFIER //identifier //reserved keywords TOKEN_TRUE //true TOKEN_FALSE //false TOKEN_NIL // nil TOKEN_LET //let TOKEN_RETURN //return )
func LookupIdent ¶
Click to show internal directories.
Click to hide internal directories.