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

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
(Empty)
1 library java.engine;
2
3 class StringUtilities {
4 static List<String> EMPTY_ARRAY = new List(0);
5 }
6
7 class FileNameUtilities {
8 static String getExtension(String fileName) {
9 if (fileName == null) {
10 return "";
11 }
12 int index = fileName.lastIndexOf('.');
13 if (index >= 0) {
14 return fileName.substring(index + 1);
15 }
16 return "";
17 }
18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698