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

Unified Diff: test/codegen/extensions.dart

Issue 1492523004: Fixes #378 (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Use virtual fields for extension fields Created 5 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 | « test/codegen/expect/extensions.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/extensions.dart
diff --git a/test/codegen/language/issue_23914_test.dart b/test/codegen/extensions.dart
similarity index 65%
copy from test/codegen/language/issue_23914_test.dart
copy to test/codegen/extensions.dart
index 072f912b74cff3b0bbde89667b3ba30ea84ac71d..d31cf91ebb40db511abf732d14badecd9f256fe7 100644
--- a/test/codegen/language/issue_23914_test.dart
+++ b/test/codegen/extensions.dart
@@ -4,6 +4,8 @@
import 'dart:collection';
-main() {
- var a = new List.unmodifiable(new LinkedList());
+class StringIterable extends IterableBase<String> {
+ final Iterator<String> iterator = null;
}
+
+main() => new StringIterable();
« no previous file with comments | « test/codegen/expect/extensions.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698