Unverified Commit 32fda787 authored by Iuri Matias's avatar Iuri Matias Committed by GitHub

Merge pull request #904 from ethereum/yann300-patch-17

Update Ethdebugger.js
parents 7c77d5da d69975d1
...@@ -83,7 +83,7 @@ Ethdebugger.prototype.sourceLocationFromVMTraceIndex = function (address, stepIn ...@@ -83,7 +83,7 @@ Ethdebugger.prototype.sourceLocationFromVMTraceIndex = function (address, stepIn
} }
Ethdebugger.prototype.sourceLocationFromInstructionIndex = function (address, instIndex, callback) { Ethdebugger.prototype.sourceLocationFromInstructionIndex = function (address, instIndex, callback) {
this.debugger.callTree.sourceLocationTracker.getSourceLocationFromInstructionIndex(address, instIndex, this.solidityProxy.contracts, function (error, rawLocation) { this.callTree.sourceLocationTracker.getSourceLocationFromInstructionIndex(address, instIndex, this.solidityProxy.contracts, function (error, rawLocation) {
callback(error, rawLocation) callback(error, rawLocation)
}) })
} }
......
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