prototype property

JSValue get prototype

Implementation

JSValue get prototype {
  return JSValue(_context, js_bd.JSObjectGetPrototype(_context.ref, _ref));
}
set prototype (JSValue value)

Implementation

set prototype(JSValue value) {
  js_bd.JSObjectSetPrototype(_context.ref, _ref, value.ref);
}