forked from JavaTX/JavaCompilerCore
Please enter the commit message for your changes. Lines starting
with '#' will be ignored, and an empty message aborts the commit.
This commit is contained in:
parent
f32b1ee5b2
commit
9019d90b1e
@ -3,9 +3,8 @@ import java.util.Vector;
|
||||
public class TestVector {
|
||||
|
||||
m(v, w) {
|
||||
var a = v.elementAt(0);
|
||||
var b = id(a);
|
||||
w.addElement(b);
|
||||
w.addElement(id(v.elementAt(0)));
|
||||
|
||||
}
|
||||
|
||||
id(x) {
|
||||
|
@ -23,7 +23,7 @@ import java.util.List;
|
||||
|
||||
public class TestGenerics {
|
||||
|
||||
private static final String rootDirectory = System.getProperty("user.dir") + "/resources/insertGenericsJav/";
|
||||
private static final String rootDirectory = System.getProperty("user.dir") + "/resources/insertGenerics/javFiles/";
|
||||
private static final String bytecodeDirectory = System.getProperty("user.dir") + "/src/test/resources/testBytecode/generatedBC/";
|
||||
|
||||
private record Result(List<GenericsResult> genericsResults, ClassOrInterface clazz) {
|
||||
|
Loading…
Reference in New Issue
Block a user