Unverified Commit 30719524 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1292 from ethereum/fix/#1214

internal function call handling
parents c2263fab b2d4264a
- [] remix-debug: Add tests for debugger (stepOverForward)
\ No newline at end of file
......@@ -122,7 +122,11 @@ class DebuggerStepManager {
stepOverForward (solidityMode) {
if (!this.traceManager.isLoaded()) return
var step = this.traceManager.findStepOverForward(this.currentStepIndex)
var step = this.currentStepIndex + 1
let scope = this.debugger.callTree.findScope(step)
if (scope && scope.firstStep === step) {
step = scope.lastStep + 1
}
if (solidityMode) {
step = this.resolveToReducedTrace(step, 1)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment