diff options
author | Li Jin <dragon-fly@qq.com> | 2020-03-28 10:04:26 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2020-03-28 10:04:26 +0800 |
commit | 7abafe80f96c4a4cdcfb7711e451c938c17a60b7 (patch) | |
tree | f2f34616ba7a6b95db29f489ff9b11f850d792f9 /spec | |
parent | b40bc7ae5d05d1d9f0521c12ab8f9d0e3b70c180 (diff) | |
download | yuescript-7abafe80f96c4a4cdcfb7711e451c938c17a60b7.tar.gz yuescript-7abafe80f96c4a4cdcfb7711e451c938c17a60b7.tar.bz2 yuescript-7abafe80f96c4a4cdcfb7711e451c938c17a60b7.zip |
fix an existential op issue and add case.
Diffstat (limited to 'spec')
-rw-r--r-- | spec/inputs/existential.moon | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/inputs/existential.moon b/spec/inputs/existential.moon index 831383b..7ee3bde 100644 --- a/spec/inputs/existential.moon +++ b/spec/inputs/existential.moon | |||
@@ -43,3 +43,5 @@ len = utf8?.len or string?.len or (o) -> #o | |||
43 | 43 | ||
44 | a = tb1?\end? 123 + tb2?\then 456 | 44 | a = tb1?\end? 123 + tb2?\then 456 |
45 | 45 | ||
46 | b = tb1?\end? or tb2?\then | ||
47 | |||