aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/moon_parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'MoonParser/moon_parser.h')
-rw-r--r--MoonParser/moon_parser.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/MoonParser/moon_parser.h b/MoonParser/moon_parser.h
index bf618aa..6f9ef8f 100644
--- a/MoonParser/moon_parser.h
+++ b/MoonParser/moon_parser.h
@@ -21,11 +21,5 @@ struct State
21 size_t stringOpen; 21 size_t stringOpen;
22 std::stack<int> indents; 22 std::stack<int> indents;
23 std::stack<bool> doStack; 23 std::stack<bool> doStack;
24 std::unordered_set<std::string> keywords = { 24 static std::unordered_set<std::string> keywords;
25 "and", "while", "else", "using", "continue",
26 "local", "not", "then", "return", "from",
27 "extends", "for", "do", "or", "export",
28 "class", "in", "unless", "when", "elseif",
29 "switch", "break", "if", "with", "import", "true", "false", "nil"
30 };
31}; 25};