예제 #1
0
def type_assignment(ast, M):
    typeinference.infer(ast, context=M.type_context, input_types=M.input_types)
    return ast
예제 #2
0
파일: passes.py 프로젝트: wuzy2d/copperhead
def type_assignment(ast, M):
    typeinference.infer(ast, context=M.type_context, input_types=M.input_types)
    return ast
예제 #3
0
파일: passes.py 프로젝트: WuCPMark/TFJ
def type_assignment(ast, M):
    typeinference.infer(ast, context=M.type_context)
    collect_local_typings(ast, M)
    return ast