JSCFunctionListEntry.defObject constructor
JSCFunctionListEntry.defObject(})
Implementation
factory JSCFunctionListEntry.defObject(
JSContext ctx,
String name,
JSCFunctionListEntry tab,
int len,
JSProp propFlags, {
bool autoDispose = true,
}) {
return JSCFunctionListEntry._(
ctx,
name: name,
propFlags: propFlags,
defType: JSDef.OBJECT,
magic: 0,
union: JSCFuntionListEntryUnion(
proplist: JSCFunctionListEntryProplist(len, tab),
),
autoDispose: autoDispose,
);
}