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

Unified Diff: utils/pub/version_solver.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/version.dart ('k') | utils/tests/pub/install/git/check_out_and_update_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/version_solver.dart
diff --git a/utils/pub/version_solver.dart b/utils/pub/version_solver.dart
index 8af26aab4abc639a7c04d32ecefd65f73bbc425b..7efba4109479020e8d710ec410b06b79fac14278 100644
--- a/utils/pub/version_solver.dart
+++ b/utils/pub/version_solver.dart
@@ -35,18 +35,18 @@
* and then the change the package to use that version. That cycles back up to
* the beginning again.
*/
-#library('version_solver');
-
-#import('dart:json');
-#import('dart:math');
-#import('lock_file.dart');
-#import('package.dart');
-#import('pubspec.dart');
-#import('root_source.dart');
-#import('source.dart');
-#import('source_registry.dart');
-#import('utils.dart');
-#import('version.dart');
+library version_solver;
+
+import 'dart:json';
+import 'dart:math';
+import 'lock_file.dart';
+import 'package.dart';
+import 'pubspec.dart';
+import 'root_source.dart';
+import 'source.dart';
+import 'source_registry.dart';
+import 'utils.dart';
+import 'version.dart';
/**
* Attempts to select the best concrete versions for all of the transitive
« no previous file with comments | « utils/pub/version.dart ('k') | utils/tests/pub/install/git/check_out_and_update_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698