OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 // Dart core library. | 4 // Dart core library. |
5 | 5 |
6 // VM implementation of double. | 6 // VM implementation of double. |
7 | 7 |
8 patch class double { | 8 patch class double { |
9 /* patch */ | 9 static double _parse(String string) native "Double_parse"; |
10 static double parse(String string) native "Double_parse"; | 10 |
| 11 /* patch */ static double parse(String str, |
| 12 [double handleError(String str)]) { |
| 13 if (handleError == null) return _parse(str); |
| 14 try { |
| 15 return _parse(str); |
| 16 } on FormatException { |
| 17 return handleError(str); |
| 18 } |
| 19 } |
11 } | 20 } |
OLD | NEW |