summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-09-04 18:55:27 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-09-04 18:55:27 +0200
commit721d280b8a7aad3ba409fad0ee9d9833876dc8fa (patch)
treeb9a5dba70fc1aba29008890d4a991a9e80bb736a /modules/gdscript/tests/scripts
parenta1012058dd8cf9da42c36a75232e54f738f51314 (diff)
parent171c522290101aa3f30f4442dd5a078820b64d74 (diff)
downloadredot-engine-721d280b8a7aad3ba409fad0ee9d9833876dc8fa.tar.gz
Merge pull request #96326 from HolonProduction/completion-hacks-and-fixes
Autocompletion: Reintroduce enum options on assignment
Diffstat (limited to 'modules/gdscript/tests/scripts')
-rw-r--r--modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute.cfg19
-rw-r--r--modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute.gd7
-rw-r--r--modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute_identifier.cfg19
-rw-r--r--modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute_identifier.gd7
-rw-r--r--modules/gdscript/tests/scripts/completion/assignment_options/enum_identifier.cfg12
-rw-r--r--modules/gdscript/tests/scripts/completion/assignment_options/enum_identifier.gd7
-rw-r--r--modules/gdscript/tests/scripts/completion/assignment_options/enum_no_identifier.cfg12
-rw-r--r--modules/gdscript/tests/scripts/completion/assignment_options/enum_no_identifier.gd7
8 files changed, 90 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute.cfg b/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute.cfg
new file mode 100644
index 0000000000..e4759ac76b
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute.cfg
@@ -0,0 +1,19 @@
+[output]
+include=[
+ {"display": "new"},
+ {"display": "SIZE_EXPAND"},
+ {"display": "SIZE_EXPAND_FILL"},
+ {"display": "SIZE_FILL"},
+ {"display": "SIZE_SHRINK_BEGIN"},
+ {"display": "SIZE_SHRINK_CENTER"},
+ {"display": "SIZE_SHRINK_END"},
+]
+exclude=[
+ {"display": "Control.SIZE_EXPAND"},
+ {"display": "Control.SIZE_EXPAND_FILL"},
+ {"display": "Control.SIZE_FILL"},
+ {"display": "Control.SIZE_SHRINK_BEGIN"},
+ {"display": "Control.SIZE_SHRINK_CENTER"},
+ {"display": "Control.SIZE_SHRINK_END"},
+ {"display": "contro_var"}
+]
diff --git a/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute.gd b/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute.gd
new file mode 100644
index 0000000000..4aeafb2e0a
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute.gd
@@ -0,0 +1,7 @@
+extends Control
+
+var contro_var
+
+func _ready():
+ size_flags_horizontal = Control.➡
+ pass
diff --git a/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute_identifier.cfg b/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute_identifier.cfg
new file mode 100644
index 0000000000..e4759ac76b
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute_identifier.cfg
@@ -0,0 +1,19 @@
+[output]
+include=[
+ {"display": "new"},
+ {"display": "SIZE_EXPAND"},
+ {"display": "SIZE_EXPAND_FILL"},
+ {"display": "SIZE_FILL"},
+ {"display": "SIZE_SHRINK_BEGIN"},
+ {"display": "SIZE_SHRINK_CENTER"},
+ {"display": "SIZE_SHRINK_END"},
+]
+exclude=[
+ {"display": "Control.SIZE_EXPAND"},
+ {"display": "Control.SIZE_EXPAND_FILL"},
+ {"display": "Control.SIZE_FILL"},
+ {"display": "Control.SIZE_SHRINK_BEGIN"},
+ {"display": "Control.SIZE_SHRINK_CENTER"},
+ {"display": "Control.SIZE_SHRINK_END"},
+ {"display": "contro_var"}
+]
diff --git a/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute_identifier.gd b/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute_identifier.gd
new file mode 100644
index 0000000000..47e9bd5a67
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/assignment_options/enum_attribute_identifier.gd
@@ -0,0 +1,7 @@
+extends Control
+
+var contro_var
+
+func _ready():
+ size_flags_horizontal = Control.SIZE➡
+ pass
diff --git a/modules/gdscript/tests/scripts/completion/assignment_options/enum_identifier.cfg b/modules/gdscript/tests/scripts/completion/assignment_options/enum_identifier.cfg
new file mode 100644
index 0000000000..5cc4ec5fd3
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/assignment_options/enum_identifier.cfg
@@ -0,0 +1,12 @@
+[output]
+include=[
+ {"display": "Control.SIZE_EXPAND"},
+ {"display": "Control.SIZE_EXPAND_FILL"},
+ {"display": "Control.SIZE_FILL"},
+ {"display": "Control.SIZE_SHRINK_BEGIN"},
+ {"display": "Control.SIZE_SHRINK_CENTER"},
+ {"display": "Control.SIZE_SHRINK_END"},
+]
+exclude=[
+ {"display": "contro_var"}
+]
diff --git a/modules/gdscript/tests/scripts/completion/assignment_options/enum_identifier.gd b/modules/gdscript/tests/scripts/completion/assignment_options/enum_identifier.gd
new file mode 100644
index 0000000000..5c96720bd3
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/assignment_options/enum_identifier.gd
@@ -0,0 +1,7 @@
+extends Control
+
+var contro_var
+
+func _ready():
+ size_flags_horizontal = Con➡
+ pass
diff --git a/modules/gdscript/tests/scripts/completion/assignment_options/enum_no_identifier.cfg b/modules/gdscript/tests/scripts/completion/assignment_options/enum_no_identifier.cfg
new file mode 100644
index 0000000000..5cc4ec5fd3
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/assignment_options/enum_no_identifier.cfg
@@ -0,0 +1,12 @@
+[output]
+include=[
+ {"display": "Control.SIZE_EXPAND"},
+ {"display": "Control.SIZE_EXPAND_FILL"},
+ {"display": "Control.SIZE_FILL"},
+ {"display": "Control.SIZE_SHRINK_BEGIN"},
+ {"display": "Control.SIZE_SHRINK_CENTER"},
+ {"display": "Control.SIZE_SHRINK_END"},
+]
+exclude=[
+ {"display": "contro_var"}
+]
diff --git a/modules/gdscript/tests/scripts/completion/assignment_options/enum_no_identifier.gd b/modules/gdscript/tests/scripts/completion/assignment_options/enum_no_identifier.gd
new file mode 100644
index 0000000000..d8bf13e51d
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/assignment_options/enum_no_identifier.gd
@@ -0,0 +1,7 @@
+extends Control
+
+var contro_var
+
+func _ready():
+ size_flags_horizontal = ➡
+ pass