diff options
author | Yuri Roubinsky <chaosus89@gmail.com> | 2021-11-13 18:40:53 +0300 |
---|---|---|
committer | Yuri Roubinsky <chaosus89@gmail.com> | 2021-11-13 21:47:24 +0300 |
commit | 3396b254891db02edb29950e7a2a1c1968612949 (patch) | |
tree | 1fc9c1ebb9729dd61e79c9dd3b4503209681c2e1 /modules/gdscript/tests/scripts/parser/warnings | |
parent | 3e214a88380dab46a77d48863b7a6f1bc37e2885 (diff) |
Allow using built-in names for variables, push warnings instead
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/warnings')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.gd | 2 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.out | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.gd b/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.gd new file mode 100644 index 0000000000..3c64be571b --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.gd @@ -0,0 +1,2 @@ +func test(): + var abs = "This variable has the same name as the built-in function." diff --git a/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.out b/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.out new file mode 100644 index 0000000000..f2b29e5bad --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/warnings/shadowed_global_identifier.out @@ -0,0 +1,9 @@ +GDTEST_OK +>> WARNING +>> Line: 2 +>> SHADOWED_GLOBAL_IDENTIFIER +>> The local variable 'abs' has the same name as a built-in function. +>> WARNING +>> Line: 2 +>> UNUSED_VARIABLE +>> The local variable 'abs' is declared but never used in the block. If this is intended, prefix it with an underscore: '_abs' |