pt.compiler.parser.ast.expr
Class CastExpr
java.lang.Object
pt.compiler.parser.ast.Node
pt.compiler.parser.ast.expr.Expression
pt.compiler.parser.ast.expr.CastExpr
public final class CastExpr
- extends Expression
- Author:
- Julio Vilmar Gesser
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
CastExpr
public CastExpr(int line,
int column,
Type type,
Expression expr)
getType
public Type getType()
getExpr
public Expression getExpr()
accept
public <A> void accept(VoidVisitor<A> v,
A arg)
- Overrides:
accept
in class Node
accept
public <R,A> R accept(GenericVisitor<R,A> v,
A arg)
- Overrides:
accept
in class Node