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

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

Issue 1910233002: fixes #516, nested cascade code generation (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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/language/cascade_nested_test.dart
diff --git a/test/codegen/language/field_super_access_test.dart b/test/codegen/language/cascade_nested_test.dart
similarity index 51%
copy from test/codegen/language/field_super_access_test.dart
copy to test/codegen/language/cascade_nested_test.dart
index 63a958670315aeee0c560ff278f9d3814a8862ad..29a82e729e7770eb73fb5df91ae6cad4a2ec8ba3 100644
--- a/test/codegen/language/field_super_access_test.dart
+++ b/test/codegen/language/cascade_nested_test.dart
@@ -2,22 +2,23 @@
// 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 {
- int y;
+class Foo {
+ int x;
}
-class B extends A {
- int get x => super.y;
- void set x(val) { super.y = val; }
+class Bar {
+ Foo foo;
+ int y;
}
-void main() {
- var b = new B();
- b.x = 42;
- Expect.equals(42, b.x);
+main() {
+ var bar = new Bar()
+ ..foo = (new Foo()..x = 42)
+ ..y = 38;
+ Expect.isTrue(bar is Bar);
+ Expect.isTrue(bar.foo is Foo);
+ Expect.equals(bar.foo.x, 42);
+ Expect.equals(bar.y, 38);
}
« no previous file with comments | « test/codegen/expect/language-all.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698