| Index: pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
|
| diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
|
| index d7ff3cc1c90749f3af74274e6959da36d6a8506f..c37c6734ba950b3ac014a9603e61bf591291ec2b 100644
|
| --- a/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
|
| +++ b/pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart
|
| @@ -293,8 +293,7 @@ class IRTracer extends TracerUtil implements cps_ir.Visitor {
|
| visitCreateInstance(cps_ir.CreateInstance node) {
|
| String className = node.classElement.name;
|
| String arguments = node.arguments.map(formatReference).join(', ');
|
| - String typeInformation =
|
| - node.typeInformation.map(formatReference).join(', ');
|
| + String typeInformation = formatReference(node.typeInformation);
|
| return 'CreateInstance $className ($arguments) <$typeInformation>';
|
| }
|
|
|
|
|