remove callback from extractLocalsAt

refactor_remix_debug4
Iuri Matias 4 years ago
parent 8f6b5100cb
commit 5ef253a866
  1. 4
      libs/remix-debug/src/Ethdebugger.js

@ -71,8 +71,8 @@ Ethdebugger.prototype.setBreakpointManager = function (breakpointManager) {
}
/* decode locals */
Ethdebugger.prototype.extractLocalsAt = function (step, callback) {
callback(null, this.callTree.findScope(step))
Ethdebugger.prototype.extractLocalsAt = function (step) {
return this.callTree.findScope(step)
}
Ethdebugger.prototype.decodeLocalsAt = function (step, sourceLocation, callback) {

Loading…
Cancel
Save