use of com.intellij.psi.impl.compiled.ClsParameterImpl in project kotlin by JetBrains.
the class JavaValueParameterImpl method getName.
@Override
@Nullable
public Name getName() {
PsiParameter psi = getPsi();
if (psi instanceof ClsParameterImpl && ((ClsParameterImpl) psi).isAutoGeneratedName()) {
return null;
}
String name = psi.getName();
return name == null ? null : Name.identifier(name);
}
Aggregations