| Index: pkg/compiler/lib/src/constants/values.dart
|
| diff --git a/pkg/compiler/lib/src/constants/values.dart b/pkg/compiler/lib/src/constants/values.dart
|
| index 37f5646d7e3600f22f575df233d3153b2273f62e..215a605ebee7fe9e3cc5f6ddd879ecabf5357feb 100644
|
| --- a/pkg/compiler/lib/src/constants/values.dart
|
| +++ b/pkg/compiler/lib/src/constants/values.dart
|
| @@ -751,7 +751,9 @@ class DeferredConstantValue extends ConstantValue {
|
|
|
| String toDartText() => 'deferred(${referenced.toDartText()})';
|
|
|
| - String toStructuredText() => 'DeferredConstant($referenced)';
|
| + String toStructuredText() {
|
| + return 'DeferredConstant(${referenced.toStructuredText()})';
|
| + }
|
| }
|
|
|
| /// A constant value resulting from a non constant or erroneous constant
|
|
|