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