(_shadow, prop)
| 5455 | // See https://github.com/endojs/endo/issues/1510 |
| 5456 | // TODO: report as bug to v8 or Chrome, and record issue link here. |
| 5457 | getOwnPropertyDescriptor(_shadow, prop) { |
| 5458 | // Coerce with `String` in case prop is a symbol. |
| 5459 | const quotedProp= q(String(prop)); |
| 5460 | // eslint-disable-next-line @endo/no-polymorphic-call |
| 5461 | console.warn( |
| 5462 | `getOwnPropertyDescriptor trap on scopeTerminatorHandler for ${quotedProp}`, |
| 5463 | TypeError().stack); |
| 5464 | |
| 5465 | return undefined; |
| 5466 | }, |
| 5467 | |
| 5468 | // See https://github.com/endojs/endo/issues/1490 |
| 5469 | // TODO Report bug to JSC or Safari |
no outgoing calls
no test coverage detected