All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.truffle.js.nodes.intl.GetBooleanOptionNodeGen Maven / Gradle / Ivy

The newest version!
// 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 GetBooleanOptionNode#getOption}
 *     Activation probability: 1.00000
 *     With/without class size: 16/0 bytes
 * 
*/ @GeneratedBy(GetBooleanOptionNode.class) @SuppressWarnings("javadoc") public final class GetBooleanOptionNodeGen extends GetBooleanOptionNode { private GetBooleanOptionNodeGen(JSContext context, TruffleString property, Boolean fallback) { super(context, property, fallback); } @Override public Boolean executeValue(Object arg0Value) { return getOption(arg0Value); } @NeverDefault public static GetBooleanOptionNode create(JSContext context, TruffleString property, Boolean fallback) { return new GetBooleanOptionNodeGen(context, property, fallback); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy