1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

GDScript: Fix regression with native signal not found

This commit is contained in:
Danil Alexeev
2023-08-02 15:42:36 +03:00
parent dca12c2e54
commit f19377160c
3 changed files with 52 additions and 31 deletions

View File

@@ -0,0 +1,14 @@
# GH-80157
extends Node
func f():
pass
signal s()
func test():
print(f)
print(s)
print(get_child)
print(ready)

View File

@@ -0,0 +1,5 @@
GDTEST_OK
Node::f
Node::[signal]s
Node::get_child
Node::[signal]ready