(fnConstructor)
| 5 | // Flags: --allow-natives-syntax |
| 6 | |
| 7 | function f(fnConstructor) { |
| 8 | return Object.is(new fnConstructor(), undefined); |
| 9 | } |
| 10 | |
| 11 | const realmIndex = Realm.createAllowCrossRealmAccess(); |
| 12 | const otherFunction = Realm.global(realmIndex).Function; |