Commit c5fb4817 authored by Iuri Matias's avatar Iuri Matias

add jumpto and get trace length steps

parent 90d4bb55
...@@ -130,6 +130,14 @@ class CmdLine { ...@@ -130,6 +130,14 @@ class CmdLine {
this.debugger.step_manager.stepIntoBack(solidityMode) this.debugger.step_manager.stepIntoBack(solidityMode)
} }
jumpTo(step) {
this.debugger.step_manager.jumpTo(step)
}
getTraceLength() {
return this.debugger.step_manager.traceLength
}
currentStep() { currentStep() {
return this.debugger.step_manager.currentStepIndex return this.debugger.step_manager.currentStepIndex
} }
......
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