Package org.teavm.ast

Class AssignmentStatement

java.lang.Object
org.teavm.ast.Statement
org.teavm.ast.AssignmentStatement

public class AssignmentStatement extends Statement
  • Constructor Details

    • AssignmentStatement

      public AssignmentStatement()
  • Method Details

    • getLeftValue

      public Expr getLeftValue()
    • setLeftValue

      public void setLeftValue(Expr leftValue)
    • getRightValue

      public Expr getRightValue()
    • setRightValue

      public void setRightValue(Expr rightValue)
    • getLocation

      public TextLocation getLocation()
    • setLocation

      public void setLocation(TextLocation location)
    • isAsync

      public boolean isAsync()
    • setAsync

      public void setAsync(boolean async)
    • acceptVisitor

      public void acceptVisitor(StatementVisitor visitor)
      Specified by:
      acceptVisitor in class Statement