Implement throw
This commit is contained in:
parent
9da763b361
commit
a035589647
@ -1,3 +1,8 @@
|
||||
import java.lang.String;
|
||||
import java.lang.RuntimeException;
|
||||
|
||||
public class Exceptions {
|
||||
// m(Integer i) throws
|
||||
m() {
|
||||
throw new RuntimeException("Some Exception");
|
||||
}
|
||||
}
|
@ -1040,6 +1040,11 @@ public class Codegen {
|
||||
mv.visitMethodInsn(INVOKESPECIAL, _new.type().getInternalName(), "<init>", _new.getDescriptor(), false);
|
||||
break;
|
||||
}
|
||||
case TargetThrow _throw: {
|
||||
generate(state, _throw.expr());
|
||||
mv.visitInsn(ATHROW);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
throw new CodeGenException("Unexpected value: " + expr);
|
||||
}
|
||||
|
@ -611,8 +611,7 @@ public class StatementGenerator {
|
||||
}
|
||||
|
||||
private Statement convert(Java17Parser.ThrowstmtContext stmt) {
|
||||
// TODO
|
||||
throw new NotImplementedException();
|
||||
return new Throw(convert(stmt.expression()), stmt.getStart());
|
||||
}
|
||||
|
||||
private Statement convert(Java17Parser.SynchronizedstmtContext stmt) {
|
||||
|
@ -266,6 +266,11 @@ public abstract class AbstractASTWalker implements ASTVisitor {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(Throw aThrow) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(AssignToField assignLeftSide) {
|
||||
assignLeftSide.field.accept(this);
|
||||
|
@ -76,4 +76,6 @@ public interface StatementVisitor {
|
||||
void visit(UnaryExpr unaryExpr);
|
||||
|
||||
void visit(Literal literal);
|
||||
|
||||
void visit(Throw aThrow);
|
||||
}
|
||||
|
@ -0,0 +1,21 @@
|
||||
package de.dhbwstuttgart.syntaxtree.statement;
|
||||
|
||||
import de.dhbwstuttgart.syntaxtree.StatementVisitor;
|
||||
import de.dhbwstuttgart.syntaxtree.type.RefTypeOrTPHOrWildcardOrGeneric;
|
||||
import de.dhbwstuttgart.syntaxtree.type.Void;
|
||||
import org.antlr.v4.runtime.Token;
|
||||
|
||||
public class Throw extends Statement {
|
||||
|
||||
public final Expression expr;
|
||||
|
||||
public Throw(Expression expr, Token offset) {
|
||||
super(new Void(offset), offset);
|
||||
this.expr = expr;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void accept(StatementVisitor visitor) {
|
||||
visitor.visit(this);
|
||||
}
|
||||
}
|
@ -407,6 +407,11 @@ public class OutputGenerator implements ASTVisitor {
|
||||
out.append(literal.value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(Throw aThrow) {
|
||||
// TODO implement
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(Switch switchStmt) {
|
||||
out.append("switch(");
|
||||
|
@ -323,6 +323,11 @@ public class StatementToTargetExpression implements ASTVisitor {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(Throw aThrow) {
|
||||
result = new TargetThrow(converter.convert(aThrow.expr));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(Switch switchStmt) {
|
||||
var cases = switchStmt.getBlocks().stream().filter(s -> !s.isDefault()).map(converter::convert).toList();
|
||||
|
@ -173,6 +173,11 @@ public abstract class TracingStatementVisitor implements StatementVisitor {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(Throw aThrow) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(Switch switchStmt) {
|
||||
|
||||
|
@ -3,7 +3,7 @@ package de.dhbwstuttgart.target.tree.expression;
|
||||
import de.dhbwstuttgart.target.tree.type.*;
|
||||
|
||||
public sealed interface TargetExpression
|
||||
permits TargetBinaryOp, TargetBlock, TargetBreak, TargetCast, TargetClassName, TargetContinue, TargetFieldVar, TargetFor, TargetForEach, TargetIf, TargetInstanceOf, TargetLambdaExpression, TargetLiteral, TargetLocalVar, TargetReturn, TargetStatementExpression, TargetSuper, TargetSwitch, TargetPattern, TargetTernary, TargetThis, TargetUnaryOp, TargetVarDecl, TargetWhile, TargetYield {
|
||||
permits TargetBinaryOp, TargetBlock, TargetBreak, TargetCast, TargetClassName, TargetContinue, TargetFieldVar, TargetFor, TargetForEach, TargetIf, TargetInstanceOf, TargetLambdaExpression, TargetLiteral, TargetLocalVar, TargetPattern, TargetReturn, TargetStatementExpression, TargetSuper, TargetSwitch, TargetTernary, TargetThis, TargetThrow, TargetUnaryOp, TargetVarDecl, TargetWhile, TargetYield {
|
||||
|
||||
default TargetType type() {
|
||||
return null;
|
||||
|
@ -0,0 +1,4 @@
|
||||
package de.dhbwstuttgart.target.tree.expression;
|
||||
|
||||
public record TargetThrow(TargetExpression expr) implements TargetExpression {
|
||||
}
|
@ -456,6 +456,11 @@ public class TYPEStmt implements StatementVisitor {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(Throw aThrow) {
|
||||
aThrow.expr.accept(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void visit(Return returnExpr) {
|
||||
returnExpr.retexpr.accept(this);
|
||||
|
@ -1,9 +1,9 @@
|
||||
|
||||
import de.dhbwstuttgart.environment.ByteArrayClassLoader;
|
||||
import de.dhbwstuttgart.syntaxtree.statement.Expression;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
import java.lang.reflect.ParameterizedType;
|
||||
import java.util.Arrays;
|
||||
@ -799,4 +799,21 @@ public class TestComplete {
|
||||
assertTrue((Boolean) clazz.getDeclaredMethod("test2").invoke(instance));
|
||||
assertFalse((Boolean) clazz.getDeclaredMethod("test3").invoke(instance));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testExceptions() throws Exception {
|
||||
var classFiles = generateClassFiles(new ByteArrayClassLoader(), "Exceptions.jav");
|
||||
var clazz = classFiles.get("Exceptions");
|
||||
var instance = clazz.getDeclaredConstructor().newInstance();
|
||||
|
||||
try {
|
||||
clazz.getDeclaredMethod("m").invoke(instance);
|
||||
fail("No exception thrown!");
|
||||
} catch (InvocationTargetException exception) {
|
||||
var exc = exception.getTargetException();
|
||||
if (!(exc instanceof RuntimeException rexp) || !rexp.getMessage().equals("Some Exception")) {
|
||||
fail("Wrong exception thrown!");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user