Class JAssignStmt

All Implemented Interfaces:
EquivTo, FallsThroughStmt, InvokableStmt, Stmt, Acceptor<StmtVisitor>

public final class JAssignStmt extends AbstractDefinitionStmt implements FallsThroughStmt, InvokableStmt
Represents the assignment of one value to another
  • Constructor Details

    • JAssignStmt

      public JAssignStmt(@NonNull LValue variable, @NonNull Value rValue, @NonNull StmtPositionInfo positionInfo)
      Instantiates a new JAssignStmt.
      Parameters:
      variable - the variable on the left side of the assign statement.
      rValue - the value on the right side of the assign statement.
  • Method Details