aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/loops.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spec/outputs/loops.lua')
-rw-r--r--spec/outputs/loops.lua16
1 files changed, 10 insertions, 6 deletions
diff --git a/spec/outputs/loops.lua b/spec/outputs/loops.lua
index a905e4e..aa69840 100644
--- a/spec/outputs/loops.lua
+++ b/spec/outputs/loops.lua
@@ -171,11 +171,13 @@ for i = 1, 10 do
171 while true do 171 while true do
172 local _continue_0 = false 172 local _continue_0 = false
173 repeat 173 repeat
174 if not true then 174 do
175 _continue_0 = true 175 if not true then
176 _continue_0 = true
177 break
178 end
176 break 179 break
177 end 180 end
178 break
179 _continue_0 = true 181 _continue_0 = true
180 until true 182 until true
181 if not _continue_0 then 183 if not _continue_0 then
@@ -313,11 +315,13 @@ end
313while true do 315while true do
314 local _continue_0 = false 316 local _continue_0 = false
315 repeat 317 repeat
316 if false then 318 do
317 _continue_0 = true 319 if false then
320 _continue_0 = true
321 break
322 end
318 break 323 break
319 end 324 end
320 break
321 _continue_0 = true 325 _continue_0 = true
322 until true 326 until true
323 if not _continue_0 then 327 if not _continue_0 then