diff options
author | George Marques <george@gmarqu.es> | 2021-09-17 14:31:51 -0300 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2021-09-17 14:31:51 -0300 |
commit | 651319de11d0c3c4b3278b846b77cb3d034beae3 (patch) | |
tree | 92d706014f1fcd7852f229540c41c4b35a30fcb1 /modules/gdscript/tests/scripts | |
parent | b8fdeb64678444103a9b6c96ef3ae2c65ad02b2f (diff) |
GDScript: Properly catch error when missing index in subscript
Diffstat (limited to 'modules/gdscript/tests/scripts')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/errors/subscript_without_index.gd | 3 | ||||
-rw-r--r-- | modules/gdscript/tests/scripts/parser/errors/subscript_without_index.out | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/errors/subscript_without_index.gd b/modules/gdscript/tests/scripts/parser/errors/subscript_without_index.gd new file mode 100644 index 0000000000..c30c05e4da --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/errors/subscript_without_index.gd @@ -0,0 +1,3 @@ +func test(): + var array = [1, 2, 3] + array[] = 4 diff --git a/modules/gdscript/tests/scripts/parser/errors/subscript_without_index.out b/modules/gdscript/tests/scripts/parser/errors/subscript_without_index.out new file mode 100644 index 0000000000..7017c7b4aa --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/errors/subscript_without_index.out @@ -0,0 +1,2 @@ +GDTEST_PARSER_ERROR +Expected expression after "[". |