add jumpto and get trace length steps

pull/5370/head
Iuri Matias 6 years ago
parent a3403a3104
commit 62949d78b3
  1. 8
      remix-debug/src/cmdline/index.js

@ -130,6 +130,14 @@ class CmdLine {
this.debugger.step_manager.stepIntoBack(solidityMode)
}
jumpTo(step) {
this.debugger.step_manager.jumpTo(step)
}
getTraceLength() {
return this.debugger.step_manager.traceLength
}
currentStep() {
return this.debugger.step_manager.currentStepIndex
}

Loading…
Cancel
Save