getPropertyInternal method

JSValue getPropertyInternal(
  1. int prop,
  2. JSValue receiver,
  3. int throwRefError, {
  4. bool autoDispose = true,
})

Implementation

JSValue getPropertyInternal(
  int prop,
  JSValue receiver,
  int throwRefError, {
  bool autoDispose = true,
}) =>
    JSValue.ptr(
      _ctx,
      JS_GetPropertyInternal(
        _ctx.ref,
        _ref.ref,
        prop,
        receiver.ref.ref,
        throwRefError,
      ),
      autoDispose: autoDispose,
    );