Renamed class

This commit is contained in:
Valentin Kipyatkov
2016-09-05 17:47:35 +03:00
parent 29831f648d
commit b1a6255ac2
13 changed files with 16 additions and 16 deletions
@@ -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();
}