(ptarget, prop)
| 1007 | }, |
| 1008 | |
| 1009 | getOwnPropertyDescriptor(ptarget, prop) { |
| 1010 | // Forward to target to maintain Proxy invariants for seal/freeze |
| 1011 | return Reflect.getOwnPropertyDescriptor(ptarget, prop) |
| 1012 | }, |
| 1013 | |
| 1014 | preventExtensions(ptarget) { |
| 1015 | // Forward to target to allow Object.seal() and Object.preventExtensions() |
nothing calls this directly
no outgoing calls
no test coverage detected