setPropertyInternal method

bool setPropertyInternal(
  1. int prop,
  2. JSValue val,
  3. JSValue thiz,
  4. JSProp flags,
)

Implementation

bool setPropertyInternal(int prop, JSValue val, JSValue thiz, JSProp flags) =>
    JS_SetPropertyInternal(
      _ctx.ref,
      _ref.ref,
      prop,
      val.ref.ref,
      thiz.ref.ref,
      flags.value,
    ) !=
    0;