Class New

All Implemented Interfaces:
Serializable, Stmt, Indexable

public class New extends AssignStmt<Var,NewExp>
Representation of following kinds of new statements:
  • new instance: o = new T
  • new array: o = new T[..]
  • new multi-array: o = new T[..][..]
See Also:
  • Field Details

    • index

      protected int index
    • lineNumber

      protected int lineNumber
  • Constructor Details

  • Method Details

    • getContainer

      public JMethod getContainer()
    • accept

      public <T> T accept(StmtVisitor<T> visitor)
    • getIndex

      public int getIndex()
      Specified by:
      getIndex in interface Indexable
      Specified by:
      getIndex in interface Stmt
      Returns:
      the index of this Stmt in the container IR.
    • setIndex

      public void setIndex(int index)
      Specified by:
      setIndex in interface Stmt
    • getLineNumber

      public int getLineNumber()
      Specified by:
      getLineNumber in interface Stmt
      Returns:
      the line number of this Stmt in the original source file. If the line number is unavailable, return -1.
    • setLineNumber

      public void setLineNumber(int lineNumber)
      Specified by:
      setLineNumber in interface Stmt
    • canFallThrough

      public boolean canFallThrough()
      Specified by:
      canFallThrough in interface Stmt
      Returns:
      true if execution after this statement could continue at the following statement, otherwise false.