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

Unified Diff: tests/compiler/dart2js_extra/4740_int_library.dart

Issue 10947024: Made dart2js constructor lookup logic "private"-aware, fixed 4740 bug. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed indentation. Created 8 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: tests/compiler/dart2js_extra/4740_int_library.dart
diff --git a/tests/compiler/dart2js_extra/regress/4740_library.dart b/tests/compiler/dart2js_extra/4740_int_library.dart
similarity index 64%
copy from tests/compiler/dart2js_extra/regress/4740_library.dart
copy to tests/compiler/dart2js_extra/4740_int_library.dart
index fd51e977bfed4d5d1d682e46da3b72af4e5056a3..17b506df4682558849df4efca19998b121d8b0fc 100644
--- a/tests/compiler/dart2js_extra/regress/4740_library.dart
+++ b/tests/compiler/dart2js_extra/4740_int_library.dart
@@ -2,8 +2,12 @@
// 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('4740_library');
+#library('4740_int_library');
-class Foo {
+class Foo implements FooInterface {
Foo._internal();
}
+
+interface FooInterface default Foo {
+ FooInterface._internal();
+}

Powered by Google App Engine
This is Rietveld 408576698