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

Unified Diff: tests/standalone/io/skipping_dart2js_compilations_helper.dart

Issue 11369216: Added support for skipping redundant dart2js compilations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | « no previous file | tests/standalone/io/skipping_dart2js_compilations_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/skipping_dart2js_compilations_helper.dart
diff --git a/tests/compiler/dart2js_extra/regress/4434_test.dart b/tests/standalone/io/skipping_dart2js_compilations_helper.dart
similarity index 65%
copy from tests/compiler/dart2js_extra/regress/4434_test.dart
copy to tests/standalone/io/skipping_dart2js_compilations_helper.dart
index 0f23991ee3f1d7ec5da12b50a40d1ebea6459e4b..1728e3a700d7c1317b1b151a5f70c1fa697a3e82 100644
--- a/tests/compiler/dart2js_extra/regress/4434_test.dart
+++ b/tests/standalone/io/skipping_dart2js_compilations_helper.dart
@@ -2,13 +2,10 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library lib_b;
-
-import '4434_lib.dart';
-
-class B extends A { }
+import 'dart:io';
main() {
- B b = new B();
- b.x(b);
+ var outputFile = new Options().arguments[0];
+ var file = new File(outputFile);
+ file.createSync();
}
« no previous file with comments | « no previous file | tests/standalone/io/skipping_dart2js_compilations_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698