split TestlibTest into two tests
* old tests attaches stdlib sources to testlib classpath * new test compiles stdlib into stdlib.jar and then adds stdlib.jar to testlib classpath
This commit is contained in:
@@ -9,7 +9,11 @@ public class GeneratedClassLoader extends ClassLoader {
|
||||
private final ClassFileFactory state;
|
||||
|
||||
public GeneratedClassLoader(@NotNull ClassFileFactory state) {
|
||||
super(GeneratedClassLoader.class.getClassLoader());
|
||||
this(state, GeneratedClassLoader.class.getClassLoader());
|
||||
}
|
||||
|
||||
public GeneratedClassLoader(@NotNull ClassFileFactory state, ClassLoader parentClassLoader) {
|
||||
super(parentClassLoader);
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user