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

Unified Diff: tests/compiler/dart2js/inference/data/list.dart

Issue 3007903002: Support annotations on assignment and postfix operations (Closed)
Patch Set: Updated cf. comments 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 side-by-side diff with in-line comments
Download patch
Index: tests/compiler/dart2js/inference/data/list.dart
diff --git a/tests/compiler/dart2js/inference/data/list.dart b/tests/compiler/dart2js/inference/data/list.dart
index ba2e6d3b839622db771b2d71344e2ccfdccf7a8a..1ab850bbadc61d0882d6593b80016376a3e78cb0 100644
--- a/tests/compiler/dart2js/inference/data/list.dart
+++ b/tests/compiler/dart2js/inference/data/list.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-/*main:[null]*/
+/*element: main:[null]*/
main() {
emptyList();
nullList();
@@ -10,14 +10,14 @@ main() {
constNullList();
}
-/*emptyList:Container mask: [empty] length: 0 type: [exact=JSExtendableArray]*/
+/*element: emptyList:Container mask: [empty] length: 0 type: [exact=JSExtendableArray]*/
emptyList() => [];
-/*constList:Container mask: [empty] length: 0 type: [exact=JSUnmodifiableArray]*/
+/*element: constList:Container mask: [empty] length: 0 type: [exact=JSUnmodifiableArray]*/
constList() => const [];
-/*nullList:Container mask: [null] length: 1 type: [exact=JSExtendableArray]*/
+/*element: nullList:Container mask: [null] length: 1 type: [exact=JSExtendableArray]*/
nullList() => [null];
-/*constNullList:Container mask: [null] length: 1 type: [exact=JSUnmodifiableArray]*/
+/*element: constNullList:Container mask: [null] length: 1 type: [exact=JSUnmodifiableArray]*/
constNullList() => const [null];
« no previous file with comments | « tests/compiler/dart2js/inference/data/async_marker.dart ('k') | tests/compiler/dart2js/inference/data/return.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698