use of org.jetbrains.plugins.groovy.lang.psi.api.types.GrClassTypeElement in project intellij-community by JetBrains.
the class GroovyPsiElementFactoryImpl method createReferenceElementFromText.
@NotNull
@Override
public GrCodeReferenceElement createReferenceElementFromText(@NotNull String refName, final PsiElement context) {
GroovyFile file = createGroovyFileChecked("(" + refName + ")foo", false, context);
GrTypeElement typeElement = ((GrTypeCastExpression) file.getTopStatements()[0]).getCastTypeElement();
return ((GrClassTypeElement) typeElement).getReferenceElement();
}
Aggregations