summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/completion/common/self.gd
blob: ed181af0c572543bd88c52dd7a80960408c4d682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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