(globalObject, object)
| 2711 | } |
| 2712 | } |
| 2713 | function newObjectInRealm(globalObject, object) { |
| 2714 | const ctorRegistry = initCtorRegistry(globalObject); |
| 2715 | return Object.defineProperties( |
| 2716 | Object.create(ctorRegistry["%Object.prototype%"]), |
| 2717 | Object.getOwnPropertyDescriptors(object) |
| 2718 | ); |
| 2719 | } |
| 2720 | var wrapperSymbol = Symbol("wrapper"); |
| 2721 | var implSymbol = Symbol("impl"); |
| 2722 | var sameObjectCaches = Symbol("SameObject caches"); |
no test coverage detected
searching dependent graphs…