summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/completion/common/identifiers.gd
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gdscript/tests/scripts/completion/common/identifiers.gd')
-rw-r--r--modules/gdscript/tests/scripts/completion/common/identifiers.gd16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/completion/common/identifiers.gd b/modules/gdscript/tests/scripts/completion/common/identifiers.gd
new file mode 100644
index 0000000000..efbafbee8e
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/common/identifiers.gd
@@ -0,0 +1,16 @@
+extends "res://completion/class_a.notest.gd"
+
+signal test_signal_1(a)
+signal test_signal_2(a: int)
+
+var test_var_1
+var test_var_2: int
+
+func test_func_1(t):
+ pass
+
+func test_func_2(t: int) -> void:
+ pass
+
+func _init():
+ t➡