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

Unified Diff: utils/pub/io.dart

Issue 11093012: Update pub to use new import syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update git.dart to new import syntax. Created 8 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
« no previous file with comments | « utils/pub/hosted_source.dart ('k') | utils/pub/lock_file.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/io.dart
diff --git a/utils/pub/io.dart b/utils/pub/io.dart
index b96ffcaf932ced0ea8669699b7e5dab83a7f3dca..bef2b2ae37e5f7d648c3203e3ad66e9c6cafec23 100644
--- a/utils/pub/io.dart
+++ b/utils/pub/io.dart
@@ -5,13 +5,13 @@
/**
* Helper functionality to make working with IO easier.
*/
-#library('io');
+library io;
-#import('dart:io');
-#import('dart:isolate');
-#import('dart:uri');
+import 'dart:io';
+import 'dart:isolate';
+import 'dart:uri';
-#import('utils.dart');
+import 'utils.dart';
bool _isGitInstalledCache;
« no previous file with comments | « utils/pub/hosted_source.dart ('k') | utils/pub/lock_file.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698