Class StaticTypeCheckingVisitor
java.lang.Object
org.codehaus.groovy.ast.CodeVisitorSupport
org.codehaus.groovy.ast.ClassCodeVisitorSupport
org.codehaus.groovy.transform.stc.StaticTypeCheckingVisitor
- All Implemented Interfaces:
GroovyClassVisitor
,GroovyCodeVisitor
,ErrorCollecting
- Direct Known Subclasses:
StaticCompilationVisitor
public class StaticTypeCheckingVisitor extends ClassCodeVisitorSupport
The main class code visitor responsible for static type checking. It will perform various inspections like checking
assignment types, type inference, ... Eventually, class nodes may be annotated with inferred type information.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
StaticTypeCheckingVisitor.SignatureCodecFactory
protected class
StaticTypeCheckingVisitor.VariableExpressionTypeMemoizer
-
Field Summary
-
Constructor Summary
Constructors Constructor Description StaticTypeCheckingVisitor(SourceUnit source, ClassNode classNode)
-
Method Summary
Modifier and Type Method Description protected void
addAmbiguousErrorMessage(java.util.List<MethodNode> foundMethods, java.lang.String name, ClassNode[] args, Expression expr)
protected void
addAssignmentError(ClassNode leftType, ClassNode rightType, Expression assignmentExpression)
protected void
addCategoryMethodCallError(Expression call)
protected void
addClosureReturnType(ClassNode returnType)
void
addError(java.lang.String msg, ASTNode expr)
protected void
addNoMatchingMethodError(ClassNode receiver, java.lang.String name, ClassNode[] args, Expression call)
protected void
addReceivers(java.util.List<Receiver<java.lang.String>> receivers, java.util.Collection<Receiver<java.lang.String>> owners, boolean implicitThis)
protected void
addStaticTypeError(java.lang.String msg, ASTNode expr)
void
addTypeCheckingExtension(TypeCheckingExtension extension)
protected void
addTypeCheckingInfoAnnotation(MethodNode node)
protected void
addUnsupportedPreOrPostfixExpressionError(Expression expression)
protected void
afterSwitchConditionExpressionVisited(SwitchStatement statement)
protected boolean
areCategoryMethodCalls(java.util.List<MethodNode> foundMethods, java.lang.String name, ClassNode[] args)
protected boolean
checkCast(ClassNode targetType, Expression source)
protected void
checkClosureParameters(Expression callArguments, ClassNode receiver)
Deprecated.protected void
checkForbiddenSpreadArgument(ArgumentListExpression argumentList)
protected void
checkGroovyConstructorMap(Expression receiver, ClassNode receiverType, MapExpression mapExpression)
protected void
checkGroovyStyleConstructor(ClassNode node, ClassNode[] arguments)
protected MethodNode
checkGroovyStyleConstructor(ClassNode node, ClassNode[] arguments, ASTNode origin)
Checks that a constructor style expression is valid regarding the number of arguments and the argument types.protected ClassNode
checkReturnType(ReturnStatement statement)
protected void
collectAllInterfaceMethodsByName(ClassNode type, java.lang.String name, java.util.List<MethodNode> methods)
Deprecated.protected boolean
existsProperty(PropertyExpression pexp, boolean checkForReadOnly)
protected boolean
existsProperty(PropertyExpression pexp, boolean readMode, ClassCodeVisitorSupport visitor)
Checks whether a property exists on the receiver, or on any of the possible receiver classes (found in the temporary type information table)static java.lang.String
extractPropertyNameFromMethodName(java.lang.String prefix, java.lang.String methodName)
Given a method name and a prefix, returns the name of the property that should be looked up, following the java beans rules.protected java.lang.Object
extractTemporaryTypeInfoKey(Expression expression)
When instanceof checks are found in the code, we store temporary type information data in theTypeCheckingContext.temporaryIfBranchTypeInformation
table.protected static ClassNode[]
extractTypesFromParameters(Parameter[] parameters)
protected ClassNode
findCurrentInstanceOfClass(Expression expr, ClassNode type)
A helper method which determines which receiver class should be used in error messages when a field or attribute is not found.protected BinaryExpression
findInstanceOfNotReturnExpression(IfStatement ifElse)
Check IfStatement matched pattern : Object var1; if (!(var1 instanceOf Runnable)) { return } // Here var1 instance of Runnableprotected java.util.List<MethodNode>
findMethod(ClassNode receiver, java.lang.String name, ClassNode... args)
protected MethodNode
findMethodOrFail(Expression expr, ClassNode receiver, java.lang.String name, ClassNode... args)
protected java.util.List<MethodNode>
findMethodsWithGenerated(ClassNode receiver, java.lang.String name)
Returns methods defined for the specified receiver and adds "non-existing" methods that will be generated afterwards by the compiler; for example if a method is using default values and the class node isn't compiled yet.protected BinaryExpression
findNotInstanceOfReturnExpression(IfStatement ifElse)
Check IfStatement matched pattern : Object var1; if (var1 !instanceOf Runnable) { return } // Here var1 instance of Runnableprotected static java.lang.String
formatArgumentList(ClassNode[] nodes)
protected ClassNode[]
getArgumentTypes(ArgumentListExpression args)
protected org.codehaus.groovy.transform.stc.DelegationMetadata
getDelegationMetadata(ClosureExpression expression)
protected static ClassNode
getGroupOperationResultType(ClassNode a, ClassNode b)
protected ClassNode
getInferredReturnType(ASTNode node)
Returns the inferred return type of a closure or method, if stored on the AST node.protected ClassNode
getInferredReturnTypeFromWithClosureArgument(Expression callArguments)
In the case of a Object.with { ...protected ClassNode
getOriginalDeclarationType(Expression lhs)
protected ClassNode
getResultType(ClassNode left, int op, ClassNode right, BinaryExpression expr)
protected SourceUnit
getSourceUnit()
protected java.util.List<ClassNode>
getTemporaryTypesForExpression(Expression objectExpression)
protected ClassNode
getType(ASTNode exp)
protected ClassNode[]
getTypeCheckingAnnotations()
Returns array of type checking annotations.TypeCheckingContext
getTypeCheckingContext()
Returns the current type checking context.protected static boolean
hasRHSIncompleteGenericTypeInfo(ClassNode inferredRightExpressionType)
Deprecated.protected void
inferClosureParameterTypes(ClassNode receiver, Expression arguments, ClosureExpression expression, Parameter target, MethodNode method)
Performs type inference on closure argument types whenever code like this is found:foo.collect { it.toUpperCase() }
.protected ClassNode
inferComponentType(ClassNode containerType, ClassNode indexType)
protected void
inferDiamondType(ConstructorCallExpression cce, ClassNode lType)
protected ClassNode
inferListExpressionType(ListExpression list)
static ClassNode
inferLoopElementType(ClassNode collectionType)
Returns the inferred loop element type given a loop collection type.protected ClassNode
inferMapExpressionType(MapExpression map)
protected ClassNode
inferReturnTypeGenerics(ClassNode receiver, MethodNode method, Expression arguments)
If a method call returns a parameterized type, then perform additional inference on the return type, so that the type gets actual type arguments.protected ClassNode
inferReturnTypeGenerics(ClassNode receiver, MethodNode method, Expression arguments, GenericsType[] explicitTypeHints)
If a method call returns a parameterized type, then perform additional inference on the return type, so that the type gets actual type arguments.void
initialize()
protected static boolean
isClassInnerClassOrEqualTo(ClassNode toBeChecked, ClassNode start)
protected boolean
isClosureCall(java.lang.String name, Expression objectExpression, Expression arguments)
Deprecated.protected static boolean
isNullConstant(Expression expression)
protected boolean
isSecondPassNeededForControlStructure(java.util.Map<VariableExpression,ClassNode> varOrigType, java.util.Map<VariableExpression,java.util.List<ClassNode>> oldTracker)
boolean
isSkipMode(AnnotatedNode node)
protected boolean
isSkippedInnerClass(AnnotatedNode node)
Tests if a node is an inner class node, and if it is, then checks if the enclosing method is skipped.protected static boolean
isSuperExpression(Expression expression)
protected static boolean
isThisExpression(Expression expression)
protected java.util.List<Receiver<java.lang.String>>
makeOwnerList(Expression objectExpression)
Given an object expression (a message receiver expression), generate list of possible types.void
performSecondPass()
protected java.util.Map<VariableExpression,ClassNode>
popAssignmentTracking(java.util.Map<VariableExpression,java.util.List<ClassNode>> oldTracker)
protected static java.lang.String
prettyPrintMethodList(java.util.List<MethodNode> nodes)
protected java.util.Map<VariableExpression,java.util.List<ClassNode>>
pushAssignmentTracking()
protected void
pushInstanceOfTypeInfo(Expression objectOfInstanceOf, Expression typeExpression)
Stores information about types when [objectOfInstanceof instanceof typeExpression] is visited.protected void
restoreVariableExpressionMetadata(java.util.Map<VariableExpression,java.util.Map<StaticTypesMarker,java.lang.Object>> typesBeforeVisit)
protected void
saveVariableExpressionMetadata(java.util.Set<VariableExpression> closureSharedExpressions, java.util.Map<VariableExpression,java.util.Map<StaticTypesMarker,java.lang.Object>> typesBeforeVisit)
void
setCompilationUnit(CompilationUnit compilationUnit)
void
setMethodsToBeVisited(java.util.Set<MethodNode> methodsToBeVisited)
protected boolean
shouldSkipClassNode(ClassNode node)
protected boolean
shouldSkipMethodNode(MethodNode node)
protected void
silentlyVisitMethodNode(MethodNode directMethodCallCandidate)
Visits a method call target, to infer the type.protected void
startMethodInference(MethodNode node, ErrorCollector collector)
protected ClassNode
storeInferredReturnType(ASTNode node, ClassNode type)
Stores the inferred return type of a closure or a method.protected void
storeInferredTypeForPropertyExpression(PropertyExpression pexp, ClassNode flatInferredType)
Deprecated.protected void
storeTargetMethod(Expression call, MethodNode directMethodCallCandidate)
protected void
storeType(Expression exp, ClassNode cn)
protected void
typeCheckAssignment(BinaryExpression assignmentExpression, Expression leftExpression, ClassNode leftExpressionType, Expression rightExpression, ClassNode rightExpressionType)
protected void
typeCheckClosureCall(Expression arguments, ClassNode[] argumentTypes, Parameter[] parameters)
protected MethodNode
typeCheckMapConstructor(ConstructorCallExpression call, ClassNode receiver, Expression arguments)
protected boolean
typeCheckMethodsWithGenericsOrFail(ClassNode receiver, ClassNode[] arguments, MethodNode candidateMethod, Expression location)
void
visitArrayExpression(ArrayExpression expression)
void
visitAttributeExpression(AttributeExpression expression)
void
visitBinaryExpression(BinaryExpression expression)
void
visitBitwiseNegationExpression(BitwiseNegationExpression expression)
void
visitBlockStatement(BlockStatement block)
void
visitCaseStatement(CaseStatement statement)
void
visitCastExpression(CastExpression expression)
void
visitClass(ClassNode node)
Visit a ClassNode.void
visitClassExpression(ClassExpression expression)
void
visitClosingBlock(BlockStatement block)
void
visitClosureExpression(ClosureExpression expression)
void
visitConstructor(ConstructorNode node)
Visit a ConstructorNode.void
visitConstructorCallExpression(ConstructorCallExpression call)
protected void
visitConstructorOrMethod(MethodNode node, boolean isConstructor)
void
visitExpressionStatement(ExpressionStatement statement)
void
visitField(FieldNode node)
Visit a FieldNode.void
visitForLoop(ForStatement forLoop)
void
visitIfElse(IfStatement ifElse)
protected void
visitInstanceofNot(BinaryExpression be)
void
visitMethod(MethodNode node)
Visit a MethodNode.protected void
visitMethodCallArguments(ClassNode receiver, ArgumentListExpression arguments, boolean visitClosures, MethodNode selectedMethod)
void
visitMethodCallExpression(MethodCallExpression call)
void
visitMethodPointerExpression(MethodPointerExpression expression)
void
visitNotExpression(NotExpression expression)
protected void
visitObjectInitializerStatements(ClassNode node)
void
visitPostfixExpression(PostfixExpression expression)
void
visitPrefixExpression(PrefixExpression expression)
void
visitProperty(PropertyNode node)
Visit a PropertyNode.void
visitPropertyExpression(PropertyExpression expression)
void
visitRangeExpression(RangeExpression expression)
void
visitReturnStatement(ReturnStatement statement)
void
visitStaticMethodCallExpression(StaticMethodCallExpression call)
void
visitSwitch(SwitchStatement statement)
void
visitTernaryExpression(TernaryExpression expression)
void
visitTryCatchFinally(TryCatchStatement statement)
void
visitUnaryMinusExpression(UnaryMinusExpression expression)
void
visitUnaryPlusExpression(UnaryPlusExpression expression)
void
visitVariableExpression(VariableExpression vexp)
void
visitWhileLoop(WhileStatement loop)
protected static ClassNode
wrapTypeIfNecessary(ClassNode type)
Returns a wrapped type if, and only if, the provided class node is a primitive type.Methods inherited from class org.codehaus.groovy.ast.ClassCodeVisitorSupport
visitAnnotation, visitAnnotations, visitAssertStatement, visitBreakStatement, visitCatchStatement, visitClassCodeContainer, visitContinueStatement, visitDeclarationExpression, visitDoWhileLoop, visitImports, visitPackage, visitStatement, visitSynchronizedStatement, visitThrowStatement
Methods inherited from class org.codehaus.groovy.ast.CodeVisitorSupport
visitArgumentlistExpression, visitBooleanExpression, visitBytecodeExpression, visitClosureListExpression, visitConstantExpression, visitEmptyStatement, visitFieldExpression, visitGStringExpression, visitLambdaExpression, visitListExpression, visitMapEntryExpression, visitMapExpression, visitMethodReferenceExpression, visitShortTernaryExpression, visitSpreadExpression, visitSpreadMapExpression, visitTupleExpression
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.codehaus.groovy.ast.GroovyCodeVisitor
visitEmptyExpression, visitListOfExpressions
-
Field Details
-
ERROR_COLLECTOR
protected static final java.lang.Object ERROR_COLLECTOR -
EMPTY_METHODNODE_LIST
-
TYPECHECKED_CLASSNODE
-
TYPECHECKING_ANNOTATIONS
-
TYPECHECKING_INFO_NODE
-
DGM_CLASSNODE
-
CURRENT_SIGNATURE_PROTOCOL_VERSION
protected static final int CURRENT_SIGNATURE_PROTOCOL_VERSION- See Also:
- Constant Field Values
-
CURRENT_SIGNATURE_PROTOCOL
-
GET_DELEGATE
-
GET_OWNER
-
GET_THISOBJECT
-
DELEGATES_TO
-
DELEGATES_TO_TARGET
-
CLOSUREPARAMS_CLASSNODE
-
NAMED_PARAMS_CLASSNODE
-
NAMED_PARAM_CLASSNODE
-
LINKEDHASHMAP_CLASSNODE
Deprecated. -
ENUMERATION_TYPE
-
MAP_ENTRY_TYPE
-
ITERABLE_TYPE
-
CLOSURE_CALL_NO_ARG
-
CLOSURE_CALL_ONE_ARG
-
CLOSURE_CALL_VARGS
-
GENERATED_EMPTY_STATEMENT
-
returnListener
-
returnAdder
-
currentField
-
currentProperty
-
extension
-
typeCheckingContext
-
-
Constructor Details
-
StaticTypeCheckingVisitor
-
-
Method Details
-
getSourceUnit
- Specified by:
getSourceUnit
in classClassCodeVisitorSupport
-
initialize
public void initialize() -
getTypeCheckingContext
Returns the current type checking context. The context is used internally by the type checker during type checking to store various state data.- Returns:
- the type checking context
-
addTypeCheckingExtension
-
setCompilationUnit
-
visitClass
Description copied from interface:GroovyClassVisitor
Visit a ClassNode.- Specified by:
visitClass
in interfaceGroovyClassVisitor
- Overrides:
visitClass
in classClassCodeVisitorSupport
-
getTypeCheckingAnnotations
Returns array of type checking annotations. Subclasses may override this method in order to provide additional types which must be looked up when checking if a method or a class node should be skipped.The default implementation returns
TypeChecked
. -
shouldSkipClassNode
-
isSkipMode
-
isSkippedInnerClass
Tests if a node is an inner class node, and if it is, then checks if the enclosing method is skipped.- Returns:
- true if the inner class node should be skipped
-
visitClassExpression
- Specified by:
visitClassExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitClassExpression
in classCodeVisitorSupport
-
visitVariableExpression
- Specified by:
visitVariableExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitVariableExpression
in classCodeVisitorSupport
-
visitPropertyExpression
- Specified by:
visitPropertyExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitPropertyExpression
in classCodeVisitorSupport
-
visitAttributeExpression
- Specified by:
visitAttributeExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitAttributeExpression
in classCodeVisitorSupport
-
visitRangeExpression
- Specified by:
visitRangeExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitRangeExpression
in classCodeVisitorSupport
-
visitNotExpression
- Specified by:
visitNotExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitNotExpression
in classCodeVisitorSupport
-
visitBinaryExpression
- Specified by:
visitBinaryExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitBinaryExpression
in classCodeVisitorSupport
-
getOriginalDeclarationType
-
inferDiamondType
-
pushInstanceOfTypeInfo
Stores information about types when [objectOfInstanceof instanceof typeExpression] is visited.- Parameters:
objectOfInstanceOf
- the expression which must be checked against instanceoftypeExpression
- the expression which represents the target type
-
typeCheckAssignment
protected void typeCheckAssignment(BinaryExpression assignmentExpression, Expression leftExpression, ClassNode leftExpressionType, Expression rightExpression, ClassNode rightExpressionType) -
checkGroovyConstructorMap
protected void checkGroovyConstructorMap(Expression receiver, ClassNode receiverType, MapExpression mapExpression) -
hasRHSIncompleteGenericTypeInfo
@Deprecated protected static boolean hasRHSIncompleteGenericTypeInfo(ClassNode inferredRightExpressionType)Deprecated. -
checkGroovyStyleConstructor
Deprecated.Checks that a constructor style expression is valid regarding the number of arguments and the argument types.- Parameters:
node
- the class node for which we will try to find a matching constructorarguments
- the constructor arguments
-
checkGroovyStyleConstructor
protected MethodNode checkGroovyStyleConstructor(ClassNode node, ClassNode[] arguments, ASTNode origin)Checks that a constructor style expression is valid regarding the number of arguments and the argument types.- Parameters:
node
- the class node for which we will try to find a matching constructorarguments
- the constructor arguments
-
extractTemporaryTypeInfoKey
When instanceof checks are found in the code, we store temporary type information data in theTypeCheckingContext.temporaryIfBranchTypeInformation
table. This method computes the key which must be used to store this type info.- Parameters:
expression
- the expression for which to compute the key- Returns:
- a key to be used for
TypeCheckingContext.temporaryIfBranchTypeInformation
-
findCurrentInstanceOfClass
A helper method which determines which receiver class should be used in error messages when a field or attribute is not found. The returned type class depends on whether we have temporary type information available (due to instanceof checks) and whether there is a single candidate in that case.- Parameters:
expr
- the expression for which an unknown field has been foundtype
- the type of the expression (used as fallback type)- Returns:
- if temporary information is available and there's only one type, returns the temporary type class otherwise falls back to the provided type class.
-
existsProperty
-
existsProperty
protected boolean existsProperty(PropertyExpression pexp, boolean readMode, ClassCodeVisitorSupport visitor)Checks whether a property exists on the receiver, or on any of the possible receiver classes (found in the temporary type information table)- Parameters:
pexp
- a property expressionreadMode
- if true, look for property read, else for property setvisitor
- if not null, when the property node is found, visit it with the provided visitor- Returns:
- true if the property is defined in any of the possible receiver classes
-
storeInferredTypeForPropertyExpression
@Deprecated protected void storeInferredTypeForPropertyExpression(PropertyExpression pexp, ClassNode flatInferredType)Deprecated. -
visitProperty
Description copied from interface:GroovyClassVisitor
Visit a PropertyNode.- Specified by:
visitProperty
in interfaceGroovyClassVisitor
- Overrides:
visitProperty
in classClassCodeVisitorSupport
-
visitField
Description copied from interface:GroovyClassVisitor
Visit a FieldNode.- Specified by:
visitField
in interfaceGroovyClassVisitor
- Overrides:
visitField
in classClassCodeVisitorSupport
-
visitForLoop
- Specified by:
visitForLoop
in interfaceGroovyCodeVisitor
- Overrides:
visitForLoop
in classClassCodeVisitorSupport
-
inferLoopElementType
Returns the inferred loop element type given a loop collection type. Used, for example, to infer the element type of afor (e in list)
loop.- Parameters:
collectionType
- the type of the collection- Returns:
- the inferred component type
- See Also:
inferComponentType(org.codehaus.groovy.ast.ClassNode, org.codehaus.groovy.ast.ClassNode)
-
isSecondPassNeededForControlStructure
protected boolean isSecondPassNeededForControlStructure(java.util.Map<VariableExpression,ClassNode> varOrigType, java.util.Map<VariableExpression,java.util.List<ClassNode>> oldTracker) -
visitWhileLoop
- Specified by:
visitWhileLoop
in interfaceGroovyCodeVisitor
- Overrides:
visitWhileLoop
in classClassCodeVisitorSupport
-
visitBitwiseNegationExpression
- Specified by:
visitBitwiseNegationExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitBitwiseNegationExpression
in classCodeVisitorSupport
-
visitUnaryPlusExpression
- Specified by:
visitUnaryPlusExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitUnaryPlusExpression
in classCodeVisitorSupport
-
visitUnaryMinusExpression
- Specified by:
visitUnaryMinusExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitUnaryMinusExpression
in classCodeVisitorSupport
-
visitPostfixExpression
- Specified by:
visitPostfixExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitPostfixExpression
in classCodeVisitorSupport
-
visitPrefixExpression
- Specified by:
visitPrefixExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitPrefixExpression
in classCodeVisitorSupport
-
visitConstructorOrMethod
- Overrides:
visitConstructorOrMethod
in classClassCodeVisitorSupport
-
visitExpressionStatement
- Specified by:
visitExpressionStatement
in interfaceGroovyCodeVisitor
- Overrides:
visitExpressionStatement
in classClassCodeVisitorSupport
-
visitReturnStatement
- Specified by:
visitReturnStatement
in interfaceGroovyCodeVisitor
- Overrides:
visitReturnStatement
in classClassCodeVisitorSupport
-
checkReturnType
-
addClosureReturnType
-
visitConstructorCallExpression
- Specified by:
visitConstructorCallExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitConstructorCallExpression
in classCodeVisitorSupport
-
typeCheckMapConstructor
protected MethodNode typeCheckMapConstructor(ConstructorCallExpression call, ClassNode receiver, Expression arguments) -
getArgumentTypes
-
visitClosureExpression
- Specified by:
visitClosureExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitClosureExpression
in classCodeVisitorSupport
-
visitMethodPointerExpression
- Specified by:
visitMethodPointerExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitMethodPointerExpression
in classCodeVisitorSupport
-
getDelegationMetadata
protected org.codehaus.groovy.transform.stc.DelegationMetadata getDelegationMetadata(ClosureExpression expression) -
restoreVariableExpressionMetadata
protected void restoreVariableExpressionMetadata(java.util.Map<VariableExpression,java.util.Map<StaticTypesMarker,java.lang.Object>> typesBeforeVisit) -
saveVariableExpressionMetadata
protected void saveVariableExpressionMetadata(java.util.Set<VariableExpression> closureSharedExpressions, java.util.Map<VariableExpression,java.util.Map<StaticTypesMarker,java.lang.Object>> typesBeforeVisit) -
shouldSkipMethodNode
-
visitMethod
Description copied from interface:GroovyClassVisitor
Visit a MethodNode.- Specified by:
visitMethod
in interfaceGroovyClassVisitor
- Overrides:
visitMethod
in classClassCodeVisitorSupport
-
visitConstructor
Description copied from interface:GroovyClassVisitor
Visit a ConstructorNode.- Specified by:
visitConstructor
in interfaceGroovyClassVisitor
- Overrides:
visitConstructor
in classClassCodeVisitorSupport
-
startMethodInference
-
visitObjectInitializerStatements
- Overrides:
visitObjectInitializerStatements
in classClassCodeVisitorSupport
-
addTypeCheckingInfoAnnotation
-
visitStaticMethodCallExpression
- Specified by:
visitStaticMethodCallExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitStaticMethodCallExpression
in classCodeVisitorSupport
-
checkClosureParameters
Deprecated.this method is unused, replaced withDelegatesTo
inference. -
silentlyVisitMethodNode
Visits a method call target, to infer the type. Don't report errors right away, that will be done by a later visitMethod call. -
visitMethodCallArguments
protected void visitMethodCallArguments(ClassNode receiver, ArgumentListExpression arguments, boolean visitClosures, MethodNode selectedMethod) -
inferClosureParameterTypes
protected void inferClosureParameterTypes(ClassNode receiver, Expression arguments, ClosureExpression expression, Parameter target, MethodNode method)Performs type inference on closure argument types whenever code like this is found:foo.collect { it.toUpperCase() }
.In this case the type checker tries to find if the
collect
method has itsClosure
argument annotated withClosureParams
. If so, then additional type inference can be performed and the type ofit
may be inferred.- Parameters:
receiver
-arguments
-expression
- closure or lambda expression for which the argument types should be inferredtarget
- parameter which may provideClosureParams
annotation or SAM typemethod
- method that declarestarget
-
addReceivers
-
visitMethodCallExpression
- Specified by:
visitMethodCallExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitMethodCallExpression
in classCodeVisitorSupport
-
getInferredReturnTypeFromWithClosureArgument
In the case of a Object.with { ... } call, this method is supposed to retrieve the inferred closure return type.- Parameters:
callArguments
- the argument list from the Object#with(Closure) call, ie. a single closure expression- Returns:
- the inferred closure return type or null
-
makeOwnerList
Given an object expression (a message receiver expression), generate list of possible types.- Parameters:
objectExpression
- the receiver expression- Returns:
- the list of types the receiver may be
-
checkForbiddenSpreadArgument
-
getTemporaryTypesForExpression
-
storeTargetMethod
-
isClosureCall
@Deprecated protected boolean isClosureCall(java.lang.String name, Expression objectExpression, Expression arguments)Deprecated. -
typeCheckClosureCall
protected void typeCheckClosureCall(Expression arguments, ClassNode[] argumentTypes, Parameter[] parameters) -
visitIfElse
- Specified by:
visitIfElse
in interfaceGroovyCodeVisitor
- Overrides:
visitIfElse
in classClassCodeVisitorSupport
-
visitInstanceofNot
-
visitBlockStatement
- Specified by:
visitBlockStatement
in interfaceGroovyCodeVisitor
- Overrides:
visitBlockStatement
in classClassCodeVisitorSupport
-
visitClosingBlock
-
findInstanceOfNotReturnExpression
Check IfStatement matched pattern : Object var1; if (!(var1 instanceOf Runnable)) { return } // Here var1 instance of RunnableReturn expression , which contains instanceOf (without not) Return null, if not found
-
findNotInstanceOfReturnExpression
Check IfStatement matched pattern : Object var1; if (var1 !instanceOf Runnable) { return } // Here var1 instance of RunnableReturn expression , which contains instanceOf (without not) Return null, if not found
-
visitSwitch
- Specified by:
visitSwitch
in interfaceGroovyCodeVisitor
- Overrides:
visitSwitch
in classClassCodeVisitorSupport
-
afterSwitchConditionExpressionVisited
- Overrides:
afterSwitchConditionExpressionVisited
in classCodeVisitorSupport
-
visitCaseStatement
- Specified by:
visitCaseStatement
in interfaceGroovyCodeVisitor
- Overrides:
visitCaseStatement
in classClassCodeVisitorSupport
-
popAssignmentTracking
protected java.util.Map<VariableExpression,ClassNode> popAssignmentTracking(java.util.Map<VariableExpression,java.util.List<ClassNode>> oldTracker) -
pushAssignmentTracking
-
visitArrayExpression
- Specified by:
visitArrayExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitArrayExpression
in classCodeVisitorSupport
-
visitCastExpression
- Specified by:
visitCastExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitCastExpression
in classCodeVisitorSupport
-
checkCast
-
visitTernaryExpression
- Specified by:
visitTernaryExpression
in interfaceGroovyCodeVisitor
- Overrides:
visitTernaryExpression
in classCodeVisitorSupport
-
visitTryCatchFinally
- Specified by:
visitTryCatchFinally
in interfaceGroovyCodeVisitor
- Overrides:
visitTryCatchFinally
in classClassCodeVisitorSupport
-
storeType
-
getResultType
-
getGroupOperationResultType
-
inferComponentType
-
findMethodOrFail
protected MethodNode findMethodOrFail(Expression expr, ClassNode receiver, java.lang.String name, ClassNode... args) -
prettyPrintMethodList
-
areCategoryMethodCalls
protected boolean areCategoryMethodCalls(java.util.List<MethodNode> foundMethods, java.lang.String name, ClassNode[] args) -
findMethodsWithGenerated
protected java.util.List<MethodNode> findMethodsWithGenerated(ClassNode receiver, java.lang.String name)Returns methods defined for the specified receiver and adds "non-existing" methods that will be generated afterwards by the compiler; for example if a method is using default values and the class node isn't compiled yet.- Parameters:
receiver
- the receiver where to find methodsname
- the name of the methods to return- Returns:
- the methods that are defined on the receiver completed with stubs for future methods
-
findMethod
protected java.util.List<MethodNode> findMethod(ClassNode receiver, java.lang.String name, ClassNode... args) -
extractPropertyNameFromMethodName
public static java.lang.String extractPropertyNameFromMethodName(java.lang.String prefix, java.lang.String methodName)Given a method name and a prefix, returns the name of the property that should be looked up, following the java beans rules. For example, "getName" would return "name", while "getFullName" would return "fullName". If the prefix is not found, returns null.- Parameters:
prefix
- the method name prefix ("get", "is", "set", ...)methodName
- the method name- Returns:
- a property name if the prefix is found and the method matches the java beans rules, null otherwise
-
collectAllInterfaceMethodsByName
@Deprecated protected void collectAllInterfaceMethodsByName(ClassNode type, java.lang.String name, java.util.List<MethodNode> methods)Deprecated. -
getType
-
storeInferredReturnType
Stores the inferred return type of a closure or a method. We are using a separate key to store inferred return type because the inferred type of a closure isClosure
, which is different from the inferred type of the code of the closure.- Parameters:
node
- aClosureExpression
or aMethodNode
type
- the inferred return type of the code- Returns:
- the old value of the inferred type
-
getInferredReturnType
Returns the inferred return type of a closure or method, if stored on the AST node. This method doesn't perform any type inference by itself.- Parameters:
node
- aClosureExpression
orMethodNode
- Returns:
- the expected return type
-
isNullConstant
-
isThisExpression
-
isSuperExpression
-
inferListExpressionType
-
inferMapExpressionType
-
inferReturnTypeGenerics
protected ClassNode inferReturnTypeGenerics(ClassNode receiver, MethodNode method, Expression arguments)If a method call returns a parameterized type, then perform additional inference on the return type, so that the type gets actual type arguments. For example, the methodArrays.asList(T...)
is parameterized withT
, which can be deduced type arguments or call arguments.- Parameters:
method
- the method nodearguments
- the method call argumentsreceiver
- the object expression type
-
inferReturnTypeGenerics
protected ClassNode inferReturnTypeGenerics(ClassNode receiver, MethodNode method, Expression arguments, GenericsType[] explicitTypeHints)If a method call returns a parameterized type, then perform additional inference on the return type, so that the type gets actual type arguments. For example, the methodArrays.asList(T...)
is parameterized withT
, which can be deduced type arguments or call arguments.- Parameters:
method
- the method nodearguments
- the method call argumentsreceiver
- the object expression typeexplicitTypeHints
- type arguments (optional), for exampleCollections.<String>emptyList()
-
typeCheckMethodsWithGenericsOrFail
protected boolean typeCheckMethodsWithGenericsOrFail(ClassNode receiver, ClassNode[] arguments, MethodNode candidateMethod, Expression location) -
formatArgumentList
-
addError
- Specified by:
addError
in interfaceErrorCollecting
- Overrides:
addError
in classClassCodeVisitorSupport
-
addStaticTypeError
-
addNoMatchingMethodError
protected void addNoMatchingMethodError(ClassNode receiver, java.lang.String name, ClassNode[] args, Expression call) -
addAmbiguousErrorMessage
protected void addAmbiguousErrorMessage(java.util.List<MethodNode> foundMethods, java.lang.String name, ClassNode[] args, Expression expr) -
addCategoryMethodCallError
-
addAssignmentError
protected void addAssignmentError(ClassNode leftType, ClassNode rightType, Expression assignmentExpression) -
addUnsupportedPreOrPostfixExpressionError
-
setMethodsToBeVisited
-
performSecondPass
public void performSecondPass() -
extractTypesFromParameters
-
wrapTypeIfNecessary
Returns a wrapped type if, and only if, the provided class node is a primitive type. This method differs fromClassHelper.getWrapper(org.codehaus.groovy.ast.ClassNode)
as it will return the same instance if the provided type is not a generic type.- Returns:
- the wrapped type
-
isClassInnerClassOrEqualTo
-
DelegatesTo
inference.