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

Unified Diff: dart/pkg/unittest/unittest.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 | « dart/pkg/unittest/test_case.dart ('k') | dart/pkg/unittest/vm_config.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/pkg/unittest/unittest.dart
diff --git a/dart/pkg/unittest/unittest.dart b/dart/pkg/unittest/unittest.dart
index 77dd6fb2efb85bcfd2ccfc8e068077de0cfccfa3..29a18c893c3cfbdcf30db493a63af5c0197e71f9 100644
--- a/dart/pkg/unittest/unittest.dart
+++ b/dart/pkg/unittest/unittest.dart
@@ -134,24 +134,24 @@
* });
*
*/
-library unittest;
-
-import 'dart:isolate';
-
-part 'collection_matchers.dart';
-part 'config.dart';
-part 'core_matchers.dart';
-part 'description.dart';
-part 'expect.dart';
-part 'future_matchers.dart';
-part 'interfaces.dart';
-part 'map_matchers.dart';
-part 'matcher.dart';
-part 'mock.dart';
-part 'numeric_matchers.dart';
-part 'operator_matchers.dart';
-part 'string_matchers.dart';
-part 'test_case.dart';
+#library('unittest');
+
+#import('dart:isolate');
+
+#source('collection_matchers.dart');
+#source('config.dart');
+#source('core_matchers.dart');
+#source('description.dart');
+#source('expect.dart');
+#source('future_matchers.dart');
+#source('interfaces.dart');
+#source('map_matchers.dart');
+#source('matcher.dart');
+#source('mock.dart');
+#source('numeric_matchers.dart');
+#source('operator_matchers.dart');
+#source('string_matchers.dart');
+#source('test_case.dart');
/** [Configuration] used by the unittest library. */
Configuration _config = null;
« no previous file with comments | « dart/pkg/unittest/test_case.dart ('k') | dart/pkg/unittest/vm_config.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698