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

Side by Side Diff: tests/corelib/error_stack_trace2_test.dart

Issue 18433003: Make cyclic error init more complicated to avoid static warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Better comment. Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 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 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 4
5 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 6
7 var cyclicStatic = cyclicStatic + 1; 7 class A {
8 get foo => cyclicStatic;
9 }
10
11 var a = new A();
12 var cyclicStatic = (() => a.foo + 1)();
8 13
9 cyclicInitialization() { 14 cyclicInitialization() {
10 return cyclicStatic; 15 return cyclicStatic;
11 } 16 }
12 17
13 main() { 18 main() {
14 bool hasThrown = false; 19 bool hasThrown = false;
15 try { 20 try {
16 cyclicStatic + 1; 21 cyclicStatic + 1;
17 } catch(e) { 22 } catch(e2) {
23 // Work around bug in analyzer that assigns "Object" type to caught error.
24 var e = e2;
18 hasThrown = true; 25 hasThrown = true;
19 Expect.isTrue(e.stackTrace is StackTrace, 26 Expect.isTrue(e.stackTrace is StackTrace,
20 "$e doesn't have a non-null stack trace"); 27 "$e doesn't have a non-null stack trace");
21 } 28 }
22 Expect.isTrue(hasThrown); 29 Expect.isTrue(hasThrown);
23 } 30 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698