| Index: lib/compiler/implementation/ssa/codegen.dart
|
| diff --git a/lib/compiler/implementation/ssa/codegen.dart b/lib/compiler/implementation/ssa/codegen.dart
|
| index 7b4a93ce47fca89c76b69b793ed599374cccf613..e1fa3e0dc2309ae0273864b2b6ad78f098e27b85 100644
|
| --- a/lib/compiler/implementation/ssa/codegen.dart
|
| +++ b/lib/compiler/implementation/ssa/codegen.dart
|
| @@ -27,7 +27,8 @@ class SsaCodeGeneratorTask extends CompilerTask {
|
|
|
| CodeBuffer generateMethod(WorkItem work, HGraph graph) {
|
| return measure(() {
|
| - HTypeMap types = work.compilationContext.types;
|
| + JavaScriptItemCompilationContext context = work.compilationContext;
|
| + HTypeMap types = context.types;
|
| graph.exit.predecessors.forEach((block) {
|
| assert(block.last is HGoto || block.last is HReturn);
|
| if (block.last is HReturn) {
|
|
|