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

Side by Side Diff: tests/compiler/dart2js/inference/data/list.dart

Issue 3009633002: Add tests for list and async marker (Closed)
Patch Set: Created 3 years, 3 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
« no previous file with comments | « tests/compiler/dart2js/inference/data/async_marker.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
(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];
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/inference/data/async_marker.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698