string-numeric-separator-literal-oil-ods-nsl-od.js (770B)
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 `0o` | `0O` OctalDigits NumericLiteralSeparator OctalDigit 9 10 NumericLiteralSeparator :: 11 _ 12 13 OctalIntegerLiteral :: 14 0o OctalDigits 15 0O OctalDigits 16 17 OctalDigits :: 18 OctalDigit 19 OctalDigits OctalDigit 20 OctalDigits NumericLiteralSeparator OctalDigit 21 22 OctalDigit :: one of 23 0 1 2 3 4 5 6 7 24 25 features: [numeric-separator-literal] 26 ---*/ 27 28 assert.sameValue(Number("0o01_0"), NaN, "0o01_0"); 29 assert.sameValue(Number("0O01_0"), NaN, "0O01_0"); 30 31 reportCompare(0, 0);