| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 import "package:expect/expect.dart"; | |
| 6 | |
| 7 class A { | |
| 8 get foo => cyclicStatic; | |
| 9 } | |
| 10 | |
| 11 var a = new A(); | |
| 12 var cyclicStatic = (() => a.foo + 1)(); | |
| 13 | |
| 14 cyclicInitialization() { | |
| 15 return cyclicStatic; | |
| 16 } | |
| 17 | |
| 18 main() { | |
| 19 bool hasThrown = false; | |
| 20 try { | |
| 21 cyclicStatic + 1; | |
| 22 } catch (e2) { | |
| 23 var e = e2; | |
| 24 hasThrown = true; | |
| 25 Expect.isTrue( | |
| 26 e.stackTrace is StackTrace, "$e doesn't have a non-null stack trace"); | |
| 27 } | |
| 28 Expect.isTrue(hasThrown); | |
| 29 } | |
| OLD | NEW |