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

Side by Side Diff: tests/language/static_inline_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 // Test inlining of assignments in parameter passing. If [StringScanner.charAt] 7 // Test inlining of assignments in parameter passing. If [StringScanner.charAt]
6 // is inlined, the argument expresion [: ++byteOffset :] should not be 8 // is inlined, the argument expresion [: ++byteOffset :] should not be
7 // duplicated. 9 // duplicated.
8 10
9 class StringScanner { 11 class StringScanner {
10 static String string; 12 static String string;
11 int byteOffset = -1; 13 int byteOffset = -1;
12 14
13 int nextByte(foo) { 15 int nextByte(foo) {
14 if (foo) return -2; 16 if (foo) return -2;
15 return charAt(++byteOffset); 17 return charAt(++byteOffset);
16 } 18 }
17 19
18 static int charAt(index) 20 static int charAt(index)
19 => (string.length > index) ? string.codeUnitAt(index) : -1; 21 => (string.length > index) ? string.codeUnitAt(index) : -1;
20 } 22 }
21 23
22 void main() { 24 void main() {
23 var scanner = new StringScanner(); 25 var scanner = new StringScanner();
24 StringScanner.string = 'az9'; 26 StringScanner.string = 'az9';
25 Expect.equals(0x61, scanner.nextByte(false)); // Expect a. 27 Expect.equals(0x61, scanner.nextByte(false)); // Expect a.
26 Expect.equals(0x7A, scanner.nextByte(false)); // Expect z. 28 Expect.equals(0x7A, scanner.nextByte(false)); // Expect z.
27 Expect.equals(0x39, scanner.nextByte(false)); // Expect 9. 29 Expect.equals(0x39, scanner.nextByte(false)); // Expect 9.
28 Expect.equals(-1, scanner.nextByte(false)); 30 Expect.equals(-1, scanner.nextByte(false));
29 } 31 }
OLDNEW
« no previous file with comments | « tests/language/static_initializer_type_error_test.dart ('k') | tests/language/static_postfix_operator_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698