Added stubs for docstrings of target expressions

This commit is contained in:
Andrey Vlasovskikh
2013-08-16 20:09:05 +04:00
parent 14bb2de5f4
commit 2e8150a2e9
12 changed files with 111 additions and 50 deletions
@@ -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();
}