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

Unified Diff: utils/pub/utils.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/system_cache.dart ('k') | utils/pub/version.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/utils.dart
diff --git a/utils/pub/utils.dart b/utils/pub/utils.dart
index 4f64d875e8e772cb9111af1172b00eff04d113c9..4dbc589a11e3c5fe08e775cb26d2c39802504334 100644
--- a/utils/pub/utils.dart
+++ b/utils/pub/utils.dart
@@ -5,10 +5,10 @@
/**
* Generic utility functions. Stuff that should possibly be in core.
*/
-#library('utils');
+library utils;
-#import('dart:crypto');
-#import('dart:isolate');
+import 'dart:crypto';
+import 'dart:isolate';
/** A pair of values. */
class Pair<E, F> {
« no previous file with comments | « utils/pub/system_cache.dart ('k') | utils/pub/version.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698