11cb0ef41Sopenharmony_cimodule.exports = new Proxy({}, {
21cb0ef41Sopenharmony_ci  get(_target, prop) { throw new Error(`get: ${String(prop)}`); },
31cb0ef41Sopenharmony_ci  getPrototypeOf() { throw new Error('getPrototypeOf'); },
41cb0ef41Sopenharmony_ci  setPrototypeOf() { throw new Error('setPrototypeOf'); },
51cb0ef41Sopenharmony_ci  isExtensible() { throw new Error('isExtensible'); },
61cb0ef41Sopenharmony_ci  preventExtensions() { throw new Error('preventExtensions'); },
71cb0ef41Sopenharmony_ci  getOwnPropertyDescriptor() { throw new Error('getOwnPropertyDescriptor'); },
81cb0ef41Sopenharmony_ci  defineProperty() { throw new Error('defineProperty'); },
91cb0ef41Sopenharmony_ci  has() { throw new Error('has'); },
101cb0ef41Sopenharmony_ci  set() { throw new Error('set'); },
111cb0ef41Sopenharmony_ci  deleteProperty() { throw new Error('deleteProperty'); },
121cb0ef41Sopenharmony_ci  ownKeys() { throw new Error('ownKeys'); },
131cb0ef41Sopenharmony_ci  apply() { throw new Error('apply'); },
141cb0ef41Sopenharmony_ci  construct() { throw new Error('construct'); }
151cb0ef41Sopenharmony_ci});
161cb0ef41Sopenharmony_ci
171cb0ef41Sopenharmony_cirequire('./warning-skip-proxy-traps-b.js');
18