| Index: pkg/compiler/lib/src/diagnostics/messages.dart
|
| diff --git a/pkg/compiler/lib/src/diagnostics/messages.dart b/pkg/compiler/lib/src/diagnostics/messages.dart
|
| index 33a6ba37a40554d74088b7358e218145d4238017..347b25b54cd2b88e1154884f07d4e5ae2191dc7d 100644
|
| --- a/pkg/compiler/lib/src/diagnostics/messages.dart
|
| +++ b/pkg/compiler/lib/src/diagnostics/messages.dart
|
| @@ -3352,7 +3352,11 @@ Use the --categories option to support import of '#{uri}'.
|
| MessageKind.MIRRORS_LIBRARY_NOT_SUPPORT_BY_BACKEND:
|
| const MessageTemplate(
|
| MessageKind.MIRRORS_LIBRARY_NOT_SUPPORT_BY_BACKEND,
|
| - "dart:mirrors library is not supported when using this backend."),
|
| + """
|
| +dart:mirrors library is not supported when using this backend.
|
| +
|
| +Your app imports dart:mirrors via:""""""
|
| +$MIRRORS_NOT_SUPPORTED_BY_BACKEND_PADDING#{importChain}"""),
|
|
|
| MessageKind.CALL_NOT_SUPPORTED_ON_NATIVE_CLASS:
|
| const MessageTemplate(MessageKind.CALL_NOT_SUPPORTED_ON_NATIVE_CLASS,
|
| @@ -3393,6 +3397,10 @@ Use the --categories option to support import of '#{uri}'.
|
| static const String IMPORT_EXPERIMENTAL_MIRRORS_PADDING = '\n* ';
|
|
|
| /// Padding used before and between import chains in the message for
|
| + /// [MessageKind.MIRRORS_LIBRARY_NOT_SUPPORT_BY_BACKEND].
|
| + static const String MIRRORS_NOT_SUPPORTED_BY_BACKEND_PADDING = '\n ';
|
| +
|
| + /// Padding used before and between import chains in the message for
|
| /// [MessageKind.DISALLOWED_LIBRARY_IMPORT].
|
| static const String DISALLOWED_LIBRARY_IMPORT_PADDING = '\n ';
|
|
|
|
|