public abstract class AssignmentOperationExpr extends Object implements OperationExpr
| Constructor and Description |
|---|
AssignmentOperationExpr() |
| Modifier and Type | Method and Description |
|---|---|
void |
accept(AstNodeVisitor visitor)
Writes the syntatically-correct Java code representation of this node.
|
static AssignmentOperationExpr |
multiplyAssignmentWithExprs(VariableExpr variableExpr,
Expr valueExpr) |
abstract OperatorKind |
operatorKind() |
TypeNode |
type() |
abstract Expr |
valueExpr() |
abstract VariableExpr |
variableExpr() |
static AssignmentOperationExpr |
xorAssignmentWithExprs(VariableExpr variableExpr,
Expr valueExpr) |
public abstract VariableExpr variableExpr()
public abstract Expr valueExpr()
public abstract OperatorKind operatorKind()
operatorKind in interface OperationExprpublic TypeNode type()
type in interface Exprtype in interface OperationExprpublic void accept(AstNodeVisitor visitor)
AstNodepublic static AssignmentOperationExpr xorAssignmentWithExprs(VariableExpr variableExpr, Expr valueExpr)
public static AssignmentOperationExpr multiplyAssignmentWithExprs(VariableExpr variableExpr, Expr valueExpr)
Copyright © 2022 Google LLC. All rights reserved.