34 lines
333 B
C
34 lines
333 B
C
|
|
#ifndef ENUM_TOKEN_KIND
|
|
#define ENUM_TOKEN_KIND
|
|
|
|
enum token_kind
|
|
{
|
|
tk_error,
|
|
|
|
tk_EOF,
|
|
|
|
tk_newline,
|
|
|
|
tk_literal,
|
|
|
|
tk_dot,
|
|
|
|
tk_arrow,
|
|
|
|
tk_semicolon,
|
|
|
|
tk_identifier,
|
|
|
|
tk_oparen,
|
|
|
|
tk_cparen,
|
|
|
|
tk_colon,
|
|
|
|
tk_lambda,
|
|
|
|
tk_comma,
|
|
};
|
|
|
|
#endif
|