Add more autocompletion tests
This commit is contained in:
parent
705b7a0b0b
commit
48e297c144
28 changed files with 301 additions and 0 deletions
16
modules/gdscript/tests/scripts/completion/common/self.gd
Normal file
16
modules/gdscript/tests/scripts/completion/common/self.gd
Normal file
|
|
@ -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():
|
||||
self.➡
|
||||
Loading…
Add table
Add a link
Reference in a new issue