Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Side by Side Diff: pkg/analyzer/lib/src/generated/java_core.dart

Issue 1513643009: Clean up package imports and library names (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/interner.dart ('k') | pkg/analyzer/lib/src/generated/java_engine.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698