modeline.js (284B)
1 // Copyright (C) 2024 Igalia S.L. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 flags: [noStrict] 6 description: | 7 pending 8 esid: pending 9 ---*/ 10 async function f() { 11 let 12 await 0; 13 } 14 15 assert.sameValue(true, f instanceof Function);