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

Unified Diff: tools/testing/dart/test_suite.dart

Issue 11301046: Restructure pkg/unittest and pkg/webdriver to follow the pub conventions. (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
Index: tools/testing/dart/test_suite.dart
===================================================================
--- tools/testing/dart/test_suite.dart (revision 14313)
+++ tools/testing/dart/test_suite.dart (working copy)
@@ -980,7 +980,7 @@
const RegExp(r"^#import.*(dart:(dom|html)|html\.dart).*\)",
multiLine: true);
RegExp libraryDefinitionRegExp =
- const RegExp(r"^#library\(", multiLine: true);
+ const RegExp(r"^[#]?library[\( ]", multiLine: true);
RegExp sourceOrImportRegExp =
const RegExp(r"^#(source|import|resource)\(", multiLine: true);
Siggi Cherem (dart-lang) 2012/10/31 20:54:02 it is important to fix also the sourceOrImportRegE
gram 2012/11/01 21:23:19 Done that. I added a regexp too for part of so we

Powered by Google App Engine
This is Rietveld 408576698