Merge branch 'targetBytecode' of ssh://gitea.hb.dhbw-stuttgart.de:2222/JavaTX/JavaCompilerCore into targetBytecode
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 2m33s
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 2m33s
This commit is contained in:
commit
e50f941b79
@ -79,9 +79,10 @@ public class Match implements IMatch {
|
||||
// SUBST - Rule
|
||||
if(lhsType instanceof PlaceholderType) {
|
||||
mgu.add((PlaceholderType) lhsType, rhsType);
|
||||
termsList = termsList.stream().map(mgu::applyleft).collect(Collectors.toCollection(ArrayList::new));
|
||||
idx = idx+1 == termsList.size() ? 0 : idx+1;
|
||||
continue;
|
||||
//PL 2024-04-08 falsch da es sich nicht um Unifikation handelt
|
||||
//termsList = termsList.stream().map(mgu::applyleft).collect(Collectors.toCollection(ArrayList::new));
|
||||
//continue;
|
||||
}
|
||||
|
||||
idx++;
|
||||
|
@ -1034,7 +1034,7 @@ public class TestComplete {
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore("This hangs")
|
||||
//@Ignore("This hangs")
|
||||
public void testBug309() throws Exception {
|
||||
var classFiles = generateClassFiles(new ByteArrayClassLoader(), "Bug309.jav");
|
||||
var clazz = classFiles.get("Bug309");
|
||||
|
Loading…
Reference in New Issue
Block a user