| Index: pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
|
| diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
|
| index daa8408d436896f2bf3458651fd409aa7b1ce701..37836bf77175f1470426782a107b5df8df90a894 100644
|
| --- a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
|
| +++ b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart
|
| @@ -361,7 +361,7 @@ class SExpressionStringifier extends Indentation implements Visitor<String> {
|
| String visitCreateInstance(CreateInstance node) {
|
| String className = node.classElement.name;
|
| String arguments = node.arguments.map(access).join(' ');
|
| - String typeInformation = node.typeInformation.map(access).join(' ');
|
| + String typeInformation = optionalAccess(node.typeInformation);
|
| return '(CreateInstance $className ($arguments) ($typeInformation))';
|
| }
|
|
|
| @@ -379,7 +379,7 @@ class SExpressionStringifier extends Indentation implements Visitor<String> {
|
|
|
| String visitTypeExpression(TypeExpression node) {
|
| String args = node.arguments.map(access).join(' ');
|
| - return '(TypeExpression ${node.dartType} ($args))';
|
| + return '(TypeExpression ${node.kindAsString} ${node.dartType} ($args))';
|
| }
|
|
|
| String visitCreateInvocationMirror(CreateInvocationMirror node) {
|
|
|