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