(target, propertyKey, value, receiver)
| 61 | return Reflect.preventExtensions(target); |
| 62 | }, |
| 63 | set(target, propertyKey, value, receiver) { |
| 64 | return Reflect.set(target, propertyKey, createSmartMock(value), receiver); |
| 65 | }, |
| 66 | setPrototypeOf(target, prototype) { |
| 67 | return Reflect.setPrototypeOf(target, prototype); |
| 68 | }, |
nothing calls this directly
no test coverage detected