From ab8204928725de0bec0ed8b9fbd923b2104a7409 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Fri, 25 May 2012 17:09:48 +0400 Subject: [PATCH] MutableDeclarationDescriptor removed --- .../lang/descriptors/ClassDescriptorBase.java | 5 +- .../MutableClassDescriptorLite.java | 34 ++++++++++- .../MutableDeclarationDescriptor.java | 60 ------------------- 3 files changed, 34 insertions(+), 65 deletions(-) delete mode 100644 compiler/frontend/src/org/jetbrains/jet/lang/descriptors/MutableDeclarationDescriptor.java diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ClassDescriptorBase.java b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ClassDescriptorBase.java index 289fc8f2677..bf985286ec6 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ClassDescriptorBase.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/ClassDescriptorBase.java @@ -27,10 +27,7 @@ import java.util.Map; /** * @author abreslav */ -public abstract class ClassDescriptorBase extends MutableDeclarationDescriptor implements ClassDescriptor { - public ClassDescriptorBase(DeclarationDescriptor containingDeclaration) { - super(containingDeclaration); - } +public abstract class ClassDescriptorBase implements ClassDescriptor { protected abstract JetScope getScopeForMemberLookup(); diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/MutableClassDescriptorLite.java b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/MutableClassDescriptorLite.java index 4321e6afae2..ed6c38c85b2 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/MutableClassDescriptorLite.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/MutableClassDescriptorLite.java @@ -22,6 +22,7 @@ import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import org.jetbrains.jet.lang.descriptors.annotations.AnnotationDescriptor; import org.jetbrains.jet.lang.resolve.BindingTrace; +import org.jetbrains.jet.lang.resolve.name.Name; import org.jetbrains.jet.lang.resolve.scopes.InnerClassesScopeWrapper; import org.jetbrains.jet.lang.resolve.scopes.JetScope; import org.jetbrains.jet.lang.resolve.scopes.WritableScope; @@ -60,9 +61,12 @@ public class MutableClassDescriptorLite extends ClassDescriptorBase private ClassReceiver implicitReceiver; + private Name name; + private final DeclarationDescriptor containingDeclaration; + public MutableClassDescriptorLite(@NotNull DeclarationDescriptor containingDeclaration, @NotNull ClassKind kind) { - super(containingDeclaration); + this.containingDeclaration = containingDeclaration; this.kind = kind; } @@ -76,6 +80,29 @@ public class MutableClassDescriptorLite extends ClassDescriptorBase return false; } + @NotNull + @Override + public DeclarationDescriptor getContainingDeclaration() { + return containingDeclaration; + } + + @NotNull + @Override + public Name getName() { + return name; + } + + public void setName(@NotNull Name name) { + assert this.name == null : this.name; + this.name = name; + } + + @NotNull + @Override + public DeclarationDescriptor getOriginal() { + return this; + } + private static boolean isStatic(DeclarationDescriptor declarationDescriptor) { if (declarationDescriptor instanceof NamespaceDescriptor) { return true; @@ -277,6 +304,11 @@ public class MutableClassDescriptorLite extends ClassDescriptorBase return visitor.visitClassDescriptor(this, data); } + @Override + public void acceptVoid(DeclarationDescriptorVisitor visitor) { + visitor.visitClassDescriptor(this, null); + } + @Override public List getAnnotations() { return annotations; diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/MutableDeclarationDescriptor.java b/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/MutableDeclarationDescriptor.java deleted file mode 100644 index b7bff02d067..00000000000 --- a/compiler/frontend/src/org/jetbrains/jet/lang/descriptors/MutableDeclarationDescriptor.java +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright 2010-2012 JetBrains s.r.o. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.jetbrains.jet.lang.descriptors; - -import org.jetbrains.annotations.NotNull; -import org.jetbrains.jet.lang.resolve.name.Name; - -/** - * @author abreslav - */ -public abstract class MutableDeclarationDescriptor implements DeclarationDescriptor { - private Name name; - private final DeclarationDescriptor containingDeclaration; - - public MutableDeclarationDescriptor(@NotNull DeclarationDescriptor containingDeclaration) { - this.containingDeclaration = containingDeclaration; - } - - @NotNull - @Override - public Name getName() { - return name; - } - - public void setName(@NotNull Name name) { - assert this.name == null : this.name; - this.name = name; - } - - @NotNull - @Override - public DeclarationDescriptor getOriginal() { - return this; - } - - @NotNull - @Override - public DeclarationDescriptor getContainingDeclaration() { - return containingDeclaration; - } - - @Override - public void acceptVoid(DeclarationDescriptorVisitor visitor) { - accept(visitor, null); - } -}