1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

GDScript: fix highlighting '.' after global class name

This commit is contained in:
Rune
2022-10-11 22:18:19 -07:00
parent 6b986f1855
commit 624af7e032
2 changed files with 15 additions and 11 deletions

View File

@@ -47,7 +47,8 @@ private:
Vector<ColorRegion> color_regions;
HashMap<int, int> color_region_cache;
HashMap<StringName, Color> keywords;
HashMap<StringName, Color> class_names;
HashMap<StringName, Color> reserved_keywords;
HashMap<StringName, Color> member_keywords;
HashSet<StringName> global_functions;