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

Side by Side Diff: tests/compiler/dart2js_extra/compile_time_constant4_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 const x = "foo"; 7 const x = "foo";
6 const y = "foo"; 8 const y = "foo";
7 const g1 = x 9 const g1 = x
8 + "bar" /// 01: compile-time error 10 + "bar" /// 01: compile-time error
9 ; 11 ;
10 const g2 = x 12 const g2 = x
11 + null /// 02: compile-time error 13 + null /// 02: compile-time error
12 ; 14 ;
13 const g3 = x 15 const g3 = x
14 + 499 /// 03: compile-time error 16 + 499 /// 03: compile-time error
(...skipping 22 matching lines...) Expand all
37 Expect.isTrue(g9); 39 Expect.isTrue(g9);
38 use(g1); 40 use(g1);
39 use(g2); 41 use(g2);
40 use(g3); 42 use(g3);
41 use(g4); 43 use(g4);
42 use(g5); 44 use(g5);
43 use(g6); 45 use(g6);
44 use(g7); 46 use(g7);
45 use(g8); 47 use(g8);
46 } 48 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js_extra/closure_test.dart ('k') | tests/compiler/dart2js_extra/compound_operator_index_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698