[python] Remove unused PyNamedParameter#getRepr

GitOrigin-RevId: 1d7eccf4fc0b5f20a571a8466ff4f4bc8d038826
This commit is contained in:
Mikhail Golubev
2025-05-07 15:10:03 +03:00
committed by intellij-monorepo-bot
parent 4e8068cba1
commit 98ec9cfd25
2 changed files with 0 additions and 15 deletions

View File

@@ -23,16 +23,6 @@ public interface PyNamedParameter extends PyAstNamedParameter, PyParameter, PsiN
return (PyExpression)PyAstNamedParameter.super.getDefaultValue();
}
/**
* @param includeDefaultValue if true, include the default value after an "=".
* @param context context to be used to resolve argument type
* @return canonical representation of parameter.
* Includes asterisks for *param and **param, and name.
* Also includes argument type if {@code context} is not null and resolved type is not unknown.
*/
@NotNull
String getRepr(boolean includeDefaultValue, @Nullable TypeEvalContext context);
/**
* @param context context to be used to resolve argument type
* @return argument type. Returns element type for *param and value type for **param.