Chromium Code Reviews| 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 | 4 |
| 5 part of dart.core; | 5 part of dart.core; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * An arbitrarily large integer. | 8 * An arbitrarily large integer. |
| 9 * | 9 * |
| 10 * **Note:** When compiling to JavaScript, integers are | 10 * **Note:** When compiling to JavaScript, integers are |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 270 * optionally prefixed with a minus or plus sign ('-' or '+'). | 270 * optionally prefixed with a minus or plus sign ('-' or '+'). |
| 271 * | 271 * |
| 272 * It must always be the case for an int [:n:] and radix [:r:] that | 272 * It must always be the case for an int [:n:] and radix [:r:] that |
| 273 * [:n == int.parse(n.toRadixString(r), radix: r):]. | 273 * [:n == int.parse(n.toRadixString(r), radix: r):]. |
| 274 * | 274 * |
| 275 * If the [source] is not a valid integer literal, optionally prefixed by a | 275 * If the [source] is not a valid integer literal, optionally prefixed by a |
| 276 * sign, the [onError] is called with the [source] as argument, and its return | 276 * sign, the [onError] is called with the [source] as argument, and its return |
| 277 * value is used instead. If no [onError] is provided, a [FormatException] | 277 * value is used instead. If no [onError] is provided, a [FormatException] |
| 278 * is thrown. | 278 * is thrown. |
| 279 * | 279 * |
| 280 * The [onError] handler may return `null`. This is preferable to catching | |
|
Lasse Reichstein Nielsen
2015/03/06 13:06:52
The [onError] handler can be chosen to return `nul
sra1
2015/03/06 21:38:39
Done.
| |
| 281 * the [FormatException], for example: | |
| 282 * | |
| 283 * var value = int.parse(text, onError: (source) => null); | |
| 284 * if (value == null) ... handle the | |
| 285 * | |
| 280 * The [onError] function is only invoked if [source] is a [String]. It is | 286 * The [onError] function is only invoked if [source] is a [String]. It is |
| 281 * not invoked if the [source] is, for example, `null`. | 287 * not invoked if the [source] is, for example, `null`. |
| 282 */ | 288 */ |
| 283 external static int parse(String source, | 289 external static int parse(String source, |
| 284 { int radix, | 290 { int radix, |
| 285 int onError(String source) }); | 291 int onError(String source) }); |
| 286 } | 292 } |
| OLD | NEW |