Skip to content

Commit 09e90ea

Browse files
committed
tweak
1 parent 76c4bf8 commit 09e90ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/conversion.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ function to_codeobject(x::EXPR)
148148
end
149149
elseif iskeyword(x)
150150
if headof(x) === :BREAK
151-
return to_codeobject(:break)
151+
return Expr(:break)
152152
elseif headof(x) === :CONTINUE
153-
return to_codeobject(:continue)
153+
return Expr(:continue)
154154
else
155155
return Symbol(lowercase(string(headof(x))))
156156
end

0 commit comments

Comments
 (0)