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 program testing stack overflow. | 4 // Dart program testing stack overflow. |
5 | 5 |
6 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
7 | 7 |
8 class StackOverflowTest { | 8 class StackOverflowTest { |
9 | |
10 static void curseTheRecurse(a, b, c) { | 9 static void curseTheRecurse(a, b, c) { |
11 curseTheRecurse(b, c, a); | 10 curseTheRecurse(b, c, a); |
12 } | 11 } |
13 | 12 |
14 static void testMain() { | 13 static void testMain() { |
15 bool exceptionCaught = false; | 14 bool exceptionCaught = false; |
16 try { | 15 try { |
17 curseTheRecurse(1, 2, 3); | 16 curseTheRecurse(1, 2, 3); |
18 } on StackOverflowError catch (e) { | 17 } on StackOverflowError catch (e) { |
19 exceptionCaught = true; | 18 exceptionCaught = true; |
20 } | 19 } |
21 Expect.equals(true, exceptionCaught); | 20 Expect.equals(true, exceptionCaught); |
22 } | 21 } |
23 } | 22 } |
24 | 23 |
25 main() { | 24 main() { |
26 StackOverflowTest.testMain(); | 25 StackOverflowTest.testMain(); |
27 } | 26 } |
OLD | NEW |