예제 #1
0
파일: vm.py 프로젝트: eblade/articulate
def step_impl(context):
    with redirector(out=context.vm_out, err=context.vm_err):
        for instruction in context.tree.instructions:
            evaluate(instruction, context.scope)
예제 #2
0
파일: vm.py 프로젝트: eblade/articulate
def step_impl(context):
    with redirector(out=context.vm_out, err=context.vm_err):
        evaluate(context.instruction, context.scope)