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

Unified Diff: tests/language/super_operator_index_test.dart

Issue 12334088: Stop creating selectors in the SSA builder that were already created by the resolver. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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
« no previous file with comments | « tests/language/super_operator_index2_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/super_operator_index_test.dart
===================================================================
--- tests/language/super_operator_index_test.dart (revision 0)
+++ tests/language/super_operator_index_test.dart (revision 0)
@@ -0,0 +1,43 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// 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.
+
+// Test that we emit warnings for unresolved indexing operations on super.
+
+class A {
+ operator[]=(a, b) {}
+}
+
+class B extends A {
+ foo() {
+ super[4] = 42;
+ super[4] += 5; /// 01: static type warning, runtime error
+ return super[2]; /// 02: static type warning, runtime error
+ }
+}
+
+class C {
+ operator[](a) {}
+}
+
+class D extends C {
+ foo() {
+ super[4] = 42; /// 03: static type warning, runtime error
+ super[4] += 5; /// 04: static type warning, runtime error
+ return super[2];
+ }
+}
+
+class E {
+ foo() {
+ super[4] = 42; /// 05: static type warning, runtime error
+ super[4] += 5; /// 06: static type warning, runtime error
+ return super[2]; /// 07: static type warning, runtime error
+ }
+}
+
+main() {
+ new B().foo();
+ new D().foo();
+ new E().foo();
+}
« no previous file with comments | « tests/language/super_operator_index2_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698