File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
tiny-cli/src/main/kotlin/com/github/minigdx/tiny/cli/debug Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -278,14 +278,17 @@ class DebuggerExecutionListener(
278278 ResumeMode .STEP_INTO -> if (line != advanceByStepCurrentLine) {
279279 pauseExecution(currentExecutionPoint.script, line)
280280 }
281+
281282 ResumeMode .STEP_OVER -> if (
282283 callDepth <= advanceByStepCallDepth &&
283284 currentExecutionPoint.script == advanceByStepCurrentScript &&
284285 line != advanceByStepCurrentLine
285286 ) {
286287 pauseExecution(currentExecutionPoint.script, line)
287288 }
288- ResumeMode .RESUME -> { /* no stepping pause */ }
289+
290+ ResumeMode .RESUME -> { // no stepping pause
291+ }
289292 }
290293
291294 breakpoints.values.forEach { breakpoint ->
@@ -432,6 +435,7 @@ class DebuggerExecutionListener(
432435 }
433436 " {${entries.joinToString(" , " )} }"
434437 }
438+
435439 else -> " nil" // For functions and other complex types
436440 }
437441 }
You can’t perform that action at this time.
0 commit comments