Remove dead parameter

pull/1/head
Alex Beregszaszi 8 years ago
parent 1297bac19a
commit fc2e5b1432
  1. 2
      src/app.js
  2. 2
      src/app/compiler.js

@ -407,7 +407,7 @@ var run = function () {
} }
var executionContext = new ExecutionContext(); var executionContext = new ExecutionContext();
var compiler = new Compiler(editor, handleGithubCall, updateFiles); var compiler = new Compiler(editor, handleGithubCall);
var formalVerification = new FormalVerification($('#verificationView'), compiler.event); var formalVerification = new FormalVerification($('#verificationView'), compiler.event);
var transactionDebugger = new Debugger('#debugger', editor, compiler, executionContext.event, swicthToFile); var transactionDebugger = new Debugger('#debugger', editor, compiler, executionContext.event, swicthToFile);

@ -10,7 +10,7 @@ var EventManager = require('../lib/eventManager');
/* /*
trigger compilationFinished, compilerLoaded, compilationStarted trigger compilationFinished, compilerLoaded, compilationStarted
*/ */
function Compiler (editor, handleGithubCall, updateFiles) { function Compiler (editor, handleGithubCall) {
var self = this; var self = this;
this.event = new EventManager(); this.event = new EventManager();

Loading…
Cancel
Save