| Index: lib/compiler/implementation/ssa/nodes.dart
|
| diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
|
| index e9af73512cad2a2528079f3c8b46898e03c6e850..86d6849e23e7b214ab5e3b479f20427c3fd34223 100644
|
| --- a/lib/compiler/implementation/ssa/nodes.dart
|
| +++ b/lib/compiler/implementation/ssa/nodes.dart
|
| @@ -1999,12 +1999,11 @@ class HStaticStore extends HInstruction {
|
| }
|
|
|
| class HLiteralList extends HInstruction {
|
| - HLiteralList(inputs, this.isConst) : super(inputs);
|
| + HLiteralList(inputs) : super(inputs);
|
| toString() => 'literal list';
|
| accept(HVisitor visitor) => visitor.visitLiteralList(this);
|
| HType computeType() => HType.ARRAY;
|
| bool hasExpectedType() => true;
|
| - final bool isConst; // TODO(floitsch): Remove when CTC handles arrays.
|
|
|
| void prepareGvn() {
|
| assert(!hasSideEffects());
|
|
|