| Index: pkg/compiler/lib/src/ssa/codegen.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/codegen.dart b/pkg/compiler/lib/src/ssa/codegen.dart
|
| index c92ac88f4d6cf84a75f8371823a809eb5b5b61df..d3033450afa23912cd970af87bade04e6efdc6ff 100644
|
| --- a/pkg/compiler/lib/src/ssa/codegen.dart
|
| +++ b/pkg/compiler/lib/src/ssa/codegen.dart
|
| @@ -2996,7 +2996,9 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
|
| case TypeInfoExpressionKind.COMPLETE:
|
| int index = 0;
|
| js.Expression result = _rtiEncoder.getTypeRepresentation(
|
| - node.dartType, (TypeVariableType variable) => arguments[index++]);
|
| + _emitter.emitter,
|
| + node.dartType,
|
| + (TypeVariableType variable) => arguments[index++]);
|
| assert(index == node.inputs.length);
|
| push(result);
|
| return;
|
|
|