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