Searched refs:typeExpr (Results 1 – 3 of 3) sorted by relevance
353 TypeExpr typeExpr = (TypeExpr) methodReferenceExpr.getScope(); in toMethodUsage() local354 if (!(typeExpr.getType() instanceof com.github.javaparser.ast.type.ClassOrInterfaceType)) { in toMethodUsage()355 … throw new UnsupportedOperationException(typeExpr.getType().getClass().getCanonicalName()); in toMethodUsage()357 ClassOrInterfaceType classOrInterfaceType = (ClassOrInterfaceType) typeExpr.getType(); in toMethodUsage()
361 TypeExpr typeExpr = (TypeExpr) methodReferenceExpr.getScope(); in toMethodUsage() local362 if (!(typeExpr.getType() instanceof com.github.javaparser.ast.type.ClassOrInterfaceType)) { in toMethodUsage()363 … throw new UnsupportedOperationException(typeExpr.getType().getClass().getCanonicalName()); in toMethodUsage()365 ClassOrInterfaceType classOrInterfaceType = (ClassOrInterfaceType) typeExpr.getType(); in toMethodUsage()
147 Line 354) typeExpr.getType() ==> com.github.javaparser.ast.expr.TypeExpr.getType()148 Line 355) typeExpr.getType().getClass().getCanonicalName() ==> java.lang.Class.getCanonicalName()149 Line 355) typeExpr.getType().getClass() ==> java.lang.Object.getClass()150 Line 355) typeExpr.getType() ==> com.github.javaparser.ast.expr.TypeExpr.getType()151 Line 357) typeExpr.getType() ==> com.github.javaparser.ast.expr.TypeExpr.getType()