Add "bool" to GDScript reserverd keywords
Noticed that "bool" wasn't highlighted when used like `export(bool) var is_xy = false`
(cherry picked from commit c871cf6801
)
This commit is contained in:
parent
c015341221
commit
f7436c7d16
|
@ -2687,6 +2687,7 @@ void GDScriptLanguage::get_reserved_words(List<String> *p_words) const {
|
||||||
"false",
|
"false",
|
||||||
"float",
|
"float",
|
||||||
"int",
|
"int",
|
||||||
|
"bool",
|
||||||
"null",
|
"null",
|
||||||
"PI",
|
"PI",
|
||||||
"self",
|
"self",
|
||||||
|
|
Loading…
Reference in New Issue