JSCFunctionListEntry.defPropInt32 constructor
JSCFunctionListEntry.defPropInt32(})
Implementation
factory JSCFunctionListEntry.defPropInt32(
JSContext ctx,
String name,
int val,
JSProp propFlags, {
bool autoDispose = true,
}) {
return JSCFunctionListEntry._(
ctx,
name: name,
propFlags: propFlags,
defType: JSDef.PROP_INT32,
magic: 0,
union: JSCFuntionListEntryUnion(i32: val),
autoDispose: autoDispose,
);
}