testing stdlib as part of the build
This commit is contained in:
@@ -118,7 +118,7 @@ public class CodegenUtil {
|
||||
return false;
|
||||
}
|
||||
|
||||
private static void addSuperTypes(JetType type, Set<JetType> set) {
|
||||
public static void addSuperTypes(JetType type, Set<JetType> set) {
|
||||
set.add(type);
|
||||
|
||||
for (JetType jetType : type.getConstructor().getSupertypes()) {
|
||||
|
||||
@@ -30,6 +30,11 @@ public class CompileSession {
|
||||
private final List<JetFile> mySourceFiles = new ArrayList<JetFile>();
|
||||
private final List<JetFile> myLibrarySourceFiles = new ArrayList<JetFile>();
|
||||
private List<String> myErrors = new ArrayList<String>();
|
||||
|
||||
public BindingContext getMyBindingContext() {
|
||||
return myBindingContext;
|
||||
}
|
||||
|
||||
private BindingContext myBindingContext;
|
||||
|
||||
public CompileSession(JetCoreEnvironment environment) {
|
||||
|
||||
Reference in New Issue
Block a user