Renamed class
This commit is contained in:
+1
-1
@@ -18,7 +18,7 @@ package org.jetbrains.kotlin.psi;
|
||||
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
public interface KtWithExpressionInitializer extends KtDeclaration {
|
||||
public interface KtDeclarationWithInitializer extends KtDeclaration {
|
||||
@Nullable
|
||||
KtExpression getInitializer();
|
||||
|
||||
@@ -34,7 +34,7 @@ import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
public class KtNamedFunction extends KtTypeParameterListOwnerStub<KotlinFunctionStub>
|
||||
implements KtFunction, KtWithExpressionInitializer, PsiModifiableCodeBlock {
|
||||
implements KtFunction, KtDeclarationWithInitializer, PsiModifiableCodeBlock {
|
||||
public KtNamedFunction(@NotNull ASTNode node) {
|
||||
super(node);
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
public class KtPropertyAccessor extends KtDeclarationStub<KotlinPropertyAccessorStub>
|
||||
implements KtDeclarationWithBody, KtModifierListOwner, KtWithExpressionInitializer {
|
||||
implements KtDeclarationWithBody, KtModifierListOwner, KtDeclarationWithInitializer {
|
||||
public KtPropertyAccessor(@NotNull ASTNode node) {
|
||||
super(node);
|
||||
}
|
||||
|
||||
@@ -16,6 +16,6 @@
|
||||
|
||||
package org.jetbrains.kotlin.psi;
|
||||
|
||||
public interface KtVariableDeclaration extends KtCallableDeclaration, KtWithExpressionInitializer, KtValVarKeywordOwner {
|
||||
public interface KtVariableDeclaration extends KtCallableDeclaration, KtDeclarationWithInitializer, KtValVarKeywordOwner {
|
||||
boolean isVar();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user