Implemented 'rm' command. FIxed some bugs

This commit is contained in:
Daniel Xie
2017-04-13 14:36:03 -05:00
parent 558939fd85
commit 685103c5d4
3 changed files with 32 additions and 4 deletions
+2 -1
View File
@@ -31,7 +31,8 @@ function runScriptsLoop() {
try {
var ast = Parser(Tokenizer(InputStream(workerScripts[i].code)));
} catch (e) {
post("Syntax error in " + workerScript[i].name + ": " + e);
dialogBoxCreate("Syntax ERROR in " + workerScripts[i].name + ":", e, "", "");
workerScripts[i].env.stopFlag = true;
continue;
}