tonumber-numeric-separator-literal-nzd-nsl-dd.js (478B)
1 // Copyright (C) 2017 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-tonumber-applied-to-the-string-type 6 description: > 7 The NSL does not affect strings parsed by parseFloat - StrDecimalDigits 8 info: | 9 StrDecimalDigits ::: 10 DecimalDigit 11 StrDecimalDigits DecimalDigit 12 ... 13 14 features: [numeric-separator-literal] 15 ---*/ 16 17 assert.sameValue(parseFloat("1_1"), 1); 18 19 reportCompare(0, 0);