Uses of Class
net.hydromatic.morel.ast.Ast.LetExp
-
Packages that use Ast.LetExp 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.LetExp in net.hydromatic.morel.ast
Methods in net.hydromatic.morel.ast that return Ast.LetExp Modifier and Type Method Description Ast.LetExpAst.LetExp. copy(java.lang.Iterable<Ast.Decl> decls, Ast.Exp e)Creates a copy of thisLetExpwith given contents, or this if the contents are the same.Ast.LetExpAstBuilder. let(Pos pos, java.lang.Iterable<? extends Ast.Decl> decls, Ast.Exp e)protected Ast.LetExpShuttle. visit(Ast.LetExp e)Methods in net.hydromatic.morel.ast with parameters of type Ast.LetExp Modifier and Type Method Description protected Ast.LetExpShuttle. visit(Ast.LetExp e) -
Uses of Ast.LetExp in net.hydromatic.morel.compile
Methods in net.hydromatic.morel.compile that return Ast.LetExp Modifier and Type Method Description private Ast.LetExpCompiler. flattenLet(java.util.List<Ast.Decl> decls, Ast.Exp e)
-