Reorder reserved words by categories
They were previously kind of sorted with a mix between alphabetical and logical ordering, which made it hard to spot duplicates or missing words.
This commit is contained in:
parent
e4cb104e6d
commit
8151110002
1 changed files with 34 additions and 29 deletions
|
@ -2677,40 +2677,45 @@ void GDScriptLanguage::frame() {
|
||||||
void GDScriptLanguage::get_reserved_words(List<String> *p_words) const {
|
void GDScriptLanguage::get_reserved_words(List<String> *p_words) const {
|
||||||
|
|
||||||
static const char *_reserved_words[]={
|
static const char *_reserved_words[]={
|
||||||
"break",
|
// operators
|
||||||
"class",
|
|
||||||
"continue",
|
|
||||||
"const",
|
|
||||||
"else",
|
|
||||||
"elif",
|
|
||||||
"enum",
|
|
||||||
"extends" ,
|
|
||||||
"onready",
|
|
||||||
"for" ,
|
|
||||||
"func" ,
|
|
||||||
"if" ,
|
|
||||||
"in" ,
|
|
||||||
"null" ,
|
|
||||||
"not" ,
|
|
||||||
"return" ,
|
|
||||||
"self" ,
|
|
||||||
"while" ,
|
|
||||||
"true" ,
|
|
||||||
"false" ,
|
|
||||||
"tool",
|
|
||||||
"var",
|
|
||||||
"setget",
|
|
||||||
"pass",
|
|
||||||
"and",
|
"and",
|
||||||
|
"in",
|
||||||
|
"not",
|
||||||
"or",
|
"or",
|
||||||
"export",
|
// types and values
|
||||||
"assert",
|
"false",
|
||||||
"breakpoint",
|
|
||||||
"yield",
|
|
||||||
"static",
|
|
||||||
"float",
|
"float",
|
||||||
"int",
|
"int",
|
||||||
|
"null",
|
||||||
|
"self",
|
||||||
|
"true",
|
||||||
|
// functions
|
||||||
|
"assert",
|
||||||
|
"breakpoint",
|
||||||
|
"class",
|
||||||
|
"extends",
|
||||||
|
"func",
|
||||||
|
"setget",
|
||||||
"signal",
|
"signal",
|
||||||
|
"tool",
|
||||||
|
"yield",
|
||||||
|
// var
|
||||||
|
"const",
|
||||||
|
"enum",
|
||||||
|
"export",
|
||||||
|
"onready",
|
||||||
|
"static",
|
||||||
|
"var",
|
||||||
|
// control flow
|
||||||
|
"break",
|
||||||
|
"continue",
|
||||||
|
"if",
|
||||||
|
"elif",
|
||||||
|
"else",
|
||||||
|
"for",
|
||||||
|
"pass",
|
||||||
|
"return",
|
||||||
|
"while",
|
||||||
0};
|
0};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue