Delete almost all code related to signature writing
Delete org.jetbrains.jet.rt.signature and jet.typeinfo packages from runtime, refactor BothSignatureWriter so that it now writes only java generic signature and saves parameter types and kinds
This commit is contained in:
committed by
Pavel V. Talanov
parent
5d647cac94
commit
763572663e
@@ -27,6 +27,7 @@ import java.util.Set;
|
||||
public interface TypeParameterDescriptor extends ClassifierDescriptor {
|
||||
boolean isReified();
|
||||
|
||||
@NotNull
|
||||
Variance getVariance();
|
||||
|
||||
@NotNull
|
||||
|
||||
+1
@@ -124,6 +124,7 @@ public class TypeParameterDescriptorImpl extends DeclarationDescriptorNonRootImp
|
||||
}
|
||||
|
||||
@Override
|
||||
@NotNull
|
||||
public Variance getVariance() {
|
||||
return variance;
|
||||
}
|
||||
|
||||
+1
@@ -97,6 +97,7 @@ public abstract class AbstractLazyTypeParameterDescriptor implements TypeParamet
|
||||
return reified;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public Variance getVariance() {
|
||||
return variance;
|
||||
|
||||
Reference in New Issue
Block a user