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

Unified Diff: pkg/analyzer_experimental/lib/src/generated/java_engine.dart

Issue 45573002: Rename analyzer_experimental to analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks before publishing. Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer_experimental/lib/src/generated/java_engine.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/java_engine.dart b/pkg/analyzer_experimental/lib/src/generated/java_engine.dart
deleted file mode 100644
index 265e323754c2c42dd7ef7d23b5d101eb53f39851..0000000000000000000000000000000000000000
--- a/pkg/analyzer_experimental/lib/src/generated/java_engine.dart
+++ /dev/null
@@ -1,46 +0,0 @@
-library java.engine;
-
-class StringUtilities {
- static const String EMPTY = '';
- static const List<String> EMPTY_ARRAY = const <String> [];
- static String intern(String s) => s;
- static String substringBefore(String str, String separator) {
- if (str == null || str.isEmpty) {
- return str;
- }
- int pos = str.indexOf(separator);
- if (pos < 0) {
- return str;
- }
- return str.substring(0, pos);
- }
-}
-
-class FileNameUtilities {
- static String getExtension(String fileName) {
- if (fileName == null) {
- return "";
- }
- int index = fileName.lastIndexOf('.');
- if (index >= 0) {
- return fileName.substring(index + 1);
- }
- return "";
- }
-}
-
-class ArrayUtils {
- static List addAll(List target, List source) {
- List result = new List.from(target);
- result.addAll(source);
- return result;
- }
-}
-
-class UUID {
- static int __nextId = 0;
- final String id;
- UUID(this.id);
- String toString() => id;
- static UUID randomUUID() => new UUID((__nextId).toString());
-}

Powered by Google App Engine
This is Rietveld 408576698