Fix test regression: incomplete errors no longer cause var parsing to fail
diff --git a/Repl.h b/Repl.h
index 10a922b..3f2bdbe 100644
--- a/Repl.h
+++ b/Repl.h
@@ -19,7 +19,7 @@
 	QString readLine();
 	void addHistory(QString line);
 	ParseResult trySpecialCase(QString line);
-	ParseResult tryEvaluate(QString line, QList<AstNode> *expr);
+    ParseResult tryEvaluate(Parser &parser, QList<AstNode> *expr);
 
 	Evaluator _eval;