Add missing keywords in ConfigCompiler::GetKeywords

refs #9960
This commit is contained in:
Gunnar Beutner 2015-10-07 06:09:55 -07:00
parent 8136cda367
commit 9eb7cfa620
2 changed files with 3 additions and 1 deletions

View File

@ -169,7 +169,7 @@ object return T_OBJECT;
template return T_TEMPLATE;
include return T_INCLUDE;
include_recursive return T_INCLUDE_RECURSIVE;
include_zones return T_INCLUDE_ZONES;
include_zones return T_INCLUDE_ZONES;
library return T_LIBRARY;
null return T_NULL;
true { yylval->boolean = 1; return T_BOOLEAN; }

View File

@ -323,6 +323,7 @@ const std::vector<String>& ConfigCompiler::GetKeywords(void)
keywords.push_back("template");
keywords.push_back("include");
keywords.push_back("include_recursive");
keywords.push_back("include_zones");
keywords.push_back("library");
keywords.push_back("null");
keywords.push_back("true");
@ -333,6 +334,7 @@ const std::vector<String>& ConfigCompiler::GetKeywords(void)
keywords.push_back("globals");
keywords.push_back("locals");
keywords.push_back("use");
keywords.push_back("ignore_on_error");
keywords.push_back("apply");
keywords.push_back("to");
keywords.push_back("where");