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

Unified Diff: tests/language/deferred_mixin_shared.dart

Issue 799553002: dart2js: fix mixin support in deferred libraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix does not work in CPS-mode, mark test as failing. Created 6 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 | « tests/language/deferred_mixin_lib2.dart ('k') | tests/language/deferred_mixin_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/deferred_mixin_shared.dart
diff --git a/tests/compiler/dart2js/http_launch_data/http_launch_main.dart b/tests/language/deferred_mixin_shared.dart
similarity index 77%
copy from tests/compiler/dart2js/http_launch_data/http_launch_main.dart
copy to tests/language/deferred_mixin_shared.dart
index 68ea63472f29d5b7d7d4de8a863c4d05cd7db0bd..2ad98328b258a3823c713b76183921448a86b10e 100644
--- a/tests/compiler/dart2js/http_launch_data/http_launch_main.dart
+++ b/tests/language/deferred_mixin_shared.dart
@@ -2,9 +2,8 @@
// 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 shared;
-import 'lib1.dart';
-
-main() {
- print(foo());
-}
+class SharedMixin {
+ foo() => "SharedMixin";
+}
« no previous file with comments | « tests/language/deferred_mixin_lib2.dart ('k') | tests/language/deferred_mixin_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698