diff options
author | Li Jin <dragon-fly@qq.com> | 2021-04-28 17:47:27 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2021-04-28 17:47:27 +0800 |
commit | 7b11ae6e9a5b71db627ae5eb497d2b5855a66db0 (patch) | |
tree | 340e237e16f66c35d0fbbecf912576c6faa565c6 | |
parent | a82254df5f9907cd79c087c7b8e2f230076d1a16 (diff) | |
download | yuescript-7b11ae6e9a5b71db627ae5eb497d2b5855a66db0.tar.gz yuescript-7b11ae6e9a5b71db627ae5eb497d2b5855a66db0.tar.bz2 yuescript-7b11ae6e9a5b71db627ae5eb497d2b5855a66db0.zip |
fix spec.
-rw-r--r-- | spec/inputs/destructure.yue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/inputs/destructure.yue b/spec/inputs/destructure.yue index c68045d..7bf5a88 100644 --- a/spec/inputs/destructure.yue +++ b/spec/inputs/destructure.yue | |||
@@ -24,9 +24,9 @@ do | |||
24 | 24 | ||
25 | do :a, :b, c = tbl | 25 | do :a, :b, c = tbl |
26 | 26 | ||
27 | do :a, b, :c = tbl | 27 | do a, :b, :c = tbl, _ |
28 | 28 | ||
29 | do a, :b, :c = tbl | 29 | do :a, b, :c = tbl, _, _ |
30 | 30 | ||
31 | --- | 31 | --- |
32 | 32 | ||