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

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

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup Created 7 years, 7 months 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 | Annotate | Revision Log
OLDNEW
1 library java.core; 1 library java.core;
2 2
3 import "dart:math" as math; 3 import "dart:math" as math;
4 import "dart:uri";
5 import "dart:collection" show ListBase; 4 import "dart:collection" show ListBase;
6 5
7 class JavaSystem { 6 class JavaSystem {
8 static int currentTimeMillis() { 7 static int currentTimeMillis() {
9 return (new DateTime.now()).millisecondsSinceEpoch; 8 return (new DateTime.now()).millisecondsSinceEpoch;
10 } 9 }
11 10
12 static void arraycopy(List src, int srcPos, List dest, int destPos, int length ) { 11 static void arraycopy(List src, int srcPos, List dest, int destPos, int length ) {
13 for (int i = 0; i < length; i++) { 12 for (int i = 0; i < length; i++) {
14 dest[destPos + i] = src[srcPos + i]; 13 dest[destPos + i] = src[srcPos + i];
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 } 480 }
482 } else if (sb.length > newLength) { 481 } else if (sb.length > newLength) {
483 var s = sb.toString().substring(0, newLength); 482 var s = sb.toString().substring(0, newLength);
484 sb = new StringBuffer(s); 483 sb = new StringBuffer(s);
485 } 484 }
486 } 485 }
487 void clear() { 486 void clear() {
488 sb = new StringBuffer(); 487 sb = new StringBuffer();
489 } 488 }
490 } 489 }
OLDNEW
« no previous file with comments | « pkg/analyzer_experimental/lib/src/generated/engine.dart ('k') | pkg/analyzer_experimental/lib/src/generated/java_io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698