Commit 98fb006d authored by Alex Beregszaszi's avatar Alex Beregszaszi

compiler: missingInputs should not be passed from the outside

parent 751f109f
...@@ -37,14 +37,14 @@ function Compiler (editor, handleGithubCall) { ...@@ -37,14 +37,14 @@ function Compiler (editor, handleGithubCall) {
}) })
} }
var compile = function (missingInputs) { var compile = function () {
editor.clearAnnotations() editor.clearAnnotations()
self.event.trigger('compilationStarted', []) self.event.trigger('compilationStarted', [])
var input = editor.getValue() var input = editor.getValue()
var files = {} var files = {}
files[utils.fileNameFromKey(editor.getCacheFile())] = input files[utils.fileNameFromKey(editor.getCacheFile())] = input
internalCompile(files, missingInputs) internalCompile(files)
} }
this.compile = compile this.compile = compile
......
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