| Index: pkg/analyzer/lib/src/task/dart.dart
|
| diff --git a/pkg/analyzer/lib/src/task/dart.dart b/pkg/analyzer/lib/src/task/dart.dart
|
| index 8821bc4d93011afe13a43f09ec1f6d5b239a5396..e251ea56352d0dc1c69bcff75e9c1f6c5eba3cc6 100644
|
| --- a/pkg/analyzer/lib/src/task/dart.dart
|
| +++ b/pkg/analyzer/lib/src/task/dart.dart
|
| @@ -16,7 +16,7 @@ import 'package:analyzer/error/listener.dart';
|
| import 'package:analyzer/exception/exception.dart';
|
| import 'package:analyzer/src/context/cache.dart';
|
| import 'package:analyzer/src/dart/ast/ast.dart'
|
| - show NamespaceDirectiveImpl, UriBasedDirectiveImpl;
|
| + show NamespaceDirectiveImpl, UriBasedDirectiveImpl, UriValidationCode;
|
| import 'package:analyzer/src/dart/ast/utilities.dart';
|
| import 'package:analyzer/src/dart/element/builder.dart';
|
| import 'package:analyzer/src/dart/element/element.dart';
|
| @@ -6239,8 +6239,8 @@ class VerifyUnitTask extends SourceBasedAnalysisTask {
|
| * Check the given [directive] to see if the referenced source exists and
|
| * report an error if it does not.
|
| */
|
| - void validateReferencedSource(UriBasedDirective directive) {
|
| - if (directive is NamespaceDirective) {
|
| + void validateReferencedSource(UriBasedDirectiveImpl directive) {
|
| + if (directive is NamespaceDirectiveImpl) {
|
| for (Configuration configuration in directive.configurations) {
|
| Source source = configuration.uriSource;
|
| StringLiteral uriLiteral = configuration.uri;
|
|
|