diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/features/multiline_dictionaries.gd')
| -rw-r--r-- | modules/gdscript/tests/scripts/parser/features/multiline_dictionaries.gd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/multiline_dictionaries.gd b/modules/gdscript/tests/scripts/parser/features/multiline_dictionaries.gd new file mode 100644 index 0000000000..e108cd23d4 --- /dev/null +++ b/modules/gdscript/tests/scripts/parser/features/multiline_dictionaries.gd @@ -0,0 +1,10 @@ +func test(): + var __ = { + "multiline": "dictionary","should": "work", + "even with": "a trailing comma", + } + + __ = { + this_also_applies = "to the", + lua_style_syntax = null, foo = null, + } |
