| Index: pkg/analyzer/lib/src/task/strong/info.dart
|
| diff --git a/pkg/analyzer/lib/src/task/strong/info.dart b/pkg/analyzer/lib/src/task/strong/info.dart
|
| index d9c912600eaab412ce05292c1655c62663fd9cc3..6bd02e2d73a8272a7a53b8e06bf17cd201311ae9 100644
|
| --- a/pkg/analyzer/lib/src/task/strong/info.dart
|
| +++ b/pkg/analyzer/lib/src/task/strong/info.dart
|
| @@ -96,14 +96,14 @@ abstract class DownCast extends CoercionInfo {
|
| }
|
|
|
| @override
|
| - List<Object> get arguments => [node, baseType, convertedType];
|
| + List<Object> get arguments => [baseType, convertedType];
|
|
|
| Cast get cast => _cast;
|
|
|
| DartType get convertedType => _cast.toType;
|
| +
|
| @override
|
| - String get message => '{0} ({1}) will need runtime check '
|
| - 'to cast to type {2}';
|
| + String get message => 'Unsound implicit cast from {0} to {1}';
|
|
|
| // Factory to create correct DownCast variant.
|
| static StaticInfo create(
|
|
|