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

Unified Diff: utils/pub/lock_file.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/io.dart ('k') | utils/pub/package.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/lock_file.dart
diff --git a/utils/pub/lock_file.dart b/utils/pub/lock_file.dart
index 8e7042330731cdf8cdfb6b3953a4af83112c39f7..d87ff08f0b6ec80c6002274910773c2025050beb 100644
--- a/utils/pub/lock_file.dart
+++ b/utils/pub/lock_file.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('lock_file');
-
-#import('dart:json');
-#import('package.dart');
-#import('source_registry.dart');
-#import('utils.dart');
-#import('version.dart');
-#import('yaml/yaml.dart');
+library lock_file;
+
+import 'dart:json';
+import 'package.dart';
+import 'source_registry.dart';
+import 'utils.dart';
+import 'version.dart';
+import 'yaml/yaml.dart';
/**
* A parsed and validated `pubspec.lock` file.
« no previous file with comments | « utils/pub/io.dart ('k') | utils/pub/package.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698