mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Added stubs for docstrings of target expressions
This commit is contained in:
@@ -12,7 +12,8 @@ import org.jetbrains.annotations.Nullable;
|
||||
/**
|
||||
* @author yole
|
||||
*/
|
||||
public interface PyTargetExpression extends PyQualifiedExpression, PsiNamedElement, PsiNameIdentifierOwner, StubBasedPsiElement<PyTargetExpressionStub> {
|
||||
public interface PyTargetExpression extends PyQualifiedExpression, PsiNamedElement, PsiNameIdentifierOwner, PyDocStringOwner,
|
||||
StubBasedPsiElement<PyTargetExpressionStub> {
|
||||
PyTargetExpression[] EMPTY_ARRAY = new PyTargetExpression[0];
|
||||
|
||||
/**
|
||||
|
||||
@@ -45,4 +45,7 @@ public interface PyTargetExpressionStub extends NamedStub<PyTargetExpression> {
|
||||
|
||||
@Nullable
|
||||
<T extends CustomTargetExpressionStub> T getCustomStub(Class<T> stubClass);
|
||||
|
||||
@Nullable
|
||||
String getDocString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user