Package org.teavm.ast
Class AssignmentStatement
- java.lang.Object
-
- org.teavm.ast.Statement
-
- org.teavm.ast.AssignmentStatement
-
public class AssignmentStatement extends Statement
-
-
Constructor Summary
Constructors Constructor Description AssignmentStatement()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacceptVisitor(StatementVisitor visitor)ExprgetLeftValue()TextLocationgetLocation()ExprgetRightValue()booleanisAsync()voidsetAsync(boolean async)voidsetLeftValue(Expr leftValue)voidsetLocation(TextLocation location)voidsetRightValue(Expr rightValue)-
Methods inherited from class org.teavm.ast.Statement
assign, cond, cond, empty, exitFunction, initClass, raiseException
-
-
-
-
Method Detail
-
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:
acceptVisitorin classStatement
-
-