Class FormalParameter
java.lang.Object
org.checkerframework.dataflow.expression.JavaExpression
org.checkerframework.dataflow.expression.FormalParameter
A formal parameter, represented by its 1-based index.
LocalVariable
represents a formal parameter expressed using its name.
-
Field Summary
Modifier and TypeFieldDescriptionprotected final VariableElement
The element for this formal parameter.protected final int
The 1-based index.Fields inherited from class org.checkerframework.dataflow.expression.JavaExpression
type
-
Constructor Summary
ConstructorDescriptionFormalParameter
(int index, VariableElement element) Creates a FormalParameter. -
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
Returns true if and only if this contains a JavaExpression that is syntactically equal toother
.boolean
Returns the element for this variable.int
getIndex()
Returns the 1-based index of this formal parameter.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()
Format this verbosely, for debugging.Methods inherited from class org.checkerframework.dataflow.expression.JavaExpression
atConstructorInvocation, atFieldAccess, atMethodBody, atMethodInvocation, atMethodInvocation, containedUnknown, containsModifiableAliasOf, containsOfClass, containsUnknown, fromArrayAccess, fromNode, fromNodeFieldAccess, fromTree, fromVariableTree, getFormalParameters, getImplicitReceiver, getParametersAsLocalVariables, getPseudoReceiver, getReceiver, getType, isUnassignableByOtherCode, isUnmodifiableByOtherCode, listContainsSyntacticEqualJavaExpression, listIsDeterministic, syntacticEqualsList
-
Field Details
-
index
protected final int indexThe 1-based index. -
element
The element for this formal parameter.
-
-
Constructor Details
-
FormalParameter
Creates a FormalParameter.- Parameters:
index
- the 1-based indexelement
- the element for the formal parameter
-
-
Method Details
-
equals
-
getIndex
public int getIndex()Returns the 1-based index of this formal parameter.- Returns:
- the 1-based index of this formal parameter
-
getElement
Returns the element for this variable.- Returns:
- the element for this variable
-
hashCode
public int hashCode() -
toString
-
toStringDebug
Description copied from class:JavaExpression
Format this verbosely, for debugging.- Overrides:
toStringDebug
in classJavaExpression
- Returns:
- a verbose string representation of this
-
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
-
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
-
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:
-
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
-
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
-