string-numeric-separator-literal-nzd-nsl-dd.js (696B)
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: prod-NumericLiteralSeparator 6 description: NumericLiteralSeparator is not valid on string conversions for ToNumber operations 7 info: | 8 NonZeroDigit NumericLiteralSeparator DecimalDigits 9 10 NumericLiteralSeparator :: 11 _ 12 13 DecimalIntegerLiteral :: 14 ... 15 NonZeroDigit NumericLiteralSeparator_opt DecimalDigits 16 17 NonZeroDigit :: one of 18 1 2 3 4 5 6 7 8 9 19 20 DecimalDigits :: 21 ... 22 DecimalDigits DecimalDigit 23 ... 24 25 features: [numeric-separator-literal] 26 ---*/ 27 28 assert.sameValue(Number("1_1"), NaN, "1_1"); 29 30 reportCompare(0, 0);