OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // Regression test for Issue 17141. | 5 // Regression test for Issue 17141. |
6 | 6 |
7 library test.metadata_nested_constructor_call; | 7 library test.metadata_nested_constructor_call; |
8 | 8 |
| 9 @MirrorsUsed(targets: "test.metadata_nested_constructor_call") |
9 import 'dart:mirrors'; | 10 import 'dart:mirrors'; |
10 import 'package:expect/expect.dart'; | 11 import 'package:expect/expect.dart'; |
11 | 12 |
12 class Box { | 13 class Box { |
13 final contents; | 14 final contents; |
14 const Box([this.contents]); | 15 const Box([this.contents]); |
15 } | 16 } |
16 | 17 |
17 class MutableBox { | 18 class MutableBox { |
18 var contents; | 19 var contents; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 reflectClass(E).metadata; | 75 reflectClass(E).metadata; |
75 reflectClass(F).metadata; | 76 reflectClass(F).metadata; |
76 reflectClass(G).metadata; | 77 reflectClass(G).metadata; |
77 reflectClass(H).metadata; | 78 reflectClass(H).metadata; |
78 reflectClass(I).metadata; | 79 reflectClass(I).metadata; |
79 reflectClass(J).metadata; | 80 reflectClass(J).metadata; |
80 reflectClass(K).metadata; | 81 reflectClass(K).metadata; |
81 reflectClass(L).metadata; | 82 reflectClass(L).metadata; |
82 reflectClass(M).metadata; | 83 reflectClass(M).metadata; |
83 } | 84 } |
OLD | NEW |