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

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

Issue 12838003: Rename analyzer-experimental to analyzer_experimental. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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.engine; 1 library java.engine;
2 2
3 class StringUtilities { 3 class StringUtilities {
4 static List<String> EMPTY_ARRAY = new List(0); 4 static List<String> EMPTY_ARRAY = new List(0);
5 } 5 }
6 6
7 class FileNameUtilities { 7 class FileNameUtilities {
8 static String getExtension(String fileName) { 8 static String getExtension(String fileName) {
9 if (fileName == null) { 9 if (fileName == null) {
10 return ""; 10 return "";
11 } 11 }
12 int index = fileName.lastIndexOf('.'); 12 int index = fileName.lastIndexOf('.');
13 if (index >= 0) { 13 if (index >= 0) {
14 return fileName.substring(index + 1); 14 return fileName.substring(index + 1);
15 } 15 }
16 return ""; 16 return "";
17 } 17 }
18 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698