use of org.graalvm.compiler.truffle.test.nodes.ExplodeLoopUntilReturnWithThrowNode in project graal by oracle.
the class SimplePartialEvaluationTest method explodeLoopUntilReturnWithThrow.
@Test
public void explodeLoopUntilReturnWithThrow() {
FrameDescriptor fd = new FrameDescriptor();
AbstractTestNode result = new ExplodeLoopUntilReturnWithThrowNode();
assertPartialEvalEquals("constant42", new RootTestNode(fd, "explodeLoopUntilReturnWithThrow", result));
}
Aggregations