aboutsummaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/inputs/syntax.moon2
-rw-r--r--spec/inputs/tables.moon2
2 files changed, 4 insertions, 0 deletions
diff --git a/spec/inputs/syntax.moon b/spec/inputs/syntax.moon
index b1a64d3..ccee5f2 100644
--- a/spec/inputs/syntax.moon
+++ b/spec/inputs/syntax.moon
@@ -68,11 +68,13 @@ something"else"
68 68
69_ = something[[hey]] * 2 69_ = something[[hey]] * 2
70_ = something[======[hey]======] * 2 70_ = something[======[hey]======] * 2
71_ = something[ [======[hey]======] ] * 2
71 72
72 73
73_ = something'else', 2 74_ = something'else', 2
74_ = something"else", 2 75_ = something"else", 2
75_ = something[[else]], 2 76_ = something[[else]], 2
77_ = something[ [[else]] ], 2
76 78
77something 'else', 2 79something 'else', 2
78something "else", 2 80something "else", 2
diff --git a/spec/inputs/tables.moon b/spec/inputs/tables.moon
index d7596f5..9383538 100644
--- a/spec/inputs/tables.moon
+++ b/spec/inputs/tables.moon
@@ -98,7 +98,9 @@ t = {
98xam = { 98xam = {
99 hello: 1234 99 hello: 1234
100 "hello": 12354 100 "hello": 12354
101 [[hello]]: 12354
101 ["hello"]: 12354 102 ["hello"]: 12354
103 [ [[hello]] ]: 12354
102} 104}
103 105
104 106