OLD | NEW |
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 {499: 400 + 99}; | 5 const m0 = const { |
| 6 499: 400 + 99 |
| 7 }; |
6 const m1 = const { | 8 const m1 = const { |
7 "foo" + "bar": 42 // //# 01: ok | 9 "foo" + "bar": 42 // //# 01: ok |
8 }; | 10 }; |
9 const m2 = const { | 11 const m2 = const { |
10 "foo" * 4: 42 // //# 02: compile-time error | 12 "foo" * 4: 42 // //# 02: compile-time error |
11 }; | 13 }; |
12 const m3 = const { | 14 const m3 = const { |
13 "foo".codeUnitAt(0): 42 // //# 03: compile-time error | 15 "foo".codeUnitAt(0): 42 // //# 03: compile-time error |
14 }; | 16 }; |
15 | 17 |
16 use(x) => x; | 18 use(x) => x; |
17 | 19 |
18 main() { | 20 main() { |
19 use(m0); | 21 use(m0); |
20 use(m1); | 22 use(m1); |
21 use(m2); | 23 use(m2); |
22 use(m3); | 24 use(m3); |
23 } | 25 } |
OLD | NEW |