Implement support for additional receivers in the backend

This commit is contained in:
Ilya Chernikov
2018-03-13 11:07:16 +01:00
parent 611aff6b61
commit 00320bad8d
10 changed files with 138 additions and 37 deletions
@@ -18,10 +18,15 @@ package org.jetbrains.kotlin.descriptors;
import org.jetbrains.annotations.NotNull;
import java.util.List;
public interface ScriptDescriptor extends ClassDescriptor {
int getPriority();
@NotNull
@Override
ClassConstructorDescriptor getUnsubstitutedPrimaryConstructor();
@NotNull
List<ClassDescriptor> getImplicitReceivers();
}