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

Unified Diff: test/codegen/language/field_super_access2_test.dart

Issue 1895903002: emit 'this.x' when 'super.x' accesses a field (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 8 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 | « test/codegen/expect/language-all.js ('k') | test/codegen/language/field_super_access_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/language/field_super_access2_test.dart
diff --git a/test/codegen/language/field_super_access2_test.dart b/test/codegen/language/field_super_access2_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e7e1c96d1d77700fc377270464767d4943600a2a
--- /dev/null
+++ b/test/codegen/language/field_super_access2_test.dart
@@ -0,0 +1,22 @@
+// Copyright (c) 2016, 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.
+
+// Tests that a super call to access a field in a super class is just a normal
+// field access.
+
+import "package:expect/expect.dart";
+
+class A {
+ final int y = 42;
+}
+
+class B extends A {
+ int get x => super.y;
+ void set x(val) {}
+}
+
+void main() {
+ var b = new B();
+ Expect.equals(42, b.x);
+}
« no previous file with comments | « test/codegen/expect/language-all.js ('k') | test/codegen/language/field_super_access_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698