Endabgabe #20

Merged
i22035 merged 137 commits from Endabgabe into main 2024-07-05 11:59:47 +00:00
2 changed files with 0 additions and 9 deletions
Showing only changes of commit 3114064038 - Show all commits

View File

@ -723,10 +723,6 @@ public class MethodCodeGen implements bytecode.visitor.MethodVisitor {
@Override
public void visit(MethodCallNode methodCallNode) {
List<ParameterNode> parameterNodes = new ArrayList<>();
for (IExpressionNode expressionNode : methodCallNode.parameters) {
expressionNode.accept(this);
parameterNodes.add(new ParameterNode(expressionNode.getType(), ""));
}
int localVarIndex = -1;
if (methodCallNode.target.memberAccess.identifiers.size() > 1) {
localVarIndex = localVariables.indexOf(methodCallNode.target.memberAccess.identifiers.get(1));

View File

@ -105,11 +105,6 @@ public class E2EReflectionsTest {
runTest("MultipleClasses");
}
@Test
public void SelfReferenceTest() {
runTest("SelfReference");
}
@Test
public void ThisDotTest() {
runTest("ThisDot");