disable sourcehighlight when debugging

pull/1/head
yann300 6 years ago
parent e7cba12df6
commit 62ec1bdfc9
  1. 5
      src/app/debugger/debuggerUI.js

@ -90,10 +90,13 @@ class DebuggerUI {
this.contextManager = new ContextManager() this.contextManager = new ContextManager()
// TODO debugging with source highlight is disabled. see line 98
this.debugger = new Debugger({ this.debugger = new Debugger({
web3: this.contextManager.getWeb3(), web3: this.contextManager.getWeb3(),
offsetToLineColumnConverter: this.registry.get('offsettolinecolumnconverter').api, offsetToLineColumnConverter: this.registry.get('offsettolinecolumnconverter').api,
compiler: this.registry.get('compiler').api compiler: {
lastCompilationResult: null
}
}) })
this.contextManager.initProviders() this.contextManager.initProviders()

Loading…
Cancel
Save