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

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

Issue 2987793002: Migrate test block 7 to Dart 2.0. (Closed)
Patch Set: Final review comment, dropping static multitest Created 3 years, 4 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
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 class A { 7 class A {
8 get foo => cyclicStatic; 8 get foo => cyclicStatic;
9 } 9 }
10 10
11 var a = new A(); 11 var a = new A();
12 dynamic cyclicStatic = (() => a.foo + 1)(); 12 dynamic cyclicStatic = (() => a.foo + 1)();
13 13
14 cyclicInitialization() { 14 cyclicInitialization() {
15 return cyclicStatic; 15 return cyclicStatic;
16 } 16 }
17 17
18 main() { 18 main() {
19 bool hasThrown = false; 19 bool hasThrown = false;
20 try { 20 try {
21 cyclicStatic + 1; 21 cyclicStatic + 1;
22 } catch (e2) { 22 } catch (e2) {
23 var e = e2; 23 var e = e2;
24 hasThrown = true; 24 hasThrown = true;
25 Expect.isTrue( 25 Expect.isTrue(
26 e.stackTrace is StackTrace, "$e doesn't have a non-null stack trace"); 26 e.stackTrace is StackTrace, "$e doesn't have a non-null stack trace");
27 } 27 }
28 Expect.isTrue(hasThrown); 28 Expect.isTrue(hasThrown);
29 } 29 }
OLDNEW
« no previous file with comments | « tests/corelib_2/error_stack_trace1_test.dart ('k') | tests/corelib_2/error_stack_trace_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698