aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2020-04-26 16:07:18 +0800
committerLi Jin <dragon-fly@qq.com>2020-04-26 16:07:18 +0800
commit502af415a7d72bd8229613056e5c5e1dd8ce518d (patch)
treee2416c5acd119132c40cd41b8f587851c7f9d33e /spec/inputs
parentfeac3c1cba6ca95b911240217f74a494680cd057 (diff)
downloadyuescript-502af415a7d72bd8229613056e5c5e1dd8ce518d.tar.gz
yuescript-502af415a7d72bd8229613056e5c5e1dd8ce518d.tar.bz2
yuescript-502af415a7d72bd8229613056e5c5e1dd8ce518d.zip
add existential op support for with statement, add repeat until statement.
Diffstat (limited to 'spec/inputs')
-rw-r--r--spec/inputs/existential.moon4
-rw-r--r--spec/inputs/loops.moon9
2 files changed, 13 insertions, 0 deletions
diff --git a/spec/inputs/existential.moon b/spec/inputs/existential.moon
index 7ee3bde..3055705 100644
--- a/spec/inputs/existential.moon
+++ b/spec/inputs/existential.moon
@@ -45,3 +45,7 @@ a = tb1?\end? 123 + tb2?\then 456
45 45
46b = tb1?\end? or tb2?\then 46b = tb1?\end? or tb2?\then
47 47
48with? io.open "test.txt", "w"
49 \write "hello"
50 \close!
51
diff --git a/spec/inputs/loops.moon b/spec/inputs/loops.moon
index 35427f6..24d960f 100644
--- a/spec/inputs/loops.moon
+++ b/spec/inputs/loops.moon
@@ -91,6 +91,15 @@ while true
91 break if true 91 break if true
92 print "no" 92 print "no"
93 93
94a = 1
95repeat
96 a += 1
97 if a == 5
98 continue
99 if a == 6
100 break
101 print a
102until a == 10
94 103
95for x=1,10 104for x=1,10
96 continue if x > 3 and x < 7 105 continue if x > 3 and x < 7