| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 /*main:[null]*/ |
| 6 main() { |
| 7 emptyList(); |
| 8 nullList(); |
| 9 constList(); |
| 10 constNullList(); |
| 11 } |
| 12 |
| 13 /*emptyList:Container mask: [empty] length: 0 type: [exact=JSExtendableArray]*/ |
| 14 emptyList() => []; |
| 15 |
| 16 /*constList:Container mask: [empty] length: 0 type: [exact=JSUnmodifiableArray]*
/ |
| 17 constList() => const []; |
| 18 |
| 19 /*nullList:Container mask: [null] length: 1 type: [exact=JSExtendableArray]*/ |
| 20 nullList() => [null]; |
| 21 |
| 22 /*constNullList:Container mask: [null] length: 1 type: [exact=JSUnmodifiableArra
y]*/ |
| 23 constNullList() => const [null]; |
| OLD | NEW |