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

Side by Side Diff: tests/language/compile_time_constant_c_test.dart

Issue 664283004: Revert "Constant fold charCodeAt via constant system" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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/compiler/dart2js/mock_libraries.dart ('k') | no next file » | 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 const m0 = const { 5 const m1 = const {
6 499: 400 + 99 6 499: 400 + 99
7 }; 7 };
8 const m1 = const {
9 "foo" + "bar": 42 /// 01: compile-time error
10 };
11 const m2 = const { 8 const m2 = const {
12 "foo" * 4: 42 /// 02: compile-time error 9 "foo" + "bar": 42 /// 01: compile-time error
13 };
14 const m3 = const {
15 "foo".codeUnitAt(0): 42 /// 03: compile-time error
16 }; 10 };
17 11
18 use(x) => x; 12 use(x) => x;
19 13
20 main() { 14 main() {
21 use(m0);
22 use(m1); 15 use(m1);
23 use(m2); 16 use(m2);
24 use(m3);
25 } 17 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/mock_libraries.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698