| Index: lib/compiler/implementation/ssa/codegen.dart
|
| diff --git a/lib/compiler/implementation/ssa/codegen.dart b/lib/compiler/implementation/ssa/codegen.dart
|
| index 6fa8c8670a8f67d210c7b978f4a61a82a2a5f80f..ea0d298461556c979eb2fc73051421de6b100e5e 100644
|
| --- a/lib/compiler/implementation/ssa/codegen.dart
|
| +++ b/lib/compiler/implementation/ssa/codegen.dart
|
| @@ -1644,7 +1644,7 @@ class SsaOptimizedCodeGenerator extends SsaCodeGenerator {
|
| checkImmutableArray(input);
|
| buffer.add(') ');
|
| bailout(node, 'Not a mutable array');
|
| - } else if (node.isArray()) {
|
| + } else if (node.isReadableArray()) {
|
| buffer.add('if (');
|
| checkObject(input, '!==');
|
| buffer.add('||');
|
|
|