summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/completion/common/identifiers.gd
blob: efbafbee8e139f5aada7b927a63bb75ca661595e (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():
    t➡