Uses of Interface
jfun.jaskell.ast.Param

Packages that use Param
jfun.jaskell.ast Provides classes and interfaces for the abstract syntax tree of jaskell. 
 

Uses of Param in jfun.jaskell.ast
 

Methods in jfun.jaskell.ast that return Param
static Param Params.buildBinding(Binding b)
          create a compiled parameter name.
static Param Params.buildName(java.lang.String name)
          create a uncompiled parameter name.
static Param Params.buildPattern(Pattern p)
          create a parameter pattern.
static Param Params.buildAnonymous()
          create an anonymous '_' parameter.
 Param[] Alternative.getParams()
          Get the parameters of this alternative.
 

Methods in jfun.jaskell.ast with parameters of type Param
static Expr Exprs.buildLamda(int from, Location loc, Param[] params, Expr body)
          Build an expression for lamda abstraction.
 

Constructors in jfun.jaskell.ast with parameters of type Param
Alternative(Param[] params, Expr body)