mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
keyword argument completion refactored a bit
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package com.jetbrains.python.psi.impl;
|
||||
|
||||
import com.intellij.openapi.extensions.ExtensionPointName;
|
||||
import com.jetbrains.python.psi.PyCallExpression;
|
||||
import com.jetbrains.python.psi.PyFunction;
|
||||
|
||||
import java.util.List;
|
||||
@@ -13,5 +14,5 @@ import java.util.List;
|
||||
public interface PyKeywordArgumentProvider {
|
||||
ExtensionPointName<PyKeywordArgumentProvider> EP_NAME = ExtensionPointName.create("Pythonid.keywordArgumentProvider");
|
||||
|
||||
List<String> getKeywordArguments(PyFunction function);
|
||||
List<String> getKeywordArguments(PyFunction function, PyCallExpression callExpr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user