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

Side by Side Diff: tests/language/lazy_static3_test.dart

Issue 10909081: Fix tests and update status files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 final x = foo(); 5 final x = foo();
6 var x2 = foo2(); 6 var x2 = foo2();
7 var x3 = foo3(); 7 var x3 = foo3();
8 var x4 = foo4(); 8 var x4 = foo4();
9 var x5 = foo5(); 9 var x5 = foo5();
10 final x6 = foo6(); 10 final x6 = foo6();
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 Expect.equals(null, x3); 47 Expect.equals(null, x3);
48 48
49 Expect.equals(499, x4); 49 Expect.equals(499, x4);
50 50
51 Expect.equals(null, x5); 51 Expect.equals(null, x5);
52 52
53 Expect.equals(499, x6); 53 Expect.equals(499, x6);
54 54
55 Expect.throws(() => fib(x7), (e) => e is RuntimeError); 55 Expect.throws(() => fib(x7), (e) => e is RuntimeError);
56 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698