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

Unified Diff: dart/tests/compiler/dart2js/missing_file_test.dart

Issue 23721012: Generate out.precompiled.js, not precompiled.js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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: dart/tests/compiler/dart2js/missing_file_test.dart
diff --git a/dart/tests/compiler/dart2js/missing_file_test.dart b/dart/tests/compiler/dart2js/missing_file_test.dart
index 3fc09f87611160e1a7edeb86168da5835087dbbe..c354d0fe4d749e1fcacd7956f5402ad7cb220299 100644
--- a/dart/tests/compiler/dart2js/missing_file_test.dart
+++ b/dart/tests/compiler/dart2js/missing_file_test.dart
@@ -48,9 +48,7 @@ void runCompiler(Uri main, String expectedMessage) {
EventSink<String> outputProvider(String name, String extension) {
- if (name != '' && name != 'precompiled') {
- throw 'Attempt to output file "$name.$extension"';
- }
+ if (name != '') throw 'Attempt to output file "$name.$extension"';
return new NullSink('$name.$extension');
}

Powered by Google App Engine
This is Rietveld 408576698