org.jruby.truffle.platform.graal.AssertNotCompiledNodeGen Maven / Gradle / Ivy
// CheckStyle: start generated
package org.jruby.truffle.platform.graal;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.frame.VirtualFrame;
import com.oracle.truffle.api.nodes.NodeCost;
@GeneratedBy(AssertNotCompiledNode.class)
public final class AssertNotCompiledNodeGen extends AssertNotCompiledNode {
private AssertNotCompiledNodeGen() {
}
@Override
public NodeCost getCost() {
return NodeCost.MONOMORPHIC;
}
@Override
public Object execute(VirtualFrame frameValue) {
return this.assertNotCompiled();
}
@Override
public void executeVoid(VirtualFrame frameValue) {
execute(frameValue);
return;
}
public static AssertNotCompiledNode create() {
return new AssertNotCompiledNodeGen();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy