OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 // Dart test program for testing execution of finally blocks after an exception | 4 // Dart test program for testing execution of finally blocks after an exception |
5 // is thrown from inside a local function capturing a variable. | 5 // is thrown from inside a local function capturing a variable. |
6 | 6 |
| 7 import "package:expect/expect.dart"; |
| 8 |
7 | 9 |
8 class MyException { | 10 class MyException { |
9 const MyException(String message) : message_ = message; | 11 const MyException(String message) : message_ = message; |
10 final String message_; | 12 final String message_; |
11 } | 13 } |
12 | 14 |
13 class Helper { | 15 class Helper { |
14 static int f1(int k) { | 16 static int f1(int k) { |
15 var b; | 17 var b; |
16 try { | 18 try { |
(...skipping 30 matching lines...) Expand all Loading... |
47 | 49 |
48 class ExecuteFinally7Test { | 50 class ExecuteFinally7Test { |
49 static testMain() { | 51 static testMain() { |
50 Expect.equals(1171, Helper.f1(1)); | 52 Expect.equals(1171, Helper.f1(1)); |
51 } | 53 } |
52 } | 54 } |
53 | 55 |
54 main() { | 56 main() { |
55 ExecuteFinally7Test.testMain(); | 57 ExecuteFinally7Test.testMain(); |
56 } | 58 } |
OLD | NEW |