aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/tables.moon
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2020-09-11 17:59:53 +0800
committerLi Jin <dragon-fly@qq.com>2020-09-11 17:59:53 +0800
commite958b59c9635f0a01e29e3f30c34adecd327cc1f (patch)
tree000d56180b091bf9e14444935fbee0b0a28867cf /spec/inputs/tables.moon
parent85b9ec82247f6e06b802188af35d09d3159625df (diff)
downloadyuescript-e958b59c9635f0a01e29e3f30c34adecd327cc1f.tar.gz
yuescript-e958b59c9635f0a01e29e3f30c34adecd327cc1f.tar.bz2
yuescript-e958b59c9635f0a01e29e3f30c34adecd327cc1f.zip
revert binary operator rules, change implicit object start symbol.
Diffstat (limited to 'spec/inputs/tables.moon')
-rw-r--r--spec/inputs/tables.moon13
1 files changed, 7 insertions, 6 deletions
diff --git a/spec/inputs/tables.moon b/spec/inputs/tables.moon
index a1e861b..079be35 100644
--- a/spec/inputs/tables.moon
+++ b/spec/inputs/tables.moon
@@ -164,20 +164,21 @@ heroine =
164 age: 18 164 age: 18
165 job: "Princess" 165 job: "Princess"
166 likes: 166 likes:
167 # name: "kittens" 167 * name: "kittens"
168 img: "/image/kittens.png" 168 img: "/image/kittens.png"
169 # name: "flower" 169 * name: "flower"
170 img: "/image/flower.png" 170 img: "/image/flower.png"
171 items: 171 items:
172 # name: "ring" 172 * name: "ring"
173 amount: 2 173 amount: 2
174 # name: "necklace" 174 * name: "necklace"
175 amount: 1 175 amount: 1
176 status: 176 status:
177 desc: "weak" 177 desc: "weak"
178 # attribute: "health" 178 * attribute: "health"
179 value: 50 179 value: 50
180 # attribute: "mana" 180 * attribute: "mana"
181 value: 100 181 value: 100
182 182
183nil 183nil
184