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

Side by Side Diff: tests/language/const_syntax_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/const_string_test.dart ('k') | tests/language/const_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 main() { 7 main() {
6 const f0 = 42; 8 const f0 = 42;
7 const f1; /// 01: compile-time error 9 const f1; /// 01: compile-time error
8 const int f2 = 87; 10 const int f2 = 87;
9 const int f3; /// 02: compile-time error 11 const int f3; /// 02: compile-time error
10 Expect.equals(42, f0); 12 Expect.equals(42, f0);
11 Expect.equals(87, f2); 13 Expect.equals(87, f2);
12 14
13 Expect.equals(42, F0); 15 Expect.equals(42, F0);
14 Expect.equals(null, F1); /// 03: compile-time error 16 Expect.equals(null, F1); /// 03: compile-time error
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 : x = C0.X /// 09: continued 68 : x = C0.X /// 09: continued
67 ; 69 ;
68 final x = null; 70 final x = null;
69 } 71 }
70 72
71 // Check that sub-expressions of binary + are numeric. 73 // Check that sub-expressions of binary + are numeric.
72 const B0 = 42; 74 const B0 = 42;
73 const B1 = "Hello"; 75 const B1 = "Hello";
74 const B2 = "$B1 $B0"; 76 const B2 = "$B1 $B0";
75 const B3 = B0 + B1; /// 10: continued 77 const B3 = B0 + B1; /// 10: continued
OLDNEW
« no previous file with comments | « tests/language/const_string_test.dart ('k') | tests/language/const_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698