diff options
Diffstat (limited to 'js/scripting-lang/scratch_tests/test_dot_notation.txt')
-rw-r--r-- | js/scripting-lang/scratch_tests/test_dot_notation.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/js/scripting-lang/scratch_tests/test_dot_notation.txt b/js/scripting-lang/scratch_tests/test_dot_notation.txt new file mode 100644 index 0000000..47f7b65 --- /dev/null +++ b/js/scripting-lang/scratch_tests/test_dot_notation.txt @@ -0,0 +1,12 @@ +/* Test dot notation parsing */ + +/* Basic table creation */ +numbers : {1, 2, 3}; + +/* Test simple dot access */ +t_access : t.map; + +/* Output results */ +..out "=== DOT NOTATION TEST ==="; +..out "t.map access:"; +..out t_access; \ No newline at end of file |