diff options
author | ZuBsPaCe <kurt.rudin@gmx.net> | 2021-09-10 22:08:02 +0200 |
---|---|---|
committer | ZuBsPaCe <kurt.rudin@gmx.net> | 2021-09-10 22:26:50 +0200 |
commit | 1d1aa7a02fc64286a0c81cfb40fbf16f704d017e (patch) | |
tree | 9b3d348d42824fd7395831b5f413c6e75122136f /modules/gdscript/tests/scripts/parser/features/variable_declaration.gd | |
parent | 68563b57608ed50c2bf429770db75702598eb6bf (diff) | |
download | redot-engine-1d1aa7a02fc64286a0c81cfb40fbf16f704d017e.tar.gz |
GDScript: Removed spurious UNASSIGNED_VARIABLE warning for locals
Variable->assignment needs to be incremented when assigned a value.
Also fixed and improved unit test 'variable_declaration.gd'.
Fixes #52551
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/features/variable_declaration.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/features/variable_declaration.gd | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/variable_declaration.gd b/modules/gdscript/tests/scripts/parser/features/variable_declaration.gd index 3b48f10ca7..38567d35c6 100644 --- a/modules/gdscript/tests/scripts/parser/features/variable_declaration.gd +++ b/modules/gdscript/tests/scripts/parser/features/variable_declaration.gd @@ -1,12 +1,19 @@ -var a # No init. -var b = 42 # Init. +var m1 # No init. +var m2 = 22 # Init. +var m3: String # No init, typed. +var m4: String = "44" # Init, typed. func test(): - var c # No init, local. - var d = 23 # Init, local. + var loc5 # No init, local. + var loc6 = 66 # Init, local. + var loc7: String # No init, typed. + var loc8: String = "88" # Init, typed. - a = 1 - c = 2 + m1 = 11 + m3 = "33" - prints(a, b, c, d) + loc5 = 55 + loc7 = "77" + + prints(m1, m2, m3, m4, loc5, loc6, loc7, loc8) print("OK") |