testing stdlib as part of the build

This commit is contained in:
Alex Tkachman
2012-01-08 16:47:26 +02:00
parent 897f3dc799
commit 5bb56a8abd
4 changed files with 112 additions and 2 deletions
@@ -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) {