fix references to this

pull/1/head
Iuri Matias 6 years ago committed by yann300
parent 7819c1fca7
commit d82f5da793
  1. 6
      src/app/debugger/debuggerUI/StepManager.js

@ -150,18 +150,18 @@ class DebuggerStepManager {
}
jumpToException () {
self.jumpTo(self.revertionPoint)
this.jumpTo(this.revertionPoint)
}
jumpNextBreakpoint () {
// TODO: this is the same currentStepIndex var but currently coupled all the way up to EthDebuggerUI
// the trigger in updateStep is updating it in EthDebuggerUI
// the refactor should remove it
self.parent.breakpointManager.jumpNextBreakpoint(self._parent.currentStepIndex, true)
this.parent.breakpointManager.jumpNextBreakpoint(this._parent.currentStepIndex, true)
}
jumpPreviousBreakpoint () {
self.parent.breakpointManager.jumpPreviousBreakpoint(self._parent.currentStepIndex, true)
this.parent.breakpointManager.jumpPreviousBreakpoint(this._parent.currentStepIndex, true)
}
}

Loading…
Cancel
Save