We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54f6697 commit 2576d56Copy full SHA for 2576d56
src/utils.jl
@@ -210,7 +210,7 @@ Advance the program counter without executing the corresponding line.
210
If `frame` is finished, `nextpc` will be `nothing`.
211
"""
212
next_or_nothing(frame, pc) = pc < nstatements(frame.framecode) ? pc+1 : nothing
213
-next_or_nothing!(frame) = next_or_nothing(finish_and_return!, frame)
+next_or_nothing!(frame) = next_or_nothing!(finish_and_return!, frame)
214
function next_or_nothing!(@nospecialize(recurse), frame)
215
pc = frame.pc
216
if pc < nstatements(frame.framecode)
0 commit comments