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