public abstract class JavaExpression extends Object
?:
; use
Unknown
for unrepresentable expressions).
This class's representation is like an AST: subparts are also expressions. For declared names (fields, local variables, and methods), it also contains an Element.
Each subclass represents a different type of expression, such as MethodCall
, ArrayAccess
, LocalVariable
, etc.
Modifier and Type | Field and Description |
---|---|
protected TypeMirror |
type
The type of this expression.
|
Modifier | Constructor and Description |
---|---|
protected |
JavaExpression(TypeMirror type)
Create a JavaExpression.
|
Modifier and Type | Method and Description |
---|---|
boolean |
containsModifiableAliasOf(Store<?> store,
JavaExpression 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 JavaExpression> clazz) |
boolean |
containsSyntacticEqualJavaExpression(JavaExpression other)
Returns true if and only if this receiver contains a receiver that is syntactically equal to
other . |
boolean |
containsUnknown() |
static ArrayAccess |
fromArrayAccess(AnnotationProvider provider,
ArrayAccessNode node)
Returns the internal representation (as
FieldAccess ) of a FieldAccessNode . |
static JavaExpression |
fromNode(AnnotationProvider provider,
Node node)
We ignore operations such as widening and narrowing when computing the internal
representation.
|
static JavaExpression |
fromNode(AnnotationProvider provider,
Node receiverNode,
boolean allowNonDeterministic)
We ignore operations such as widening and narrowing when computing the internal
representation.
|
static FieldAccess |
fromNodeFieldAccess(AnnotationProvider provider,
FieldAccessNode node)
Returns the internal representation (as
FieldAccess ) of a FieldAccessNode . |
static JavaExpression |
fromTree(AnnotationProvider provider,
ExpressionTree receiverTree)
Returns the internal representation of any
ExpressionTree . |
static JavaExpression |
fromTree(AnnotationProvider provider,
ExpressionTree tree,
boolean allowNonDeterministic)
We ignore operations such as widening and narrowing when computing the internal
representation.
|
static JavaExpression |
getImplicitReceiver(Element ele)
Returns the implicit receiver of ele.
|
static @Nullable List<JavaExpression> |
getParametersOfEnclosingMethod(AnnotationProvider annotationProvider,
TreePath path)
Returns the formal parameters of the method in which path is enclosed.
|
static JavaExpression |
getPseudoReceiver(TreePath path,
TypeMirror enclosingType)
Returns either a new ClassName or ThisReference JavaExpression object for the enclosingType.
|
static JavaExpression |
getReceiver(ExpressionTree accessTree,
AnnotationProvider provider)
Returns the receiver of ele, whether explicit or implicit.
|
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(JavaExpression other)
Returns true if and only if the two receivers are syntactically identical.
|
String |
toStringDebug()
Print this verbosely, for debugging.
|
protected final TypeMirror type
protected JavaExpression(TypeMirror type)
type
- the type of the expressionpublic TypeMirror getType()
public abstract boolean containsOfClass(Class<? extends JavaExpression> 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()
@EqualsMethod public boolean syntacticEquals(JavaExpression other)
other
- the other object to compare to this onepublic boolean containsSyntacticEqualJavaExpression(JavaExpression other)
other
.other
public boolean containsModifiableAliasOf(Store<?> store, JavaExpression 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 toStringDebug()
public static FieldAccess fromNodeFieldAccess(AnnotationProvider provider, FieldAccessNode node)
FieldAccess
) of a FieldAccessNode
.
Can contain Unknown
as receiver.FieldAccess
) of a FieldAccessNode
.
Can contain Unknown
as receiver.public static ArrayAccess fromArrayAccess(AnnotationProvider provider, ArrayAccessNode node)
FieldAccess
) of a FieldAccessNode
.
Can contain Unknown
as receiver.FieldAccess
) of a FieldAccessNode
.
Can contain Unknown
as receiver.public static JavaExpression fromNode(AnnotationProvider provider, Node node)
public static JavaExpression fromNode(AnnotationProvider provider, Node receiverNode, boolean allowNonDeterministic)
public static JavaExpression fromTree(AnnotationProvider provider, ExpressionTree receiverTree)
ExpressionTree
. Might contain Unknown
.ExpressionTree
. Might contain Unknown
.public static JavaExpression fromTree(AnnotationProvider provider, ExpressionTree tree, boolean allowNonDeterministic)
ExpressionTree
. Might contain Unknown
.public static @Nullable List<JavaExpression> getParametersOfEnclosingMethod(AnnotationProvider annotationProvider, TreePath path)
annotationProvider
- annotationProviderpath
- TreePath that is enclosed by the methodnull
otherwisepublic static JavaExpression getReceiver(ExpressionTree accessTree, AnnotationProvider provider)
accessTree
- method or constructor invocationprovider
- an AnnotationProviderpublic static JavaExpression getImplicitReceiver(Element ele)
Returns either a new ClassName or a new ThisReference depending on whether ele is static or not. The passed element must be a field, method, or class.
ele
- a field, method, or classpublic static JavaExpression getPseudoReceiver(TreePath path, TypeMirror enclosingType)
The Tree should be an expression or a statement that does not have a receiver or an implicit receiver. For example, a local variable declaration.
path
- TreePath to treeenclosingType
- type of the enclosing type