@@ -318,7 +318,7 @@ Action function construct_function():
variable_map = create_node()
inp = input()
- while (bool_or(inp == "funcdef", inp == "mutable_funcdef")):
+ while (bool_and(inp != "funcdef", inp != "mutable_funcdef")):
// We skip over everything that is not a funcdef, as these are all just definitions of global stuff
@@ -3,6 +3,7 @@ import os
import urllib2
import urllib
import subprocess
+import time
def do_compile(address, filename, username, modulename, mode, optionals=['--debug'], grammar=""):
filename = os.path.realpath(filename)