Unverified Commit b2d4264a authored by Aniket's avatar Aniket Committed by GitHub

skip highlight of function definition

parent 0004fcec
...@@ -123,9 +123,9 @@ class DebuggerStepManager { ...@@ -123,9 +123,9 @@ class DebuggerStepManager {
stepOverForward (solidityMode) { stepOverForward (solidityMode) {
if (!this.traceManager.isLoaded()) return if (!this.traceManager.isLoaded()) return
var step = this.currentStepIndex + 1 var step = this.currentStepIndex + 1
let scope = this.debugger.callTree.findScope(this.currentStepIndex) let scope = this.debugger.callTree.findScope(step)
if (scope && scope.firstStep === this.currentStepIndex) { if (scope && scope.firstStep === step) {
step = scope.lastStep step = scope.lastStep + 1
} }
if (solidityMode) { if (solidityMode) {
step = this.resolveToReducedTrace(step, 1) 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