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

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