Commit 5ef253a8 authored by Iuri Matias's avatar Iuri Matias

remove callback from extractLocalsAt

parent 8f6b5100
...@@ -71,8 +71,8 @@ Ethdebugger.prototype.setBreakpointManager = function (breakpointManager) { ...@@ -71,8 +71,8 @@ Ethdebugger.prototype.setBreakpointManager = function (breakpointManager) {
} }
/* decode locals */ /* decode locals */
Ethdebugger.prototype.extractLocalsAt = function (step, callback) { Ethdebugger.prototype.extractLocalsAt = function (step) {
callback(null, this.callTree.findScope(step)) return this.callTree.findScope(step)
} }
Ethdebugger.prototype.decodeLocalsAt = function (step, sourceLocation, callback) { Ethdebugger.prototype.decodeLocalsAt = function (step, sourceLocation, callback) {
......
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