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

Side by Side Diff: tests/language/static_postfix_operator_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
« no previous file with comments | « tests/language/static_inline_test.dart ('k') | tests/language/strict_equal_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
7 int a = 0; 5 int a = 0;
8 int b = 0; 6 int b = 0;
9 7
10 withTryFinally() { 8 withTryFinally() {
11 bool inIt = false; 9 bool inIt = false;
12 // Do a try/finally to potentially force a non-optimizing compiler. 10 // Do a try/finally to potentially force a non-optimizing compiler.
13 try { 11 try {
14 if (a++ == 0) { 12 if (a++ == 0) {
15 inIt = true; 13 inIt = true;
16 } 14 }
17 } finally { 15 } finally {
18 } 16 }
19 Expect.isTrue(inIt); 17 Expect.isTrue(inIt);
20 } 18 }
21 19
22 withoutTryFinally() { 20 withoutTryFinally() {
23 bool inIt = false; 21 bool inIt = false;
24 if (b++ == 0) { 22 if (b++ == 0) {
25 inIt = true; 23 inIt = true;
26 } 24 }
27 Expect.isTrue(inIt); 25 Expect.isTrue(inIt);
28 } 26 }
29 27
30 main() { 28 main() {
31 withTryFinally(); 29 withTryFinally();
32 withoutTryFinally(); 30 withoutTryFinally();
33 } 31 }
OLDNEW
« no previous file with comments | « tests/language/static_inline_test.dart ('k') | tests/language/strict_equal_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698