com.oracle.truffle.js.nodes.intl.InitializeDisplayNamesNodeGen Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
// CheckStyle: start generated
package com.oracle.truffle.js.nodes.intl;
import com.oracle.truffle.api.dsl.GeneratedBy;
import com.oracle.truffle.api.dsl.Introspection;
import com.oracle.truffle.api.dsl.Introspection.Provider;
import com.oracle.truffle.api.nodes.NodeCost;
import com.oracle.truffle.api.object.DynamicObject;
import com.oracle.truffle.js.runtime.JSContext;
@GeneratedBy(InitializeDisplayNamesNode.class)
public final class InitializeDisplayNamesNodeGen extends InitializeDisplayNamesNode implements Provider {
private InitializeDisplayNamesNodeGen(JSContext context) {
super(context);
}
@Override
public DynamicObject executeInit(DynamicObject arg0Value, Object arg1Value, Object arg2Value) {
return initializeDisplayNames(arg0Value, arg1Value, arg2Value);
}
@Override
public NodeCost getCost() {
return NodeCost.MONOMORPHIC;
}
@Override
public Introspection getIntrospectionData() {
Object[] data = new Object[2];
Object[] s;
data[0] = 0;
s = new Object[3];
s[0] = "initializeDisplayNames";
s[1] = (byte)0b01 /* active */;
data[1] = s;
return Provider.create(data);
}
public static InitializeDisplayNamesNode create(JSContext context) {
return new InitializeDisplayNamesNodeGen(context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy