| OLD | NEW |
| 1 library java.core; | 1 library java.core; |
| 2 | 2 |
| 3 import "dart:math" as math; | 3 import "dart:math" as math; |
| 4 | 4 |
| 5 class JavaSystem { | 5 class JavaSystem { |
| 6 static int currentTimeMillis() { | 6 static int currentTimeMillis() { |
| 7 return (new DateTime.now()).millisecondsSinceEpoch; | 7 return (new DateTime.now()).millisecondsSinceEpoch; |
| 8 } | 8 } |
| 9 | 9 |
| 10 static void arraycopy(List src, int srcPos, List dest, int destPos, int length
) { | 10 static void arraycopy(List src, int srcPos, List dest, int destPos, int length
) { |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 if (!_matches.moveNext()) { | 487 if (!_matches.moveNext()) { |
| 488 return false; | 488 return false; |
| 489 } | 489 } |
| 490 _match = _matches.current; | 490 _match = _matches.current; |
| 491 return true; | 491 return true; |
| 492 } | 492 } |
| 493 String group(int i) => _match[i]; | 493 String group(int i) => _match[i]; |
| 494 int start() => _match.start; | 494 int start() => _match.start; |
| 495 int end() => _match.end; | 495 int end() => _match.end; |
| 496 } | 496 } |
| OLD | NEW |