Introduce ValueDescriptor as a common super-interface

of ParameterDescriptor and VariableDescriptor.
This commit is contained in:
Dmitry Petrov
2016-09-30 16:17:44 +03:00
parent b6c63a7823
commit 8efe326904
3 changed files with 31 additions and 16 deletions
@@ -19,14 +19,7 @@ package org.jetbrains.kotlin.descriptors;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.kotlin.types.KotlinType;
public interface ParameterDescriptor extends CallableDescriptor {
@NotNull
KotlinType getType();
@Override
@NotNull
DeclarationDescriptor getContainingDeclaration();
public interface ParameterDescriptor extends ValueDescriptor {
@NotNull
@Override
ParameterDescriptor getOriginal();
@@ -0,0 +1,29 @@
/*
* Copyright 2010-2016 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.kotlin.descriptors;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.kotlin.types.KotlinType;
public interface ValueDescriptor extends CallableDescriptor {
@NotNull
KotlinType getType();
@Override
@NotNull
DeclarationDescriptor getContainingDeclaration();
}
@@ -22,14 +22,7 @@ import org.jetbrains.kotlin.resolve.constants.ConstantValue;
import org.jetbrains.kotlin.types.KotlinType;
import org.jetbrains.kotlin.types.TypeSubstitutor;
public interface VariableDescriptor extends CallableDescriptor {
@NotNull
KotlinType getType();
@Override
@NotNull
DeclarationDescriptor getContainingDeclaration();
public interface VariableDescriptor extends ValueDescriptor {
@Override
VariableDescriptor substitute(@NotNull TypeSubstitutor substitutor);