Merge pull request #620 from rdrpenguin04/patch-1
Add true and false as JS Keywords
This commit is contained in:
commit
a783eae76b
|
@ -936,7 +936,8 @@ static const char* const JsKeywords [] =
|
||||||
"break", "do", "instanceof", "typeof", "case", "else", "new",
|
"break", "do", "instanceof", "typeof", "case", "else", "new",
|
||||||
"var", "catch", "finally", "return", "void", "continue", "for",
|
"var", "catch", "finally", "return", "void", "continue", "for",
|
||||||
"switch", "while", "debugger", "function", "this", "with",
|
"switch", "while", "debugger", "function", "this", "with",
|
||||||
"default", "if", "throw", "delete", "in", "try", "const"
|
"default", "if", "throw", "delete", "in", "try", "const",
|
||||||
|
"true", "false"
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline bool isalnum_(char c) {return isalnum(c) || c == '_';}
|
static inline bool isalnum_(char c) {return isalnum(c) || c == '_';}
|
||||||
|
@ -1034,4 +1035,4 @@ const tic_script_config* getJsScriptConfig()
|
||||||
|
|
||||||
s32 duk_timeout_check(void* udata){return 0;}
|
s32 duk_timeout_check(void* udata){return 0;}
|
||||||
|
|
||||||
#endif /* defined(TIC_BUILD_WITH_JS) */
|
#endif /* defined(TIC_BUILD_WITH_JS) */
|
||||||
|
|
Loading…
Reference in New Issue