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

Unified Diff: utils/tests/pub/test_pub.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/tests/pub/pubspec_test.dart ('k') | utils/tests/pub/update/git/do_not_update_if_unneeded_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/pub/test_pub.dart
diff --git a/utils/tests/pub/test_pub.dart b/utils/tests/pub/test_pub.dart
index 1b18f48995f630f00b8e2095d0d9a119dbb65856..48620b97c49ab3efce210517b30fd7fe815bc6ff 100644
--- a/utils/tests/pub/test_pub.dart
+++ b/utils/tests/pub/test_pub.dart
@@ -8,22 +8,22 @@
* pub, and then validate the results. This library provides an API to build
* tests like that.
*/
-#library('test_pub');
-
-#import('dart:io');
-#import('dart:isolate');
-#import('dart:json');
-#import('dart:math');
-#import('dart:uri');
-
-#import('../../../pkg/unittest/unittest.dart');
-#import('../../lib/file_system.dart', prefix: 'fs');
-#import('../../pub/git_source.dart');
-#import('../../pub/hosted_source.dart');
-#import('../../pub/io.dart');
-#import('../../pub/sdk_source.dart');
-#import('../../pub/utils.dart');
-#import('../../pub/yaml/yaml.dart');
+library test_pub;
+
+import 'dart:io';
+import 'dart:isolate';
+import 'dart:json';
+import 'dart:math';
+import 'dart:uri';
+
+import '../../../pkg/unittest/unittest.dart';
+import '../../lib/file_system.dart' as fs;
+import '../../pub/git_source.dart';
+import '../../pub/hosted_source.dart';
+import '../../pub/io.dart';
+import '../../pub/sdk_source.dart';
+import '../../pub/utils.dart';
+import '../../pub/yaml/yaml.dart';
/**
* Creates a new [FileDescriptor] with [name] and [contents].
« no previous file with comments | « utils/tests/pub/pubspec_test.dart ('k') | utils/tests/pub/update/git/do_not_update_if_unneeded_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698