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

Side by Side Diff: observatory_pub_packages/analyzer/src/generated/java_engine_io.dart

Issue 816693004: Add observatory_pub_packages snapshot to third_party (Closed) Base URL: http://dart.googlecode.com/svn/third_party/
Patch Set: Created 6 years 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.io;
2
3 import "dart:io";
4 import "java_io.dart";
5
6
7 class OSUtilities {
8 static String LINE_SEPARATOR = isWindows() ? '\r\n' : '\n';
9 static bool isWindows() => Platform.operatingSystem == 'windows';
10 static bool isMac() => Platform.operatingSystem == 'macos';
11 }
12
13 class FileUtilities2 {
14 static JavaFile createFile(String path) {
15 return new JavaFile(path).getAbsoluteFile();
16 }
17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698