Use parameters provided by function type for method signature checks in inspections

This commit is contained in:
Andrey Vlasovskikh
2013-09-13 19:22:18 +04:00
parent 79395feed7
commit 51d3a547c8
8 changed files with 104 additions and 84 deletions
@@ -39,14 +39,6 @@ public interface PyParameterList extends PyElement, StubBasedPsiElement<PyParame
*/
boolean hasKeywordContainer();
/**
* Checks is this parameter list is the same or is a superset of another parameter list.
* (The reverse is only true is the lists are the same.)
* @param another what to compare to
* @return true if this list is a superset of another.
*/
boolean isCompatibleTo(@NotNull PyParameterList another);
String getPresentableText(boolean includeDefaultValue);
@Nullable