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:
Andreas Haas 2016-06-24 17:45:59 +02:00 committed by Rémi Verschelde
parent c015341221
commit f7436c7d16

View file

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