| Index: sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_nodes.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_nodes.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_nodes.dart
|
| index 82839d5354081845a431e8a7b0c030d441be0532..f47de50e727f2c5ac46197dac1affa5e9b6e1c7b 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_nodes.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend_ast_nodes.dart
|
| @@ -828,7 +828,9 @@ class Unparser {
|
| write(v.toString());
|
| }
|
| } else {
|
| - write(e.value.toString());
|
| + // TODO(sigurdm): Use [ConstExp] to generate valid code for any
|
| + // constant.
|
| + write(e.value.unparse());
|
| }
|
| } else if (e is LiteralList) {
|
| if (e.isConst) {
|
|
|