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

Unified Diff: dart/frog/leg/ssa/builder.dart

Issue 9453021: Start supporting fixed length and immutable lists. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Update co19-leg.status Created 8 years, 10 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: dart/frog/leg/ssa/builder.dart
diff --git a/dart/frog/leg/ssa/builder.dart b/dart/frog/leg/ssa/builder.dart
index d4b429f7cde76aceb76d7eedb2c8dfd1570584b1..7a470c2f9d45cc92d4a6c5d25c6cce9e109f331f 100644
--- a/dart/frog/leg/ssa/builder.dart
+++ b/dart/frog/leg/ssa/builder.dart
@@ -1946,7 +1946,7 @@ class SsaBuilder implements Visitor {
visit(link.head);
inputs.add(pop());
}
- push(new HLiteralList(inputs));
+ push(new HLiteralList(inputs, node.isConst()));
}
visitConditional(Conditional node) {

Powered by Google App Engine
This is Rietveld 408576698