Add "bool" to GDScript reserverd keywords

Noticed that "bool" wasn't highlighted when used like `export(bool) var is_xy = false`
This commit is contained in:
Andreas Haas 2016-06-24 17:45:59 +02:00
parent 95e3279d34
commit c871cf6801

View file

@ -1709,6 +1709,7 @@ void GDScriptLanguage::get_reserved_words(List<String> *p_words) const {
"false", "false",
"float", "float",
"int", "int",
"bool",
"null", "null",
"PI", "PI",
"self", "self",