aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/cond.yue
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2022-07-26 18:05:23 +0800
committerLi Jin <dragon-fly@qq.com>2022-07-26 18:05:23 +0800
commit0f5bdeaeba0f04e49c47f4a2be55b14185a7dfdd (patch)
treeb5baa6c385ce58c60615ff0577a1e2b6850f044d /spec/inputs/cond.yue
parente191defb6545509a4ae0b402f2fac1fbe18551cd (diff)
downloadyuescript-0f5bdeaeba0f04e49c47f4a2be55b14185a7dfdd.tar.gz
yuescript-0f5bdeaeba0f04e49c47f4a2be55b14185a7dfdd.tar.bz2
yuescript-0f5bdeaeba0f04e49c47f4a2be55b14185a7dfdd.zip
fix missing checks and issues related to destrucuring in if branches.
Diffstat (limited to 'spec/inputs/cond.yue')
-rw-r--r--spec/inputs/cond.yue2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/inputs/cond.yue b/spec/inputs/cond.yue
index 773ef91..9981e93 100644
--- a/spec/inputs/cond.yue
+++ b/spec/inputs/cond.yue
@@ -158,7 +158,7 @@ do
158---------------- 158----------------
159 159
160a = 12 160a = 12
161a,c,b = "cool" if something 161a,c,b = "cool", nil, nil if something
162 162
163 163
164 164