updating rebase fix

pull/1/head
Rob Stupay 8 years ago
parent 7c12479bee
commit 89f45c2fb5
  1. 13
      src/app.js
  2. 2
      src/app/editor/editor.js
  3. 1
      src/app/files/browser-files.js

@ -200,7 +200,6 @@ function run () {
startdebugging(txResult.transactionHash)
})
// ----------------- Tx listener -----------------
var transactionReceiptResolver = {
_transactionReceipts: {},
@ -402,8 +401,20 @@ function run () {
}
var renderer = new Renderer(rendererAPI)
// ----------------- StaticAnalysis -----------------
var staticAnalysisAPI = {
renderWarning: (label, warningContainer, type) => {
return renderer.error(label, warningContainer, type)
},
offsetToLineColumn: (location, file) => {
return offsetToLineColumnConverter.offsetToLineColumn(location, file, compiler.lastCompilationResult)
}
}
var staticanalysis = new StaticAnalysis(staticAnalysisAPI, compiler.event)
// ---------------- Righthand-panel --------------------
var rhpAPI = {
config: config,
setEditorSize (delta) {

@ -70,8 +70,6 @@ function Editor (opts = {}) {
this.setPosition = function (line, column, noClip) {
editor.moveCursorTo(line, column)
//var anchor = new ace.Anchor(editor, line, column)
//anchor.setPosition(line, column, noClip)
}
this.editorFontSize = function (incr) {

@ -176,5 +176,4 @@ function Files (storage) {
}
}
module.exports = Files

Loading…
Cancel
Save