| Index: dart/frog/leg/ssa/types.dart
|
| diff --git a/dart/frog/leg/ssa/types.dart b/dart/frog/leg/ssa/types.dart
|
| index 8adf2c1bec38fd564ba501a88517de7fad856afd..6acfe10c39385cc8f774002251eb1594e73ed73e 100644
|
| --- a/dart/frog/leg/ssa/types.dart
|
| +++ b/dart/frog/leg/ssa/types.dart
|
| @@ -2,11 +2,12 @@
|
| // 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.
|
|
|
| -class SsaTypePropagator extends HGraphVisitor {
|
| +class SsaTypePropagator extends HGraphVisitor implements OptimizationPhase {
|
|
|
| final Map<int, HInstruction> workmap;
|
| final List<int> worklist;
|
| final Compiler compiler;
|
| + final String name = 'type propagator';
|
|
|
| SsaTypePropagator(Compiler this.compiler)
|
| : workmap = new Map<int, HInstruction>(),
|
|
|