diff options
author | Li Jin <dragon-fly@qq.com> | 2023-07-13 09:09:47 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2023-07-13 09:09:47 +0800 |
commit | 1d2423bff4ecc4396d65c387982d6667b33bd796 (patch) | |
tree | 8826b1e95cc6feb9c3a2cd62e9c2848d64e9fd03 /spec/outputs/in_expression.lua | |
parent | 7775f4c5b97dcc0d7e71a2cd8fb132f2b5bc1bd6 (diff) | |
download | yuescript-1d2423bff4ecc4396d65c387982d6667b33bd796.tar.gz yuescript-1d2423bff4ecc4396d65c387982d6667b33bd796.tar.bz2 yuescript-1d2423bff4ecc4396d65c387982d6667b33bd796.zip |
fix a missing case for in expression.v0.17.6
Diffstat (limited to '')
-rw-r--r-- | spec/outputs/in_expression.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/outputs/in_expression.lua b/spec/outputs/in_expression.lua index 41ae87e..ccc5fd0 100644 --- a/spec/outputs/in_expression.lua +++ b/spec/outputs/in_expression.lua | |||
@@ -92,7 +92,7 @@ do | |||
92 | 2, | 92 | 2, |
93 | 3 | 93 | 3 |
94 | } | 94 | } |
95 | local exist = (#list > 0 and (function() | 95 | local not_exist = not (#list > 0 and (function() |
96 | for _index_0 = 1, #list do | 96 | for _index_0 = 1, #list do |
97 | if list[_index_0] == item then | 97 | if list[_index_0] == item then |
98 | return true | 98 | return true |