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

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

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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) 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 // dart2js regression test for issue 8781. 5 // dart2js regression test for issue 8781.
6 6
7 import "package:expect/expect.dart";
8
9 class N { 7 class N {
10 var outgoing; 8 var outgoing;
11 var incoming; 9 var incoming;
12 N(this.outgoing, this.incoming); 10 N(this.outgoing, this.incoming);
13 } 11 }
14 12
15 class A { 13 class A {
16 int offset = 0; 14 int offset = 0;
17 var list; 15 var list;
18 var node; 16 var node;
(...skipping 23 matching lines...) Expand all
42 } 40 }
43 41
44 main () { 42 main () {
45 var o = new A(new N(new L([1]), new L([2]))); 43 var o = new A(new N(new L([1]), new L([2])));
46 44
47 for (var i = 1; i <= 2; i++) 45 for (var i = 1; i <= 2; i++)
48 Expect.equals(i, o.next()); 46 Expect.equals(i, o.next());
49 47
50 Expect.equals(null, o.list); 48 Expect.equals(null, o.list);
51 } 49 }
OLDNEW
« no previous file with comments | « tests/language/field3a_negative_test.dart ('k') | tests/language/field_initialization_order_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698