summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/completion/common/self.gd
diff options
context:
space:
mode:
Diffstat (limited to 'modules/gdscript/tests/scripts/completion/common/self.gd')
-rw-r--r--modules/gdscript/tests/scripts/completion/common/self.gd17
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/completion/common/self.gd b/modules/gdscript/tests/scripts/completion/common/self.gd
new file mode 100644
index 0000000000..ed181af0c5
--- /dev/null
+++ b/modules/gdscript/tests/scripts/completion/common/self.gd
@@ -0,0 +1,17 @@
+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():
+ self.➡
+ pass