diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-09-21 20:36:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-21 20:36:39 +0200 |
commit | 679f70c1e1b4500f3fc5cf81bedc6e137b8184a5 (patch) | |
tree | 5636fc696cc99b28d7b6248fca9d0bf690bd19c2 /modules/gdscript/tests | |
parent | b3b4860d2e24709f71df59a3d0a551c08fbd4281 (diff) | |
parent | 262d6c6befdf627cbaee9d143b1521f9f3464b6c (diff) |
Merge pull request #52906 from vnen/gdscript-show-error-on-yield
Diffstat (limited to 'modules/gdscript/tests')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/errors/yield_instead_of_await.gd | 6 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/parser/errors/yield_instead_of_await.out | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/errors/yield_instead_of_await.gd b/modules/gdscript/tests/scripts/parser/errors/yield_instead_of_await.gd new file mode 100644 index 0000000000..7862eff6ec --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/errors/yield_instead_of_await.gd @@ -0,0 +1,6 @@ +#GDTEST_PARSER_ERROR + +signal event + +func test(): + yield("event") diff --git a/modules/gdscript/tests/scripts/parser/errors/yield_instead_of_await.out b/modules/gdscript/tests/scripts/parser/errors/yield_instead_of_await.out new file mode 100644 index 0000000000..36cb699e92 --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/errors/yield_instead_of_await.out @@ -0,0 +1,2 @@ +GDTEST_PARSER_ERROR +"yield" was removed in Godot 4.0. Use "await" instead. |