From 147962e283b03d6a22db2862912d887e8cd040b6 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Thu, 4 Oct 2018 16:50:49 -0400 Subject: [PATCH] make linter happy --- src/app/debugger/debugger/debugger.js | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/app/debugger/debugger/debugger.js b/src/app/debugger/debugger/debugger.js index b81f20c929..6f6dbd6b60 100644 --- a/src/app/debugger/debugger/debugger.js +++ b/src/app/debugger/debugger/debugger.js @@ -11,17 +11,16 @@ function Debugger (options) { this.offsetToLineColumnConverter = options.offsetToLineColumnConverter this.compiler = options.compiler - this.debugger = new Ethdebugger( - { - executionContext: this.executionContext, - compilationResult: () => { - var compilationResult = this.compiler.lastCompilationResult - if (compilationResult) { - return compilationResult.data - } - return null + this.debugger = new Ethdebugger({ + executionContext: this.executionContext, + compilationResult: () => { + var compilationResult = this.compiler.lastCompilationResult + if (compilationResult) { + return compilationResult.data } - }) + return null + } + }) this.breakPointManager = new remixLib.code.BreakpointManager(this.debugger, (sourceLocation) => { return self.offsetToLineColumnConverter.offsetToLineColumn(sourceLocation, sourceLocation.file, this.compiler.lastCompilationResult.source.sources, this.compiler.lastCompilationResult.data.sources)