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

Side by Side Diff: tests/language/field_optimization_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
« no previous file with comments | « tests/language/field_optimization3_test.dart ('k') | tests/language/field_override2_test.dart » ('j') | 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) 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 = 0; 12 A() : x = 0;
11 foo() { 13 foo() {
12 x++; 14 x++;
13 } 15 }
14 toto() { 16 toto() {
15 x = 99; 17 x = 99;
16 } 18 }
17 bar(y) { 19 bar(y) {
18 x = y; 20 x = y;
19 } 21 }
20 } 22 }
21 23
22 class B { 24 class B {
23 operator +(other) => "ok"; 25 operator +(other) => "ok";
24 } 26 }
25 main() { 27 main() {
26 var a = new A(); 28 var a = new A();
27 a.foo(); 29 a.foo();
28 a.toto(); 30 a.toto();
29 a.bar("str"); 31 a.bar("str");
30 a.bar(new B()); 32 a.bar(new B());
31 a.foo(); 33 a.foo();
32 Expect.equals("ok", a.x); 34 Expect.equals("ok", a.x);
33 } 35 }
OLDNEW
« no previous file with comments | « tests/language/field_optimization3_test.dart ('k') | tests/language/field_override2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698