(target, prop)
| 617 | return prop in container.support[name] |
| 618 | }, |
| 619 | getOwnPropertyDescriptor(target, prop) { |
| 620 | if (!container.support[name]) { |
| 621 | // Object will be loaded on property access |
| 622 | return { |
| 623 | enumerable: true, |
| 624 | configurable: true, |
| 625 | value: undefined, |
| 626 | } |
| 627 | } |
| 628 | return { |
| 629 | enumerable: true, |
| 630 | configurable: true, |
| 631 | value: container.support[name][prop], |
| 632 | } |
| 633 | }, |
| 634 | ownKeys() { |
| 635 | if (!container.support[name]) { |
| 636 | return [] |
nothing calls this directly
no test coverage detected