Package examples.ast
Class Expression
java.lang.Object
examples.ast.ASTNode
examples.ast.Expression
- Direct Known Subclasses:
BinaryExpression,IntLiteral,UnaryExpression,Variable
Expressions of the language.
-
Field Summary
FieldsModifier and TypeFieldDescriptionbooleanWhether the expression could be assigned to.The type of the expression. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
type
The type of the expression. -
lvalue
public boolean lvalueWhether the expression could be assigned to.
-
-
Constructor Details
-
Expression
public Expression(int line, int column) Constructor- Parameters:
line-column-
-