com.oracle.truffle.js.nodes.intl.GetNumberOptionNodeGen Maven / Gradle / Ivy
// CheckStyle: start generated
package com.oracle.truffle.js.nodes.intl;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.dsl.NeverDefault;
import com.oracle.truffle.api.strings.TruffleString;
import com.oracle.truffle.js.runtime.JSContext;
/**
* Debug Info:
* Specialization {@link GetNumberOptionNode#getOption}
* Activation probability: 1.00000
* With/without class size: 16/0 bytes
*
*/
@GeneratedBy(GetNumberOptionNode.class)
@SuppressWarnings("javadoc")
public final class GetNumberOptionNodeGen extends GetNumberOptionNode {
private GetNumberOptionNodeGen(JSContext context, TruffleString property) {
super(context, property);
}
@Override
public int executeInt(Object arg0Value, int arg1Value, int arg2Value, int arg3Value) {
return getOption(arg0Value, arg1Value, arg2Value, arg3Value);
}
@NeverDefault
public static GetNumberOptionNode create(JSContext context, TruffleString property) {
return new GetNumberOptionNodeGen(context, property);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy