public abstract static class FlowExpressions.Receiver extends Object
Modifier and Type | Field and Description |
---|---|
protected TypeMirror |
type
The type of this expression.
|
Modifier | Constructor and Description |
---|---|
protected |
Receiver(TypeMirror type)
Create a Receiver (a Java AST node representing an expression).
|
Modifier and Type | Method and Description |
---|---|
boolean |
containsModifiableAliasOf(Store<?> store,
FlowExpressions.Receiver other)
Returns true if and only if
other appears anywhere in this receiver or an
expression appears in this receiver such that other might alias this expression,
and that expression is modifiable. |
abstract boolean |
containsOfClass(Class<? extends FlowExpressions.Receiver> clazz) |
boolean |
containsSyntacticEqualReceiver(FlowExpressions.Receiver other)
Returns true if and only if this receiver contains a receiver that is syntactically equal
to
other . |
boolean |
containsUnknown() |
String |
debugToString()
Print this verbosely, for debugging.
|
TypeMirror |
getType() |
abstract boolean |
isUnassignableByOtherCode()
Returns true if and only if the value this expression stands for cannot be changed (with
respect to ==) by a method call.
|
abstract boolean |
isUnmodifiableByOtherCode()
Returns true if and only if the value this expression stands for cannot be changed by a
method call, including changes to any of its fields.
|
boolean |
syntacticEquals(FlowExpressions.Receiver other)
Returns true if and only if the two receiver are syntactically identical.
|
protected final TypeMirror type
protected Receiver(TypeMirror type)
type
- the type of the expressionpublic TypeMirror getType()
public abstract boolean containsOfClass(Class<? extends FlowExpressions.Receiver> clazz)
public boolean containsUnknown()
public abstract boolean isUnassignableByOtherCode()
isUnassignableByOtherCode()
, and
binary operations whose left and right operands are both isUnmodifiableByOtherCode()
.isUnmodifiableByOtherCode()
public abstract boolean isUnmodifiableByOtherCode()
Approximately, this returns true if the expression is isUnassignableByOtherCode()
and its type is immutable.
isUnassignableByOtherCode()
public boolean syntacticEquals(FlowExpressions.Receiver other)
public boolean containsSyntacticEqualReceiver(FlowExpressions.Receiver other)
other
.other
public boolean containsModifiableAliasOf(Store<?> store, FlowExpressions.Receiver other)
other
appears anywhere in this receiver or an
expression appears in this receiver such that other
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'.
public String debugToString()