Example #1
0
 def do(program):
     tree = parse_expr(program)
     compiler = Compiler()
     return compiler.compile(tree)
Example #2
0
 def do(program):
     tree = parse_expr(program)
     compiler = Compiler()
     return compiler.compile(tree)
Example #3
0
def compile(filepath):
    tree = parse(filepath)
    compiler = Compiler()
    return compiler.compile(tree)
Example #4
0
def compile(filepath):
    tree = parse(filepath)
    compiler = Compiler()
    return compiler.compile(tree)