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

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

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add deprecation comment for ExpectException and revert one test. Created 7 years, 8 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 import "package:expect/expect.dart";
6
5 // Dart test program to test type-based optimization on fields. 7 // Dart test program to test type-based optimization on fields.
6 8
7 9
8 class A { 10 class A {
9 var x; 11 var x;
10 A() : x = new B(); 12 A() : x = new B();
11 foo() { 13 foo() {
12 x++; 14 x++;
13 } 15 }
14 } 16 }
15 17
16 class B { 18 class B {
17 operator +(other) => 498; 19 operator +(other) => 498;
18 } 20 }
19 main() { 21 main() {
20 var a = new A(); 22 var a = new A();
21 a.foo(); 23 a.foo();
22 a.foo(); 24 a.foo();
23 Expect.equals(499, a.x); 25 Expect.equals(499, a.x);
24 } 26 }
OLDNEW
« no previous file with comments | « tests/language/field_initialization_order_test.dart ('k') | tests/language/field_optimization3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698