Commit 0d9e316d authored by yann300's avatar yann300

send compilation data to remix

parent 6be82ac7
......@@ -10,7 +10,16 @@ var executionContext = require('../../execution-context')
*/
function Debugger (id, appAPI, editorEvent) {
this.el = document.querySelector(id)
this.debugger = new remixDebugger.ui.Debugger()
this.debugger = new remixDebugger.ui.Debugger(
{
compilationResult: () => {
var compilationResult = self.appAPI.lastCompilationResult()
if (compilationResult) {
return compilationResult.data
}
return null
}
})
this.sourceMappingDecoder = new remixLib.SourceMappingDecoder()
this.el.appendChild(this.debugger.render())
this.appAPI = appAPI
......@@ -75,10 +84,6 @@ Debugger.prototype.debug = function (txHash) {
var self = this
this.debugger.web3().eth.getTransaction(txHash, function (error, tx) {
if (!error) {
var compilationResult = self.appAPI.lastCompilationResult()
if (compilationResult) {
self.debugger.setCompilationResult(compilationResult.data)
}
self.debugger.debug(tx)
}
})
......
......@@ -62,7 +62,7 @@ function compileTab (container, appAPI, appEvents, opts) {
// ----------------- autoCompile -----------------
var autoCompileInput = compileContainer.querySelector('#autoCompile')
var autoCompile = false
var autoCompile = true
if (appAPI.config.exists('autoCompile')) {
autoCompile = appAPI.config.get('autoCompile')
}
......
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