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

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

Issue 1948563002: allow 'super' in async and finally blocks (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 7 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/language/super_in_async6_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/language/super_in_finally_test.dart
diff --git a/test/codegen/language/field_super_access2_test.dart b/test/codegen/language/super_in_finally_test.dart
similarity index 56%
copy from test/codegen/language/field_super_access2_test.dart
copy to test/codegen/language/super_in_finally_test.dart
index e7e1c96d1d77700fc377270464767d4943600a2a..0e8286267ecbc489d467e46e701f199a4dacb1cd 100644
--- a/test/codegen/language/field_super_access2_test.dart
+++ b/test/codegen/language/super_in_finally_test.dart
@@ -2,21 +2,24 @@
// 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;
+ /*<T>*/ foo/*<T>*/({/*=T*/ x}) => x;
}
class B extends A {
- int get x => super.y;
- void set x(val) {}
+ int bar() {
+ try {
+ throw 'bar';
+ return 1;
+ } finally {
+ var x = super.foo(x: 41);
+ return x + 1;
+ }
+ }
}
-void main() {
- var b = new B();
- Expect.equals(42, b.x);
+main() {
+ Expect.equals(42, new B().bar());
}
« no previous file with comments | « test/codegen/language/super_in_async6_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698