Added working version for user-defined function autocompletion

This commit is contained in:
Sat 2025-05-08 06:22:05 -03:00
parent a2aefab4c7
commit fc4df4b17d
11 changed files with 124 additions and 9 deletions

View file

@ -6,3 +6,18 @@ var property_of_a
func func_of_a():
pass
func _func_of_a_underscore():
pass
static func func_of_a_static():
pass
func func_of_a_args(a: int):
pass
func func_of_a_callable(call := func():
var x_of_a = 10):
pass