OLD | NEW |
1 library java.core; | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 library analyzer.src.generated.java_core; |
2 | 6 |
3 const int LONG_MAX_VALUE = 0x7fffffffffffffff; | 7 const int LONG_MAX_VALUE = 0x7fffffffffffffff; |
4 | 8 |
5 final Stopwatch nanoTimeStopwatch = new Stopwatch(); | 9 final Stopwatch nanoTimeStopwatch = new Stopwatch(); |
6 | 10 |
7 /** | 11 /** |
8 * Inserts the given arguments into [pattern]. | 12 * Inserts the given arguments into [pattern]. |
9 * | 13 * |
10 * format('Hello, {0}!', 'John') = 'Hello, John!' | 14 * format('Hello, {0}!', 'John') = 'Hello, John!' |
11 * format('{0} are you {1}ing?', 'How', 'do') = 'How are you doing?' | 15 * format('{0} are you {1}ing?', 'How', 'do') = 'How are you doing?' |
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 | 441 |
438 class UnsupportedOperationException extends JavaException { | 442 class UnsupportedOperationException extends JavaException { |
439 UnsupportedOperationException([message = ""]) : super(message); | 443 UnsupportedOperationException([message = ""]) : super(message); |
440 } | 444 } |
441 | 445 |
442 class URISyntaxException implements Exception { | 446 class URISyntaxException implements Exception { |
443 final String message; | 447 final String message; |
444 URISyntaxException(this.message); | 448 URISyntaxException(this.message); |
445 String toString() => "URISyntaxException: $message"; | 449 String toString() => "URISyntaxException: $message"; |
446 } | 450 } |
OLD | NEW |