| Index: lib/compiler/implementation/ssa/optimize.dart
|
| diff --git a/lib/compiler/implementation/ssa/optimize.dart b/lib/compiler/implementation/ssa/optimize.dart
|
| index 0b58830472c3856281ab91e0b21685c7f553b0fe..fb6fbfa00e61334564f458db747dce52ae06322d 100644
|
| --- a/lib/compiler/implementation/ssa/optimize.dart
|
| +++ b/lib/compiler/implementation/ssa/optimize.dart
|
| @@ -78,9 +78,9 @@ class SsaConstantFolder extends HBaseVisitor implements OptimizationPhase {
|
|
|
| SsaConstantFolder(this.compiler);
|
|
|
| - void visitGraph(HGraph graph) {
|
| - this.graph = graph;
|
| - visitDominatorTree(graph);
|
| + void visitGraph(HGraph visitee) {
|
| + graph = visitee;
|
| + visitDominatorTree(visitee);
|
| }
|
|
|
| visitBasicBlock(HBasicBlock block) {
|
|
|