-
-
Notifications
You must be signed in to change notification settings - Fork 21.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90716 from dalexeev/gds-fix-export-annotation-issues
GDScript: Fix some export annotation issues
- Loading branch information
Showing
13 changed files
with
249 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
modules/gdscript/tests/scripts/analyzer/features/export_enum_as_dictionary.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
GDTEST_OK | ||
var test_1: Dictionary | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_2: TestExportEnumAsDictionary.MyEnum | ||
hint=ENUM hint_string="A:0,B:1,C:2" usage=DEFAULT|SCRIPT_VARIABLE|CLASS_IS_ENUM | ||
hint=ENUM hint_string="A:0,B:1,C:2" usage=DEFAULT|SCRIPT_VARIABLE|CLASS_IS_ENUM class_name=&"TestExportEnumAsDictionary.MyEnum" | ||
var test_3: Dictionary | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_4: TestExportEnumAsDictionary.MyEnum | ||
hint=ENUM hint_string="A:0,B:1,C:2" usage=DEFAULT|SCRIPT_VARIABLE|CLASS_IS_ENUM | ||
hint=ENUM hint_string="A:0,B:1,C:2" usage=DEFAULT|SCRIPT_VARIABLE|CLASS_IS_ENUM class_name=&"TestExportEnumAsDictionary.MyEnum" | ||
var test_5: TestExportEnumAsDictionary.MyEnum | ||
hint=ENUM hint_string="A:0,B:1,C:2" usage=DEFAULT|SCRIPT_VARIABLE|CLASS_IS_ENUM | ||
hint=ENUM hint_string="A:0,B:1,C:2" usage=DEFAULT|SCRIPT_VARIABLE|CLASS_IS_ENUM class_name=&"TestExportEnumAsDictionary.MyEnum" |
24 changes: 12 additions & 12 deletions
24
modules/gdscript/tests/scripts/parser/features/annotations.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
GDTEST_OK | ||
var test_1: int = null | ||
hint=ENUM hint_string="A,B,C" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=ENUM hint_string="A,B,C" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_2: int = null | ||
hint=ENUM hint_string="A,B,C" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=ENUM hint_string="A,B,C" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_3: int = null | ||
hint=ENUM hint_string="A,B,C" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=ENUM hint_string="A,B,C" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_4: int = null | ||
hint=ENUM hint_string="A,B,C" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=ENUM hint_string="A,B,C" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_5: int = 0 | ||
hint=NONE hint_string="int" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_6: int = 0 | ||
hint=NONE hint_string="int" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_7: int = 42 | ||
hint=NONE hint_string="int" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_8: int = 0 | ||
hint=NONE hint_string="int" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_9: int = 0 | ||
hint=NONE hint_string="int" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_10: int = 0 | ||
hint=NONE hint_string="int" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_11: int = 0 | ||
hint=NONE hint_string="int" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" | ||
var test_12: int = 0 | ||
hint=NONE hint_string="int" usage=DEFAULT|SCRIPT_VARIABLE | ||
hint=NONE hint_string="" usage=DEFAULT|SCRIPT_VARIABLE class_name=&"" |
Oops, something went wrong.