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

Side by Side Diff: tests/language/inline_argument_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 // Test that when inlining A.foo, we're not evaluating the argument 4 // Test that when inlining A.foo, we're not evaluating the argument
5 // twice. 5 // twice.
6 6
7 import "package:expect/expect.dart";
8
7 class A { 9 class A {
8 var field = 0; 10 var field = 0;
9 11
10 foo(b) { 12 foo(b) {
11 Expect.equals(0, b); 13 Expect.equals(0, b);
12 Expect.equals(0, b); 14 Expect.equals(0, b);
13 } 15 }
14 16
15 bar() { 17 bar() {
16 foo(field++); 18 foo(field++);
17 } 19 }
18 } 20 }
19 21
20 main() { 22 main() {
21 var a = new A(); 23 var a = new A();
22 a.bar(); 24 a.bar();
23 Expect.equals(1, a.field); 25 Expect.equals(1, a.field);
24 } 26 }
OLDNEW
« no previous file with comments | « tests/language/infinity_test.dart ('k') | tests/language/inline_closure_with_constant_arguments_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698