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