Created
November 1, 2016 02:37
-
-
Save gberger/059ae96c3cb196d4a0a46eaa450201fa to your computer and use it in GitHub Desktop.
Lua Tokens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
257 TK_AND = FIRST_RESERVED | |
258 TK_BREAK | |
259 TK_DO | |
260 TK_ELSE | |
261 TK_ELSEIF | |
262 TK_END | |
263 TK_FALSE | |
264 TK_FOR | |
265 TK_FUNCTION | |
266 TK_GOTO | |
267 TK_IF | |
268 TK_IN | |
269 TK_LOCAL | |
270 TK_NIL | |
271 TK_NOT | |
272 TK_OR | |
273 TK_REPEAT | |
274 TK_RETURN | |
275 TK_THEN | |
276 TK_TRUE | |
277 TK_UNTIL | |
278 TK_WHILE | |
279 TK_IDIV | |
280 TK_CONCAT | |
281 TK_DOTS | |
282 TK_EQ | |
283 TK_GE | |
284 TK_LE | |
285 TK_NE | |
286 TK_SHL | |
287 TK_SHR | |
288 TK_DBCOLON | |
289 TK_EOS | |
290 TK_FLT | |
291 TK_INT | |
292 TK_NAME | |
293 TK_STRING |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment