Exemple #1
0
def type_assignment(ast, M):
    typeinference.infer(ast, context=M.type_context, input_types=M.input_types)
    return ast
Exemple #2
0
def type_assignment(ast, M):
    typeinference.infer(ast, context=M.type_context, input_types=M.input_types)
    return ast
Exemple #3
0
def type_assignment(ast, M):
    typeinference.infer(ast, context=M.type_context)
    collect_local_typings(ast, M)
    return ast