nonexistent.js (287B)
1 // Copyright (C) 2017 Igalia, S.L. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 description: BigInt does not have a static parseInt function 6 features: [BigInt] 7 ---*/ 8 9 assert(!BigInt.hasOwnProperty("parseInt")); 10 11 reportCompare(0, 0);