Package examples.ast

Class IntLiteral


public class IntLiteral extends Expression
Integer literals of the language.
  • Field Details

    • value

      public int value
      The 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