Class BinaryOperation
-
Field Summary
Modifier and TypeFieldDescriptionprotected final JavaExpression
The left operand.protected final Tree.Kind
The binary operation kind.protected final JavaExpression
The right operand.Fields inherited from class org.checkerframework.dataflow.expression.JavaExpression
type
-
Constructor Summary
ConstructorDescriptionBinaryOperation
(TypeMirror type, Tree.Kind operationKind, JavaExpression left, JavaExpression right) Create a binary operation.BinaryOperation
(BinaryOperationNode node, JavaExpression left, JavaExpression right) Create a binary operation. -
Method Summary
Modifier and TypeMethodDescription<R,
P> R accept
(JavaExpressionVisitor<R, P> visitor, P p) Accept method of the visitor pattern.<T extends JavaExpression>
@Nullable TcontainedOfClass
(Class<T> clazz) Returns the first subexpression whose class is the given class, or null.boolean
containsModifiableAliasOf
(Store<?> store, JavaExpression other) Returns true if and only ifother
appears anywhere in this or an expression appears in this such thatother
might alias this expression, and that expression is modifiable.boolean
Returns true if and only if this contains a JavaExpression that is syntactically equal toother
.boolean
getLeft()
Returns the left operand of this binary operation.Returns the operator of this binary operation.getRight()
Returns the right operand of this binary operation.int
hashCode()
boolean
Returns true if some subexpression of this can be assigned to from outside the current method body.boolean
isDeterministic
(AnnotationProvider provider) Returns true if the expression is deterministic.boolean
Returns true if the value this expression stands for can be changed by a method call; equivalently, if the value this expression evaluates to can be changed by a side effect from outside the containing method.boolean
Returns true if and only if the two Java expressions are syntactically identical.toString()
Methods inherited from class org.checkerframework.dataflow.expression.JavaExpression
atConstructorInvocation, atFieldAccess, atMethodBody, atMethodInvocation, atMethodInvocation, containedUnknown, containsOfClass, containsUnknown, fromArrayAccess, fromNode, fromNodeFieldAccess, fromTree, fromVariableTree, getFormalParameters, getImplicitReceiver, getParametersAsLocalVariables, getPseudoReceiver, getReceiver, getType, isUnassignableByOtherCode, isUnmodifiableByOtherCode, listContainsSyntacticEqualJavaExpression, listIsDeterministic, syntacticEqualsList, toStringDebug
-
Field Details
-
operationKind
The binary operation kind. -
left
The left operand. -
right
The right operand.
-
-
Constructor Details
-
BinaryOperation
public BinaryOperation(TypeMirror type, Tree.Kind operationKind, JavaExpression left, JavaExpression right) Create a binary operation.- Parameters:
type
- the result typeoperationKind
- the operatorleft
- the left operandright
- the right operand
-
BinaryOperation
Create a binary operation.- Parameters:
node
- the binary operation nodeleft
- the left operandright
- the right operand
-
-
Method Details
-
getOperationKind
Returns the operator of this binary operation.- Returns:
- the binary operation kind
-
getLeft
Returns the left operand of this binary operation.- Returns:
- the left operand
-
getRight
Returns the right operand of this binary operation.- Returns:
- the right operand
-
containedOfClass
Description copied from class:JavaExpression
Returns the first subexpression whose class is the given class, or null.This is intended as a diagnostic aid; most clients will use
JavaExpression.containsOfClass(java.lang.Class<? extends org.checkerframework.dataflow.expression.JavaExpression>)
.- Specified by:
containedOfClass
in classJavaExpression
- Type Parameters:
T
- the type corresponding toclazz
- Parameters:
clazz
- the JavaExpression subclass to search for- Returns:
- true if some subexpression whose class is the given class
-
isDeterministic
Description copied from class:JavaExpression
Returns true if the expression is deterministic.- Specified by:
isDeterministic
in classJavaExpression
- Parameters:
provider
- an annotation provider (a type factory)- Returns:
- true if this expression is deterministic
-
isAssignableByOtherCode
public boolean isAssignableByOtherCode()Description copied from class:JavaExpression
Returns true if some subexpression of this can be assigned to from outside the current method body.This is false for local variables, the self reference, final field accesses whose receiver is
JavaExpression.isUnassignableByOtherCode()
, and operations whose operands are all notJavaExpression.isModifiableByOtherCode()
.- Overrides:
isAssignableByOtherCode
in classJavaExpression
- Returns:
- true if some subexpression of this can be assigned to from outside the current method body
- See Also:
-
isModifiableByOtherCode
public boolean isModifiableByOtherCode()Description copied from class:JavaExpression
Returns true if the value this expression stands for can be changed by a method call; equivalently, if the value this expression evaluates to can be changed by a side effect from outside the containing method.Approximately, this returns true if the expression is
JavaExpression.isAssignableByOtherCode()
or its type is mutable. (String
is an immutable type.)- Overrides:
isModifiableByOtherCode
in classJavaExpression
- Returns:
- true if the value of this expression can be changed from outside the current method body
- See Also:
-
syntacticEquals
Description copied from class:JavaExpression
Returns true if and only if the two Java expressions are syntactically identical.This exists for use by
JavaExpression.containsSyntacticEqualJavaExpression(org.checkerframework.dataflow.expression.JavaExpression)
.- Specified by:
syntacticEquals
in classJavaExpression
- Parameters:
je
- the other Java expression to compare to this one- Returns:
- true if and only if the two Java expressions are syntactically identical
-
containsSyntacticEqualJavaExpression
Description copied from class:JavaExpression
Returns true if and only if this contains a JavaExpression that is syntactically equal toother
.- Specified by:
containsSyntacticEqualJavaExpression
in classJavaExpression
- Parameters:
other
- the JavaExpression to search for- Returns:
- true if and only if this contains a JavaExpression that is syntactically equal to
other
-
containsModifiableAliasOf
Description copied from class:JavaExpression
Returns true if and only ifother
appears anywhere in this or an expression appears in this such thatother
might alias this expression, and that expression is modifiable.This is always true, except for cases where the Java type information prevents aliasing and none of the subexpressions can alias 'other'.
- Overrides:
containsModifiableAliasOf
in classJavaExpression
-
hashCode
public int hashCode() -
equals
-
toString
-
accept
Description copied from class:JavaExpression
Accept method of the visitor pattern.- Specified by:
accept
in classJavaExpression
- Type Parameters:
R
- result type of the operationP
- parameter type- Parameters:
visitor
- the visitor to be applied to this JavaExpressionp
- the parameter for this operation- Returns:
- the result of visiting this
-