| 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 "core.dart"; | 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 |
| 11 * implemented as JavaScript numbers. When compiling to JavaScript, | 11 * implemented as JavaScript numbers. When compiling to JavaScript, |
| 12 * integers are therefore restricted to 53 significant bits because | 12 * integers are therefore restricted to 53 significant bits because |
| 13 * all JavaScript numbers are double-precision floating point | 13 * all JavaScript numbers are double-precision floating point |
| 14 * values. The behavior of the operators and methods in the [int] | 14 * values. The behavior of the operators and methods in the [int] |
| 15 * class therefore sometimes differs between the Dart VM and Dart code | 15 * class therefore sometimes differs between the Dart VM and Dart code |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 * | 316 * |
| 317 * var value = int.parse(text, onError: (source) => null); | 317 * var value = int.parse(text, onError: (source) => null); |
| 318 * if (value == null) ... handle the problem | 318 * if (value == null) ... handle the problem |
| 319 * | 319 * |
| 320 * The [onError] function is only invoked if [source] is a [String]. It is | 320 * The [onError] function is only invoked if [source] is a [String]. It is |
| 321 * not invoked if the [source] is, for example, `null`. | 321 * not invoked if the [source] is, for example, `null`. |
| 322 */ | 322 */ |
| 323 external static int parse(String source, | 323 external static int parse(String source, |
| 324 {int radix, int onError(String source)}); | 324 {int radix, int onError(String source)}); |
| 325 } | 325 } |
| OLD | NEW |