definePropertyValueUint32 method
Implementation
bool definePropertyValueUint32(int idx, JSValue item, {JSProp? flags}) {
flags ??= JSProp.C_W_E;
return JS_DefinePropertyValueUint32(
_ctx.ref,
_ref.ref,
idx,
item.ref.ref,
flags.value,
) !=
0;
}