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

Unified Diff: utils/pub/version.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/utils.dart ('k') | utils/pub/version_solver.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/version.dart
diff --git a/utils/pub/version.dart b/utils/pub/version.dart
index 5d82293bbfbee622ff262f28c292baee5eecbb2f..82bc015174563c823f7a6003e4ebe5944eb289ee 100644
--- a/utils/pub/version.dart
+++ b/utils/pub/version.dart
@@ -7,11 +7,11 @@
*
* [semver]: http://semver.org/
*/
-#library('version');
+library version;
-#import('dart:math');
+import 'dart:math';
-#import('utils.dart');
+import 'utils.dart';
/** A parsed semantic version number. */
class Version implements Comparable, VersionConstraint {
« no previous file with comments | « utils/pub/utils.dart ('k') | utils/pub/version_solver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698