Skip to content

Commit

Permalink
refactor(tokenizer): Remove "continue" keyword from reserved keywords…
Browse files Browse the repository at this point in the history
… lookup
  • Loading branch information
bytexenon committed Jul 30, 2024
1 parent b4f7c64 commit 92dbc3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion the-tiny-lua-compiler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ local TOKENIZER_RESERVED_KEYWORDS_LOOKUP = createLookupTable({
"while", "do", "end", "for",
"local", "repeat", "until", "return",
"in", "if", "else", "elseif",
"function", "then", "break", "continue"
"function", "then", "break"
})

-- Lookup for operators.
Expand Down

0 comments on commit 92dbc3d

Please sign in to comment.