Reserve 'builtin' as a keyword.

This commit is contained in:
David Anderson 2014-12-12 21:29:28 -08:00
parent f9d92b0eba
commit b607bfeca9
2 changed files with 2 additions and 0 deletions

View File

@ -399,6 +399,7 @@ enum TokenKind {
tASSERT, tASSERT,
tBEGIN, tBEGIN,
tBREAK, tBREAK,
tBUILTIN,
tCATCH, tCATCH,
tCASE, tCASE,
tCAST_TO, tCAST_TO,

View File

@ -1964,6 +1964,7 @@ const char *sc_tokens[] = {
"assert", "assert",
"*begin", "*begin",
"break", "break",
"builtin",
"catch", "catch",
"case", "case",
"cast_to", "cast_to",