Chromium Code Reviews| Index: tests/corelib_strong/integer_to_string_test.dart |
| diff --git a/tests/corelib_strong/integer_to_string_test.dart b/tests/corelib_strong/integer_to_string_test.dart |
| index e6f94ed7b97374f6a7e5f50db4c60aef0d5f2a48..ad01a57a329ccbbbcce4ea32aa5af24199e54a47 100644 |
| --- a/tests/corelib_strong/integer_to_string_test.dart |
| +++ b/tests/corelib_strong/integer_to_string_test.dart |
| @@ -51,22 +51,22 @@ main() { |
| // ~2^53. |
| test(0x1fffffffffffff, "9007199254740991"); |
| test(0x20000000000000, "9007199254740992"); |
| - test(0x20000000000001, "9007199254740993"); /// 01: ok |
| + test(0x20000000000001, "9007199254740993"); // /// 01: ok |
| // ~2^62. |
| - test(0x3fffffffffffffff, "4611686018427387903"); /// 01: continued |
| - test(0x4000000000000000, "4611686018427387904"); /// 01: continued |
| - test(0x4000000000000001, "4611686018427387905"); /// 01: continued |
| + test(0x3fffffffffffffff, "4611686018427387903"); // /// 01: continued |
| + test(0x4000000000000000, "4611686018427387904"); // /// 01: continued |
| + test(0x4000000000000001, "4611686018427387905"); // /// 01: continued |
| // ~2^63. |
| - test(0x7fffffffffffffff, "9223372036854775807"); /// 01: continued |
| - test(0x8000000000000000, "9223372036854775808"); /// 01: continued |
| - test(0x8000000000000001, "9223372036854775809"); /// 01: continued |
| + test(0x7fffffffffffffff, "9223372036854775807"); // /// 01: continued |
| + test(0x8000000000000000, "9223372036854775808"); // /// 01: continued |
| + test(0x8000000000000001, "9223372036854775809"); // /// 01: continued |
| // ~2^64. |
| test(0xffffffffffffffff, "18446744073709551615"); /// 01: continued |
|
sra1
2017/03/21 01:43:47
//
Jacob
2017/03/21 02:25:35
Done.
|
| test(0x10000000000000000, "18446744073709551616"); /// 01: continued |
| test(0x10000000000000001, "18446744073709551617"); /// 01: continued |
| // Big bignum. |
| - test(123456789012345678901234567890, /// 01: continued |
| - "123456789012345678901234567890"); /// 01: continued |
| + test(123456789012345678901234567890, // /// 01: continued |
| + "123456789012345678901234567890"); // /// 01: continued |
| // Decimal special cases. |
| @@ -79,10 +79,10 @@ main() { |
| number *= 10; |
| } |
| // Fails to represent exactly in dart2js. |
| - for (int i = 15; i < 22; i++) { /// 01: continued |
| - test(number - 1, "9" * i); /// 01: continued |
| - test(number, "1" + "0" * i); /// 01: continued |
| - test(number + 1, "1" + "0" * (i - 1) + "1"); /// 01: continued |
| - number *= 10; /// 01: continued |
| - } /// 01: continued |
| + for (int i = 15; i < 22; i++) { // /// 01: continued |
| + test(number - 1, "9" * i); // /// 01: continued |
| + test(number, "1" + "0" * i); // /// 01: continued |
| + test(number + 1, "1" + "0" * (i - 1) + "1"); // /// 01: continued |
| + number *= 10; // /// 01: continued |
| + } // /// 01: continued |
| } |