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

Unified Diff: utils/testrunner/testrunner.dart

Issue 11033042: Change imports etc to new syntax. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
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
« utils/testrunner/run_pipeline.dart ('K') | « utils/testrunner/run_pipeline.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/testrunner/testrunner.dart
===================================================================
--- utils/testrunner/testrunner.dart (revision 13269)
+++ utils/testrunner/testrunner.dart (working copy)
@@ -70,14 +70,14 @@
*/
// TODO - layout tests that use PNGs rather than DRT text render dumps.
-#library('testrunner');
-#import('dart:io');
-#import('dart:isolate');
-#import('dart:math');
-#import('../../pkg/args/lib/args.dart');
+library testrunner;
+import 'dart:io';
+import 'dart:isolate';
+import 'dart:math';
+import '../../pkg/args/lib/args.dart';
-#source('options.dart');
-#source('utils.dart');
+part 'options.dart';
+part 'utils.dart';
/** The set of [PipelineRunner]s to execute. */
List _tasks;
« utils/testrunner/run_pipeline.dart ('K') | « utils/testrunner/run_pipeline.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698