Chromium Code Reviews| Index: tests/corelib_strong/int_parse_radix_test.dart |
| diff --git a/tests/corelib_strong/int_parse_radix_test.dart b/tests/corelib_strong/int_parse_radix_test.dart |
| index 59ae833b90ed8b866b406b67847e724e15308c49..49e3c2462221c05b182b7de3c973430567413552 100644 |
| --- a/tests/corelib_strong/int_parse_radix_test.dart |
| +++ b/tests/corelib_strong/int_parse_radix_test.dart |
| @@ -9,7 +9,7 @@ void main() { |
| bool checkedMode = false; |
| assert((checkedMode = true)); |
| const String oneByteWhiteSpace = "\x09\x0a\x0b\x0c\x0d\x20" |
| - "\x85" /// 01: ok |
| + "\x85" // /// 01: ok |
| "\xa0"; |
| const String whiteSpace = "$oneByteWhiteSpace\u1680" |
| "\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a" |
| @@ -61,12 +61,12 @@ void main() { |
| } |
| } |
| - for (int i = 2; i <= 36; i++) { /// 02: ok |
| - // Test with bignums. /// 02: continued |
| - var digit = digits[i - 1]; /// 02: continued |
| + for (int i = 2; i <= 36; i++) { // /// 02: ok |
| + // Test with bignums. // /// 02: continued |
| + var digit = digits[i - 1]; // /// 02: continued |
| testParse(pow(i, 64) - 1, digit * 64, i); /// 02: continued |
|
sra1
2017/03/21 01:43:47
//
Jacob
2017/03/21 02:25:35
Done.
|
| - testParse(0, zeros, i); /// 02: continued |
| - } /// 02: continued |
| + testParse(0, zeros, i); // /// 02: continued |
| + } // /// 02: continued |
| // Allow both upper- and lower-case letters. |
| Expect.equals(0xABCD, int.parse("ABCD", radix: 16)); |
| @@ -74,8 +74,8 @@ void main() { |
| Expect.equals(15628859, int.parse("09azAZ", radix: 36)); |
| // Big number. |
| Expect.equals(0x12345678123456781234567812345678, /// 02: continued |
|
sra1
2017/03/21 01:43:47
//
Jacob
2017/03/21 02:25:35
Done.
|
| - int.parse("0x1234567812345678" /// 02: continued |
| - "1234567812345678")); /// 02: continued |
| + int.parse("0x1234567812345678" // /// 02: continued |
| + "1234567812345678")); // /// 02: continued |
| // Allow whitespace before and after the number. |
| Expect.equals(1, int.parse(" 1", radix: 2)); |
| Expect.equals(1, int.parse("1 ", radix: 2)); |