Skip to content

Commit 217eaf1

Browse files
committed
lintfix
1 parent 1712988 commit 217eaf1

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tiny-cli/src/main/kotlin/com/github/minigdx/tiny/cli/debug/DebuggerExecutionListener.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)