(obj, descs)
| 3741 | // This ensures that the intrinsics added to the intrinsics collector object |
| 3742 | // graph do not overlap. |
| 3743 | function initProperties(obj, descs) { |
| 3744 | for( const [name, desc]of entries(descs)) { |
| 3745 | initProperty(obj, name, desc); |
| 3746 | } |
| 3747 | } |
| 3748 | |
| 3749 | // sampleGlobals creates an intrinsics object, suitable for |
| 3750 | // interinsicsCollector.addIntrinsics, from the named properties of a global |
no test coverage detected