Uses of Class
net.hydromatic.morel.ast.Ast.InfixCall
-
Packages that use Ast.InfixCall Package Description net.hydromatic.morel.ast Abstract syntax tree.net.hydromatic.morel.compile Validates programs (represented asAstNode), deduces their type, and compiles them into code that can be evaluated. -
-
Uses of Ast.InfixCall in net.hydromatic.morel.ast
Methods in net.hydromatic.morel.ast that return Ast.InfixCall Modifier and Type Method Description Ast.InfixCallAst.InfixCall. copy(Ast.Exp a0, Ast.Exp a1)Creates a copy of thisInfixCallwith given contents, orthisif the contents are the same.private Ast.InfixCallAstBuilder. infix(Op op, Ast.Exp a0, Ast.Exp a1)Creates a call to an infix operator.Methods in net.hydromatic.morel.ast with parameters of type Ast.InfixCall Modifier and Type Method Description protected Ast.ExpShuttle. visit(Ast.InfixCall infixCall)protected voidVisitor. visit(Ast.InfixCall infixCall) -
Uses of Ast.InfixCall in net.hydromatic.morel.compile
Methods in net.hydromatic.morel.compile with parameters of type Ast.InfixCall Modifier and Type Method Description private Ast.ExpTypeResolver. infix(TypeResolver.TypeEnv env, Ast.InfixCall call, Unifier.Variable v)Registers an infix operator.private Ast.ExpTypeResolver. infix(TypeResolver.TypeEnv env, Ast.InfixCall call, Unifier.Variable v, Type type)Registers an infix operator whose type is a given type.private Core.ApplyResolver. toCore(Ast.InfixCall call)
-