Package examples.ast
Class IntLiteral
java.lang.Object
examples.ast.ASTNode
examples.ast.Expression
examples.ast.IntLiteral
Integer literals of the language.
-
Field Summary
FieldsFields inherited from class examples.ast.Expression
lvalue, type -
Constructor Summary
ConstructorsConstructorDescriptionIntLiteral(int line, int column, int value) Constructor of the integer literal. -
Method Summary
-
Field Details
-
value
public int valueThe value of the literal.
-
-
Constructor Details
-
IntLiteral
public IntLiteral(int line, int column, int value) Constructor of the integer literal.- Parameters:
line- Line in the source code.column- Column in the source code.value- The value of the literal.
-
-
Method Details