| Index: tests/corelib/double_parse_test.dart
|
| diff --git a/tests/corelib/double_parse_test.dart b/tests/corelib/double_parse_test.dart
|
| index 226a2573fa98adac3ce4b3462e9a33c1cd4e34a1..dc577097db328ebe01a07b0902d5612f52289a22 100644
|
| --- a/tests/corelib/double_parse_test.dart
|
| +++ b/tests/corelib/double_parse_test.dart
|
| @@ -270,6 +270,12 @@ void main() {
|
| testParse("0.49999999999999997219", 0.49999999999999994);
|
| testParse("0.49999999999999999", 0.5);
|
|
|
| + // Edge cases of algorithm (e+-22/23).
|
| + testParse("1e22", 1e22);
|
| + testParse("1e23", 1e23);
|
| + testParse("1e-22", 1e-22);
|
| + testParse("1e-23", 1e-23);
|
| +
|
| testParseWhitespace("1", 1.0);
|
| testParseWhitespace("1.0", 1.0);
|
| testParseWhitespace("1e1", 10.0);
|
|
|