Commit b40e09e3 authored by Iuri Matias's avatar Iuri Matias

improve displaying current step

parent 7df0cf27
......@@ -48,12 +48,13 @@ class CmdLine {
let line
line = self.compilation.lastCompilationResult.source.sources['browser/ballot.sol'].content.split("\n")[lineColumnPos.start.line - 1]
console.dir(line)
console.dir(" " + (lineColumnPos.start.line - 1) + " " + line)
line = self.compilation.lastCompilationResult.source.sources['browser/ballot.sol'].content.split("\n")[lineColumnPos.start.line]
console.dir(line)
console.dir("^^^^^^^^^^^^^^^ ")
console.dir("=> " + lineColumnPos.start.line + " " + line)
line = self.compilation.lastCompilationResult.source.sources['browser/ballot.sol'].content.split("\n")[lineColumnPos.start.line + 1]
console.dir(line)
console.dir(" " + (lineColumnPos.start.line + 1) + " " + line)
line = self.compilation.lastCompilationResult.source.sources['browser/ballot.sol'].content.split("\n")[lineColumnPos.start.line + 2]
console.dir(" " + (lineColumnPos.start.line + 2) + " " + line)
});
self.debugger.step_manager.event.register('stepChanged', (stepIndex) => {
......
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