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

Unified Diff: utils/pub/git_source.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/git.dart ('k') | utils/pub/hosted_source.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/git_source.dart
diff --git a/utils/pub/git_source.dart b/utils/pub/git_source.dart
index 27ff5af776fd2ac598f6f0ac17814272294c0899..3530de629f917f9091a41409cca2e9ebdb53e336 100644
--- a/utils/pub/git_source.dart
+++ b/utils/pub/git_source.dart
@@ -2,14 +2,14 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-#library('git_source');
-
-#import('git.dart', prefix: 'git');
-#import('io.dart');
-#import('package.dart');
-#import('source.dart');
-#import('source_registry.dart');
-#import('utils.dart');
+library git_source;
+
+import 'git.dart' as git;
+import 'io.dart';
+import 'package.dart';
+import 'source.dart';
+import 'source_registry.dart';
+import 'utils.dart';
/**
* A package source that installs packages from Git repos.
« no previous file with comments | « utils/pub/git.dart ('k') | utils/pub/hosted_source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698