Package net.hydromatic.morel.ast
Class Ast.ListPat
- java.lang.Object
-
- net.hydromatic.morel.ast.AstNode
-
- net.hydromatic.morel.ast.Ast.Pat
-
- net.hydromatic.morel.ast.Ast.ListPat
-
- Enclosing class:
- Ast
public static class Ast.ListPat extends Ast.Pat
List pattern, the pattern analog of theAst.ListExpexpression.For example, "[x, y]" in "fun sum [x, y] = x + y".
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Ast.Pataccept(Shuttle shuttle)Accepts a shuttle, calling theShuttle.visit(net.hydromatic.morel.ast.Ast.Literal)method appropriate to the type of this node, and returning the result.voidaccept(Visitor visitor)Accepts a visitor, calling theShuttle.visit(net.hydromatic.morel.ast.Ast.Literal)method appropriate to the type of this node, and returning the result.Ast.ListPatcopy(List<Ast.Pat> args)Creates a copy of thisListPatwith given contents, orthisif the contents are the same.voidforEachArg(ObjIntConsumer<Ast.Pat> action)(package private) AstWriterunparse(AstWriter w, int left, int right)
-
-
-
Method Detail
-
accept
public Ast.Pat accept(Shuttle shuttle)
Description copied from class:AstNodeAccepts a shuttle, calling theShuttle.visit(net.hydromatic.morel.ast.Ast.Literal)method appropriate to the type of this node, and returning the result.
-
accept
public void accept(Visitor visitor)
Description copied from class:AstNodeAccepts a visitor, calling theShuttle.visit(net.hydromatic.morel.ast.Ast.Literal)method appropriate to the type of this node, and returning the result.
-
forEachArg
public void forEachArg(ObjIntConsumer<Ast.Pat> action)
- Overrides:
forEachArgin classAst.Pat
-
copy
public Ast.ListPat copy(List<Ast.Pat> args)
Creates a copy of thisListPatwith given contents, orthisif the contents are the same.
-
-