blob: 4f1ffad3bbbc416ebb0f8c1a41d6d589c31cd1ad [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:collection';
import 'package:_fe_analyzer_shared/src/flow_analysis/flow_analysis.dart';
import 'package:_fe_analyzer_shared/src/type_inference/type_analysis_result.dart';
import 'package:_fe_analyzer_shared/src/type_inference/type_analysis_result.dart'
as shared;
import 'package:_fe_analyzer_shared/src/type_inference/type_analyzer.dart'
hide NamedType, RecordType;
import 'package:_fe_analyzer_shared/src/type_inference/type_analyzer.dart'
as shared;
import 'package:_fe_analyzer_shared/src/type_inference/type_operations.dart'
as shared;
import 'package:analyzer/dart/analysis/features.dart';
import 'package:analyzer/dart/ast/ast.dart';
import 'package:analyzer/dart/ast/syntactic_entity.dart';
import 'package:analyzer/dart/ast/token.dart';
import 'package:analyzer/dart/ast/visitor.dart';
import 'package:analyzer/dart/element/element.dart';
import 'package:analyzer/dart/element/nullability_suffix.dart';
import 'package:analyzer/dart/element/scope.dart';
import 'package:analyzer/dart/element/type.dart';
import 'package:analyzer/dart/element/type_provider.dart';
import 'package:analyzer/diagnostic/diagnostic.dart';
import 'package:analyzer/error/error.dart';
import 'package:analyzer/error/listener.dart';
import 'package:analyzer/src/dart/ast/ast.dart';
import 'package:analyzer/src/dart/ast/extensions.dart';
import 'package:analyzer/src/dart/ast/utilities.dart';
import 'package:analyzer/src/dart/element/element.dart';
import 'package:analyzer/src/dart/element/extensions.dart';
import 'package:analyzer/src/dart/element/generic_inferrer.dart';
import 'package:analyzer/src/dart/element/inheritance_manager3.dart';
import 'package:analyzer/src/dart/element/member.dart' show Member;
import 'package:analyzer/src/dart/element/nullability_eliminator.dart';
import 'package:analyzer/src/dart/element/scope.dart';
import 'package:analyzer/src/dart/element/type.dart';
import 'package:analyzer/src/dart/element/type_provider.dart';
import 'package:analyzer/src/dart/element/type_schema.dart';
import 'package:analyzer/src/dart/element/type_system.dart';
import 'package:analyzer/src/dart/resolver/annotation_resolver.dart';
import 'package:analyzer/src/dart/resolver/assignment_expression_resolver.dart';
import 'package:analyzer/src/dart/resolver/binary_expression_resolver.dart';
import 'package:analyzer/src/dart/resolver/body_inference_context.dart';
import 'package:analyzer/src/dart/resolver/constructor_reference_resolver.dart';
import 'package:analyzer/src/dart/resolver/extension_member_resolver.dart';
import 'package:analyzer/src/dart/resolver/flow_analysis_visitor.dart';
import 'package:analyzer/src/dart/resolver/for_resolver.dart';
import 'package:analyzer/src/dart/resolver/function_expression_invocation_resolver.dart';
import 'package:analyzer/src/dart/resolver/function_expression_resolver.dart';
import 'package:analyzer/src/dart/resolver/function_reference_resolver.dart';
import 'package:analyzer/src/dart/resolver/instance_creation_expression_resolver.dart';
import 'package:analyzer/src/dart/resolver/invocation_inference_helper.dart';
import 'package:analyzer/src/dart/resolver/invocation_inferrer.dart';
import 'package:analyzer/src/dart/resolver/lexical_lookup.dart';
import 'package:analyzer/src/dart/resolver/list_pattern_resolver.dart';
import 'package:analyzer/src/dart/resolver/method_invocation_resolver.dart';
import 'package:analyzer/src/dart/resolver/postfix_expression_resolver.dart';
import 'package:analyzer/src/dart/resolver/prefix_expression_resolver.dart';
import 'package:analyzer/src/dart/resolver/prefixed_identifier_resolver.dart';
import 'package:analyzer/src/dart/resolver/property_element_resolver.dart';
import 'package:analyzer/src/dart/resolver/record_literal_resolver.dart';
import 'package:analyzer/src/dart/resolver/scope.dart';
import 'package:analyzer/src/dart/resolver/shared_type_analyzer.dart';
import 'package:analyzer/src/dart/resolver/simple_identifier_resolver.dart';
import 'package:analyzer/src/dart/resolver/this_lookup.dart';
import 'package:analyzer/src/dart/resolver/type_property_resolver.dart';
import 'package:analyzer/src/dart/resolver/typed_literal_resolver.dart';
import 'package:analyzer/src/dart/resolver/variable_declaration_resolver.dart';
import 'package:analyzer/src/dart/resolver/yield_statement_resolver.dart';
import 'package:analyzer/src/diagnostic/diagnostic.dart';
import 'package:analyzer/src/error/base_or_final_type_verifier.dart';
import 'package:analyzer/src/error/bool_expression_verifier.dart';
import 'package:analyzer/src/error/codes.dart';
import 'package:analyzer/src/error/dead_code_verifier.dart';
import 'package:analyzer/src/error/nullable_dereference_verifier.dart';
import 'package:analyzer/src/error/super_formal_parameters_verifier.dart';
import 'package:analyzer/src/generated/element_resolver.dart';
import 'package:analyzer/src/generated/engine.dart';
import 'package:analyzer/src/generated/error_detection_helpers.dart';
import 'package:analyzer/src/generated/migratable_ast_info_provider.dart';
import 'package:analyzer/src/generated/migration.dart';
import 'package:analyzer/src/generated/source.dart';
import 'package:analyzer/src/generated/static_type_analyzer.dart';
import 'package:analyzer/src/generated/this_access_tracker.dart';
import 'package:analyzer/src/generated/utilities_dart.dart';
import 'package:analyzer/src/generated/variable_type_provider.dart';
import 'package:analyzer/src/task/inference_error.dart';
import 'package:analyzer/src/util/ast_data_extractor.dart';
import 'package:meta/meta.dart';
typedef SharedMatchContext = shared.MatchContext<AstNode, Expression,
DartPattern, DartType, PromotableElement>;
typedef SharedPatternField
= shared.RecordPatternField<PatternFieldImpl, DartPatternImpl>;
/// A function which returns [NonPromotionReason]s that various types are not
/// promoted.
typedef WhyNotPromotedGetter = Map<DartType, NonPromotionReason> Function();
/// Maintains and manages contextual type information used for
/// inferring types.
class InferenceContext {
final ResolverVisitor _resolver;
/// The type system in use.
final TypeSystemImpl _typeSystem;
/// The stack of contexts for nested function bodies.
final List<BodyInferenceContext> _bodyContexts = [];
InferenceContext._(ResolverVisitor resolver)
: _resolver = resolver,
_typeSystem = resolver.typeSystem;
BodyInferenceContext? get bodyContext {
if (_bodyContexts.isNotEmpty) {
return _bodyContexts.last;
} else {
return null;
}
}
DartType popFunctionBodyContext(FunctionBody node) {
var context = _bodyContexts.removeLast();
var flow = _resolver.flowAnalysis.flow;
return context.computeInferredReturnType(
endOfBlockIsReachable: flow == null || flow.isReachable,
);
}
void pushFunctionBodyContext(FunctionBody node, DartType? imposedType) {
_bodyContexts.add(
BodyInferenceContext(
typeSystem: _typeSystem,
node: node,
imposedType: imposedType,
),
);
}
}
/// Instances of the class `ResolverVisitor` are used to resolve the nodes
/// within a single compilation unit.
class ResolverVisitor extends ThrowingAstVisitor<void>
with
ErrorDetectionHelpers,
TypeAnalyzer<AstNode, Statement, Expression, PromotableElement,
DartType, DartPattern, void> {
/// Debug-only: if `true`, manipulations of [_rewriteStack] performed by
/// [popRewrite], [pushRewrite], and [replaceExpression] will be printed.
static const bool _debugRewriteStack = false;
/// The element for the library containing the compilation unit being visited.
final LibraryElementImpl definingLibrary;
/// If the resolver visitor is visiting a switch statement and patterns
/// support is disabled, the tracker that determines whether the switch is
/// exhaustive.
SwitchExhaustiveness? legacySwitchExhaustiveness;
@override
final TypeAnalyzerOptions options;
@override
late final SharedTypeAnalyzerErrors errors =
SharedTypeAnalyzerErrors(errorReporter);
/// The source representing the compilation unit being visited.
final Source source;
/// The object used to access the types from the core library.
final TypeProviderImpl typeProvider;
@override
final ErrorReporter errorReporter;
/// The class containing the AST nodes being visited,
/// or `null` if we are not in the scope of a class.
InterfaceElement? enclosingClass;
/// The element representing the extension containing the AST nodes being
/// visited, or `null` if we are not in the scope of an extension.
ExtensionElement? enclosingExtension;
/// The element representing the function containing the current node, or
/// `null` if the current node is not contained in a function.
ExecutableElement? _enclosingFunction;
/// The manager for the inheritance mappings.
final InheritanceManager3 inheritance;
/// The feature set that is enabled for the current unit.
final FeatureSet _featureSet;
final MigratableAstInfoProvider _migratableAstInfoProvider;
final MigrationResolutionHooks? migrationResolutionHooks;
/// Helper for checking that subtypes of a base or final type must be base,
/// final, or sealed.
late final BaseOrFinalTypeVerifier baseOrFinalTypeVerifier;
/// Helper for checking expression that should have the `bool` type.
late final BoolExpressionVerifier boolExpressionVerifier;
/// Helper for checking potentially nullable dereferences.
late final NullableDereferenceVerifier nullableDereferenceVerifier;
/// Helper for extension method resolution.
late final ExtensionMemberResolver extensionResolver;
/// Helper for resolving properties on types.
late final TypePropertyResolver typePropertyResolver;
/// Helper for resolving [ListLiteral] and [SetOrMapLiteral].
late final TypedLiteralResolver _typedLiteralResolver;
late final AssignmentExpressionResolver _assignmentExpressionResolver;
late final BinaryExpressionResolver _binaryExpressionResolver;
late final ConstructorReferenceResolver _constructorReferenceResolver =
ConstructorReferenceResolver(this);
late final FunctionExpressionInvocationResolver
_functionExpressionInvocationResolver;
late final FunctionExpressionResolver _functionExpressionResolver;
late final ForResolver _forResolver;
late final PostfixExpressionResolver _postfixExpressionResolver;
late final PrefixedIdentifierResolver _prefixedIdentifierResolver;
late final PrefixExpressionResolver _prefixExpressionResolver;
late final VariableDeclarationResolver _variableDeclarationResolver;
late final YieldStatementResolver _yieldStatementResolver;
late final NullSafetyDeadCodeVerifier nullSafetyDeadCodeVerifier;
late final InvocationInferenceHelper inferenceHelper;
/// The object used to resolve the element associated with the current node.
late final ElementResolver elementResolver;
/// The object used to compute the type associated with the current node.
late final StaticTypeAnalyzer typeAnalyzer;
/// The type system in use during resolution.
@override
final TypeSystemImpl typeSystem;
/// The helper for tracking if the current location has access to `this`.
final ThisAccessTracker _thisAccessTracker = ThisAccessTracker.unit();
late final InferenceContext inferenceContext;
/// If a class, or mixin, is being resolved, the type of the class.
/// Otherwise `null`.
DartType? _thisType;
final FlowAnalysisHelper flowAnalysis;
/// A comment before a function should be resolved in the context of the
/// function. But when we incrementally resolve a comment, we don't want to
/// resolve the whole function.
///
/// So, this flag is set to `true`, when just context of the function should
/// be built and the comment resolved.
bool resolveOnlyCommentInFunctionBody = false;
/// Stack of expressions which we have not yet finished visiting, that should
/// terminate a null-shorting expression.
///
/// The stack contains a `null` sentinel as its first entry so that it is
/// always safe to use `.last` to examine the top of the stack.
final List<Expression?> _unfinishedNullShorts = [null];
late final FunctionReferenceResolver _functionReferenceResolver;
late final InstanceCreationExpressionResolver
_instanceCreationExpressionResolver =
InstanceCreationExpressionResolver(this);
late final SimpleIdentifierResolver _simpleIdentifierResolver =
SimpleIdentifierResolver(this);
late final PropertyElementResolver _propertyElementResolver =
PropertyElementResolver(this);
late final RecordLiteralResolver _recordLiteralResolver =
RecordLiteralResolver(resolver: this);
late final AnnotationResolver _annotationResolver = AnnotationResolver(this);
late final ListPatternResolver listPatternResolver =
ListPatternResolver(this);
final bool genericMetadataIsEnabled;
/// Stack for obtaining rewritten expressions. Prior to visiting an
/// expression, a caller may push the expression on this stack; if
/// [replaceExpression] is later called, it will update the top of the stack
/// to point to the rewritten expression.
///
/// The stack sometimes contains `null`s. These account for situations where
/// it's necessary to push a value onto the stack to balance a later pop, but
/// there is no suitable expression to push.
final List<ExpressionImpl?> _rewriteStack = [];
/// Debug-only expando mapping AST nodes to the nodes they were replaced with
/// by [replaceExpression]. This is used by [dispatchExpression] as a sanity
/// check to make sure the expression it pops off the [_rewriteStack] is
/// actually correct.
late final Expando<AstNode> _replacements = Expando();
/// Initialize a newly created visitor to resolve the nodes in an AST node.
///
/// The [definingLibrary] is the element for the library containing the node
/// being visited. The [source] is the source representing the compilation
/// unit containing the node being visited. The [typeProvider] is the object
/// used to access the types from the core library. The [errorListener] is the
/// error listener that will be informed of any errors that are found during
/// resolution.
///
/// TODO(paulberry): make [featureSet] a required parameter (this will be a
/// breaking change).
ResolverVisitor(
InheritanceManager3 inheritanceManager,
LibraryElementImpl definingLibrary,
Source source,
TypeProvider typeProvider,
AnalysisErrorListener errorListener,
{FeatureSet? featureSet,
required FlowAnalysisHelper flowAnalysisHelper})
: this._(
inheritanceManager,
definingLibrary,
source,
definingLibrary.typeSystem,
typeProvider as TypeProviderImpl,
errorListener,
featureSet ??
definingLibrary.context.analysisOptions.contextFeatures,
flowAnalysisHelper,
const MigratableAstInfoProvider(),
null);
ResolverVisitor._(
this.inheritance,
this.definingLibrary,
this.source,
this.typeSystem,
this.typeProvider,
AnalysisErrorListener errorListener,
FeatureSet featureSet,
this.flowAnalysis,
this._migratableAstInfoProvider,
this.migrationResolutionHooks)
: errorReporter = ErrorReporter(
errorListener,
source,
isNonNullableByDefault: definingLibrary.isNonNullableByDefault,
),
_featureSet = featureSet,
genericMetadataIsEnabled =
definingLibrary.featureSet.isEnabled(Feature.generic_metadata),
options = TypeAnalyzerOptions(
nullSafetyEnabled: definingLibrary.isNonNullableByDefault,
patternsEnabled:
definingLibrary.featureSet.isEnabled(Feature.patterns)) {
var analysisOptions =
definingLibrary.context.analysisOptions as AnalysisOptionsImpl;
nullableDereferenceVerifier = NullableDereferenceVerifier(
typeSystem: typeSystem,
errorReporter: errorReporter,
resolver: this,
);
baseOrFinalTypeVerifier = BaseOrFinalTypeVerifier(
definingLibrary: definingLibrary, errorReporter: errorReporter);
boolExpressionVerifier = BoolExpressionVerifier(
resolver: this,
errorReporter: errorReporter,
nullableDereferenceVerifier: nullableDereferenceVerifier,
);
_typedLiteralResolver = TypedLiteralResolver(
this, _featureSet, typeSystem, typeProvider,
migratableAstInfoProvider: _migratableAstInfoProvider);
extensionResolver = ExtensionMemberResolver(this);
typePropertyResolver = TypePropertyResolver(this);
inferenceHelper = InvocationInferenceHelper(
resolver: this,
errorReporter: errorReporter,
typeSystem: typeSystem,
migrationResolutionHooks: migrationResolutionHooks,
);
_assignmentExpressionResolver = AssignmentExpressionResolver(
resolver: this,
);
_binaryExpressionResolver = BinaryExpressionResolver(
resolver: this,
);
_functionExpressionInvocationResolver =
FunctionExpressionInvocationResolver(
resolver: this,
);
_functionExpressionResolver = FunctionExpressionResolver(
resolver: this,
migrationResolutionHooks: migrationResolutionHooks,
);
_forResolver = ForResolver(
resolver: this,
);
_postfixExpressionResolver = PostfixExpressionResolver(
resolver: this,
);
_prefixedIdentifierResolver = PrefixedIdentifierResolver(this);
_prefixExpressionResolver = PrefixExpressionResolver(
resolver: this,
);
_variableDeclarationResolver = VariableDeclarationResolver(
resolver: this,
strictInference: analysisOptions.strictInference,
);
_yieldStatementResolver = YieldStatementResolver(
resolver: this,
);
nullSafetyDeadCodeVerifier = NullSafetyDeadCodeVerifier(
typeSystem,
errorReporter,
flowAnalysis,
);
elementResolver = ElementResolver(this,
migratableAstInfoProvider: _migratableAstInfoProvider);
inferenceContext = InferenceContext._(this);
typeAnalyzer = StaticTypeAnalyzer(this);
_functionReferenceResolver =
FunctionReferenceResolver(this, _isNonNullableByDefault);
}
@override
DartType get boolType => typeProvider.boolType;
@override
DartType get doubleType => throw UnimplementedError('TODO(paulberry)');
@override
DartType get dynamicType => typeProvider.dynamicType;
/// Return the element representing the function containing the current node,
/// or `null` if the current node is not contained in a function.
///
/// @return the element representing the function containing the current node
ExecutableElement? get enclosingFunction => _enclosingFunction;
@override
DartType get errorType => typeProvider.dynamicType;
@override
FlowAnalysis<AstNode, Statement, Expression, PromotableElement, DartType>
get flow => flowAnalysis.flow!;
@override
DartType get intType => throw UnimplementedError('TODO(paulberry)');
bool get isConstructorTearoffsEnabled =>
_featureSet.isEnabled(Feature.constructor_tearoffs);
bool get isInferenceUpdate1Enabled =>
_featureSet.isEnabled(Feature.inference_update_1);
/// Return the object providing promoted or declared types of variables.
LocalVariableTypeProvider get localVariableTypeProvider {
return flowAnalysis.localVariableTypeProvider;
}
NullabilitySuffix get noneOrStarSuffix {
return _isNonNullableByDefault
? NullabilitySuffix.none
: NullabilitySuffix.star;
}
@override
DartType get objectQuestionType => typeSystem.objectQuestion;
@override
Operations<PromotableElement, DartType> get operations =>
flowAnalysis.typeOperations;
/// Gets the current depth of the [_rewriteStack]. This may be used in
/// assertions to verify that pushes and pops are properly balanced.
int get rewriteStackDepth => _rewriteStack.length;
/// If a class, or mixin, is being resolved, the type of the class.
///
/// If an extension is being resolved, the type of `this`, the declared
/// extended type, or promoted.
///
/// Otherwise `null`.
DartType? get thisType {
return _thisType;
}
@override
DartType get unknownType => UnknownInferredType.instance;
/// Return `true` if NNBD is enabled for this compilation unit.
bool get _isNonNullableByDefault =>
_featureSet.isEnabled(Feature.non_nullable);
@override
shared.RecordType<DartType>? asRecordType(DartType type) {
if (type is RecordType) {
return shared.RecordType(
positional: type.positionalFields.map((e) => e.type).toList(),
named: type.namedFields
.map((e) => shared.NamedType(e.name, e.type))
.toList(),
);
}
return null;
}
List<SharedPatternField> buildSharedPatternFields(
List<PatternFieldImpl> fields,
) {
return fields.map((field) {
Token? nameToken;
var fieldName = field.name;
if (fieldName != null) {
nameToken = fieldName.name;
if (nameToken == null) {
nameToken = field.pattern.variablePattern?.name;
if (nameToken == null) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.MISSING_OBJECT_PATTERN_GETTER_NAME,
field,
);
}
}
}
return shared.RecordPatternField(
node: field,
name: nameToken?.lexeme,
pattern: field.pattern,
);
}).toList();
}
/// Verify that the arguments in the given [argumentList] can be assigned to
/// their corresponding parameters.
///
/// See [CompileTimeErrorCode.ARGUMENT_TYPE_NOT_ASSIGNABLE].
void checkForArgumentTypesNotAssignableInList(ArgumentList argumentList,
List<WhyNotPromotedGetter> whyNotPromotedList) {
var arguments = argumentList.arguments;
for (int i = 0; i < arguments.length; i++) {
checkForArgumentTypeNotAssignableForArgument(arguments[i],
whyNotPromoted:
flowAnalysis.flow == null ? null : whyNotPromotedList[i]);
}
}
void checkForBodyMayCompleteNormally({
required FunctionBody body,
required SyntacticEntity errorNode,
}) {
if (!_isNonNullableByDefault) {
return;
}
if (!flowAnalysis.flow!.isReachable) {
return;
}
// TODO(scheglov) encapsulate
var bodyContext = BodyInferenceContext.of(body);
if (bodyContext == null) {
return;
}
var returnType = bodyContext.contextType;
if (returnType == null) {
if (errorNode is BlockFunctionBody) {
_checkForFutureCatchErrorOnError(errorNode);
}
return;
}
if (body is BlockFunctionBody) {
if (body.isGenerator) {
return;
}
if (body.isAsynchronous) {
// Check whether the return type is legal. If not, return rather than
// reporting a second error.
// This is the same check as [ReturnTypeVerifier._isLegalReturnType].
// TODO(srawlins): When this check is moved into the resolution stage,
// use the result of that check to determine whether this check should
// be done.
var lowerBound = typeProvider.futureElement.instantiate(
typeArguments: fixedTypeList(NeverTypeImpl.instance),
nullabilitySuffix: NullabilitySuffix.star,
);
var imposedType = bodyContext.imposedType;
if (imposedType != null &&
!typeSystem.isSubtypeOf(lowerBound, imposedType)) {
// [imposedType] is an illegal return type for an asynchronous
// non-generator function; do not report an additional error here.
return;
}
}
ErrorCode errorCode;
if (typeSystem.isPotentiallyNonNullable(returnType)) {
errorCode = CompileTimeErrorCode.BODY_MIGHT_COMPLETE_NORMALLY;
} else {
var returnTypeBase = typeSystem.futureOrBase(returnType);
if (returnTypeBase is VoidType ||
returnTypeBase.isDynamic ||
returnTypeBase.isDartCoreNull) {
return;
} else {
errorCode = WarningCode.BODY_MIGHT_COMPLETE_NORMALLY_NULLABLE;
}
}
if (errorNode is ConstructorDeclaration) {
errorReporter.reportErrorForName(
errorCode,
errorNode,
arguments: [returnType],
);
} else if (errorNode is BlockFunctionBody) {
errorReporter.reportErrorForToken(
errorCode,
errorNode.block.leftBracket,
[returnType],
);
} else if (errorNode is Token) {
errorReporter.reportErrorForToken(
errorCode,
errorNode,
[returnType],
);
}
}
}
/// The client of the resolver should call this method after asking the
/// resolver to visit an AST node. This performs assertions to make sure that
/// temporary resolver state has been properly cleaned up.
void checkIdle() {
assert(_rewriteStack.isEmpty);
}
void checkReadOfNotAssignedLocalVariable(
SimpleIdentifier node,
Element? element,
) {
if (flowAnalysis.flow == null) {
return;
}
if (!node.inGetterContext()) {
return;
}
if (element is VariableElement) {
var assigned =
flowAnalysis.isDefinitelyAssigned(node, element as PromotableElement);
var unassigned = flowAnalysis.isDefinitelyUnassigned(node, element);
if (element.isLate) {
if (unassigned) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.DEFINITELY_UNASSIGNED_LATE_LOCAL_VARIABLE,
node,
[node.name],
);
}
return;
}
if (!assigned) {
if (element.isFinal) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.READ_POTENTIALLY_UNASSIGNED_FINAL,
node,
[node.name],
);
return;
}
if (typeSystem.isPotentiallyNonNullable(element.type)) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode
.NOT_ASSIGNED_POTENTIALLY_NON_NULLABLE_LOCAL_VARIABLE,
node,
[node.name],
);
return;
}
}
}
}
void checkUnreachableNode(AstNode node) {
nullSafetyDeadCodeVerifier.visitNode(node);
}
@override
List<DiagnosticMessage> computeWhyNotPromotedMessages(
SyntacticEntity errorEntity,
Map<DartType, NonPromotionReason>? whyNotPromoted) {
List<DiagnosticMessage> messages = [];
if (whyNotPromoted != null) {
for (var entry in whyNotPromoted.entries) {
var whyNotPromotedVisitor = _WhyNotPromotedVisitor(
source, errorEntity, flowAnalysis.dataForTesting);
if (typeSystem.isPotentiallyNullable(entry.key)) continue;
var message = entry.value.accept(whyNotPromotedVisitor);
if (message != null) {
if (flowAnalysis.dataForTesting != null) {
var nonPromotionReasonText = entry.value.shortName;
var args = <String>[];
if (whyNotPromotedVisitor.propertyReference != null) {
var id =
computeMemberId(whyNotPromotedVisitor.propertyReference!);
args.add('target: $id');
}
var propertyType = whyNotPromotedVisitor.propertyType;
if (propertyType != null) {
var propertyTypeStr = propertyType.getDisplayString(
withNullability: true,
);
args.add('type: $propertyTypeStr');
}
if (args.isNotEmpty) {
nonPromotionReasonText += '(${args.join(', ')})';
}
flowAnalysis.dataForTesting!.nonPromotionReasons[errorEntity] =
nonPromotionReasonText;
}
messages = [message];
}
break;
}
}
return messages;
}
@override
void dispatchCollectionElement(
covariant CollectionElementImpl element,
covariant CollectionLiteralContext? context,
) {
if (element is ExpressionImpl) {
dispatchExpression(element, context?.elementType ?? unknownType);
} else {
element.resolveElement(this, context);
}
popRewrite();
}
@override
ExpressionTypeAnalysisResult<DartType> dispatchExpression(
covariant ExpressionImpl expression, DartType context) {
int? stackDepth;
assert(() {
stackDepth = rewriteStackDepth;
return true;
}());
// TODO(paulberry): implement null shorting
// Stack: ()
pushRewrite(expression);
// Stack: (Expression)
expression.resolveExpression(this, context);
assert(rewriteStackDepth == stackDepth! + 1);
var replacementExpression = peekRewrite()!;
assert(identical(
_replacements[expression] ?? expression, replacementExpression));
var staticType = replacementExpression.staticType;
if (staticType == null) {
var shouldHaveType = true;
if (replacementExpression is ExtensionOverride) {
shouldHaveType = false;
} else if (replacementExpression is IdentifierImpl) {
var element = replacementExpression.staticElement;
if (element is ExtensionElement || element is InterfaceElement) {
shouldHaveType = false;
}
}
if (shouldHaveType) {
assert(
false,
'No static type for: '
'(${replacementExpression.runtimeType}) $replacementExpression',
);
}
staticType = unknownType;
}
return SimpleTypeAnalysisResult<DartType>(type: staticType);
}
@override
void dispatchPattern(SharedMatchContext context, AstNode node) {
if (node is DartPatternImpl) {
node.matchedValueType = flow.getMatchedValueType();
node.resolvePattern(this, context);
} else {
// This can occur inside conventional switch statements, since
// [SwitchCase] points directly to an [Expression] rather than to a
// [ConstantPattern]. So we mimic what
// [ConstantPatternImpl.resolvePattern] would do.
analyzeConstantPattern(context, node, node as Expression);
// Stack: (Expression)
popRewrite();
// Stack: ()
}
}
@override
DartType dispatchPatternSchema(covariant DartPatternImpl node) {
return node.computePatternSchema(this);
}
@override
void dispatchStatement(Statement statement) {
statement.accept(this);
}
@override
DartType downwardInferObjectPatternRequiredType({
required DartType matchedType,
required covariant ObjectPatternImpl pattern,
}) {
var typeNode = pattern.type;
if (typeNode.typeArguments == null) {
var typeNameElement = typeNode.name.staticElement;
if (typeNameElement is InterfaceElement) {
var typeParameters = typeNameElement.typeParameters;
if (typeParameters.isNotEmpty) {
var typeArguments = _inferTypeArguments(
typeParameters: typeParameters,
errorNode: typeNode,
declaredType: typeNameElement.thisType,
contextType: matchedType,
);
return typeNode.type = typeNameElement.instantiate(
typeArguments: typeArguments,
nullabilitySuffix: NullabilitySuffix.none,
);
}
} else if (typeNameElement is TypeAliasElement) {
var typeParameters = typeNameElement.typeParameters;
if (typeParameters.isNotEmpty) {
var typeArguments = _inferTypeArguments(
typeParameters: typeParameters,
errorNode: typeNode,
declaredType: typeNameElement.aliasedType,
contextType: matchedType,
);
return typeNode.type = typeNameElement.instantiate(
typeArguments: typeArguments,
nullabilitySuffix: NullabilitySuffix.none,
);
}
}
}
return typeNode.typeOrThrow;
}
@override
void finishExpressionCase(
covariant SwitchExpressionImpl node,
int caseIndex,
) {
final case_ = node.cases[caseIndex];
case_.expression = popRewrite()!;
nullSafetyDeadCodeVerifier.flowEnd(case_);
}
@override
void finishJoinedPatternVariable(
covariant JoinPatternVariableElementImpl variable, {
required JoinedPatternVariableLocation location,
required shared.JoinedPatternVariableInconsistency inconsistency,
required bool isFinal,
required DartType type,
}) {
variable.inconsistency = variable.inconsistency.maxWith(inconsistency);
variable.isFinal = isFinal;
variable.type = type;
if (location == JoinedPatternVariableLocation.sharedCaseScope) {
for (var reference in variable.references) {
if (variable.inconsistency ==
shared.JoinedPatternVariableInconsistency.sharedCaseAbsent) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode
.PATTERN_VARIABLE_SHARED_CASE_SCOPE_NOT_ALL_CASES,
reference,
[variable.name],
);
} else if (variable.inconsistency ==
shared.JoinedPatternVariableInconsistency.sharedCaseHasLabel) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.PATTERN_VARIABLE_SHARED_CASE_SCOPE_HAS_LABEL,
reference,
[variable.name],
);
} else if (variable.inconsistency ==
shared.JoinedPatternVariableInconsistency.differentFinalityOrType) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode
.PATTERN_VARIABLE_SHARED_CASE_SCOPE_DIFFERENT_FINALITY_OR_TYPE,
reference,
[variable.name],
);
}
}
}
}
@override
shared.MapPatternEntry<Expression, DartPattern>? getMapPatternEntry(
covariant MapPatternElementImpl element,
) {
if (element is MapPatternEntryImpl) {
return shared.MapPatternEntry(
key: element.key,
value: element.value,
);
}
return null;
}
/// Return the static element associated with the given expression whose type
/// can be overridden, or `null` if there is no element whose type can be
/// overridden.
///
/// @param expression the expression with which the element is associated
/// @return the element associated with the given expression
VariableElement? getOverridableStaticElement(Expression expression) {
Element? element;
if (expression is SimpleIdentifier) {
element = expression.staticElement;
} else if (expression is PrefixedIdentifier) {
element = expression.staticElement;
} else if (expression is PropertyAccess) {
element = expression.propertyName.staticElement;
}
if (element is VariableElement) {
return element;
}
return null;
}
@override
DartPattern? getRestPatternElementPattern(
covariant RestPatternElementImpl element,
) {
return element.pattern;
}
@override
SwitchExpressionMemberInfo<AstNode, Expression, PromotableElement>
getSwitchExpressionMemberInfo(
covariant SwitchExpressionImpl node,
int index,
) {
var case_ = node.cases[index];
var guardedPattern = case_.guardedPattern;
return SwitchExpressionMemberInfo(
head: CaseHeadOrDefaultInfo(
pattern: guardedPattern.pattern,
guard: guardedPattern.whenClause?.expression,
variables: guardedPattern.variables,
),
expression: case_.expression,
);
}
@override
SwitchStatementMemberInfo<AstNode, Statement, Expression, PromotableElement>
getSwitchStatementMemberInfo(
covariant SwitchStatementImpl node,
int index,
) {
CaseHeadOrDefaultInfo<AstNode, Expression, PromotableElement> ofMember(
SwitchMemberImpl member,
) {
if (member is SwitchCaseImpl) {
return CaseHeadOrDefaultInfo(
pattern: member.expression,
variables: {},
guard: null,
);
} else if (member is SwitchPatternCaseImpl) {
var guardedPattern = member.guardedPattern;
return CaseHeadOrDefaultInfo(
pattern: guardedPattern.pattern,
variables: guardedPattern.variables,
guard: guardedPattern.whenClause?.expression,
);
} else {
return CaseHeadOrDefaultInfo(
pattern: null,
variables: {},
guard: null,
);
}
}
var group = node.memberGroups[index];
return SwitchStatementMemberInfo(
heads: group.members.map(ofMember).toList(),
body: group.statements,
variables: group.variables,
hasLabels: group.hasLabels,
);
}
@override
DartType getVariableType(PromotableElement element) {
return element.type;
}
@override
void handle_ifElement_conditionEnd(covariant IfElementImpl node) {
// Stack: (Expression condition)
var condition = popRewrite()!;
var whyNotPromoted = flowAnalysis.flow?.whyNotPromoted(condition);
boolExpressionVerifier.checkForNonBoolCondition(condition,
whyNotPromoted: whyNotPromoted);
}
@override
void handle_ifElement_elseEnd(
covariant IfElementImpl node,
covariant CollectionElementImpl ifFalse,
) {
nullSafetyDeadCodeVerifier.flowEnd(ifFalse);
}
@override
void handle_ifElement_thenEnd(
covariant IfElementImpl node,
covariant CollectionElementImpl ifTrue,
) {
nullSafetyDeadCodeVerifier.flowEnd(ifTrue);
}
@override
void handle_ifStatement_conditionEnd(Statement node) {
// Stack: (Expression condition)
var condition = popRewrite()!;
var whyNotPromoted = flowAnalysis.flow?.whyNotPromoted(condition);
boolExpressionVerifier.checkForNonBoolCondition(condition,
whyNotPromoted: whyNotPromoted);
}
@override
void handle_ifStatement_elseEnd(Statement node, Statement ifFalse) {
nullSafetyDeadCodeVerifier.flowEnd(ifFalse);
}
@override
void handle_ifStatement_thenEnd(Statement node, Statement ifTrue) {
nullSafetyDeadCodeVerifier.flowEnd(ifTrue);
}
@override
void handle_logicalOrPattern_afterLhs(covariant LogicalOrPatternImpl node) {
checkUnreachableNode(node.rightOperand);
}
@override
void handleCase_afterCaseHeads(
AstNode node, int caseIndex, Iterable<PromotableElement> variables) {}
@override
CaseHeadOrDefaultInfo<AstNode, Expression, PromotableElement> handleCaseHead(
covariant AstNodeImpl node,
CaseHeadOrDefaultInfo<AstNode, Expression, PromotableElement> head, {
required int caseIndex,
required int subIndex,
}) {
// Stack: (Expression)
popRewrite(); // "when" expression
// Stack: ()
if (node is SwitchStatementImpl) {
final group = node.memberGroups[caseIndex];
legacySwitchExhaustiveness?.visitSwitchMember(group);
nullSafetyDeadCodeVerifier.flowEnd(group.members[subIndex]);
} else if (node is SwitchExpressionImpl) {
legacySwitchExhaustiveness
?.visitSwitchExpressionCase(node.cases[caseIndex]);
}
return head;
}
@override
void handleDefault(
covariant SwitchStatementImpl node, {
required int caseIndex,
required int subIndex,
}) {
final group = node.memberGroups[caseIndex];
legacySwitchExhaustiveness?.visitSwitchMember(group);
nullSafetyDeadCodeVerifier.flowEnd(group.members[subIndex]);
}
@override
void handleListPatternRestElement(
DartPattern container,
covariant RestPatternElementImpl restElement,
) {}
@override
void handleMapPatternEntry(
DartPattern container,
covariant MapPatternEntryImpl entry,
DartType keyType,
) {
entry.key = popRewrite()!;
}
@override
void handleMapPatternRestElement(
DartPattern container,
covariant RestPatternElementImpl restElement,
) {}
@override
void handleMergedStatementCase(covariant SwitchStatementImpl node,
{required int caseIndex, required bool isTerminating}) {
nullSafetyDeadCodeVerifier
.flowEnd(node.memberGroups[caseIndex].members.last);
}
@override
void handleNoCollectionElement(AstNode node) {}
@override
void handleNoGuard(AstNode node, int caseIndex) {
// Stack: ()
// We can push `null` here because there is no actual expression associated
// with the lack of a guard, so there's nothing that will need rewriting.
pushRewrite(null);
// Stack: (Expression)
}
@override
void handleNoStatement(Statement node) {}
@override
void handleSwitchBeforeAlternative(
covariant AstNodeImpl node, {
required int caseIndex,
required int subIndex,
}) {
if (node is SwitchExpressionImpl) {
final case_ = node.cases[caseIndex];
checkUnreachableNode(case_);
} else if (node is SwitchStatementImpl) {
final member = node.memberGroups[caseIndex].members[subIndex];
checkUnreachableNode(member);
}
}
@override
void handleSwitchScrutinee(DartType type) {
if (!options.patternsEnabled) {
legacySwitchExhaustiveness = SwitchExhaustiveness(type);
}
}
/// If generic function instantiation should be performed on `expression`,
/// inserts a [FunctionReference] node which wraps [expression].
///
/// If an [FunctionReference] is inserted, returns it; otherwise, returns
/// [expression].
ExpressionImpl insertGenericFunctionInstantiation(Expression expression,
{required DartType? contextType}) {
expression as ExpressionImpl;
if (!isConstructorTearoffsEnabled) {
// Temporarily, only create [ImplicitCallReference] nodes under the
// 'constructor-tearoffs' feature.
// TODO(srawlins): When we are ready to make a breaking change release to
// the analyzer package, remove this exception.
return expression;
}
var staticType = expression.staticType;
var context = contextType;
if (context == null ||
staticType is! FunctionType ||
staticType.typeFormals.isEmpty) {
return expression;
}
context = typeSystem.flatten(context);
if (context is! FunctionType || context.typeFormals.isNotEmpty) {
return expression;
}
List<DartType> typeArgumentTypes =
typeSystem.inferFunctionTypeInstantiation(
context,
staticType,
errorReporter: errorReporter,
errorNode: expression,
// If the constructor-tearoffs feature is enabled, then so is
// generic-metadata.
genericMetadataIsEnabled: true,
);
if (typeArgumentTypes.isNotEmpty) {
staticType = staticType.instantiate(typeArgumentTypes);
}
var parent = expression.parent;
var genericFunctionInstantiation = FunctionReferenceImpl(
function: expression,
typeArguments: null,
);
replaceExpression(expression, genericFunctionInstantiation, parent: parent);
genericFunctionInstantiation.typeArgumentTypes = typeArgumentTypes;
genericFunctionInstantiation.staticType = staticType;
return genericFunctionInstantiation;
}
@override
bool isAlwaysExhaustiveType(DartType type) {
return typeSystem.isAlwaysExhaustive(type);
}
@override
bool isLegacySwitchExhaustive(AstNode node, DartType expressionType) =>
legacySwitchExhaustiveness!.isExhaustive;
@override
bool isRestPatternElement(AstNode node) {
return node is RestPatternElementImpl;
}
@override
bool isVariableFinal(PromotableElement element) {
return element.isFinal;
}
@override
bool isVariablePattern(AstNode pattern) => pattern is DeclaredVariablePattern;
@override
DartType iterableType(DartType elementType) {
return typeProvider.iterableType(elementType);
}
@override
DartType listType(DartType elementType) {
return typeProvider.listType(elementType);
}
@override
DartType mapType({
required DartType keyType,
required DartType valueType,
}) {
return typeProvider.mapType(keyType, valueType);
}
/// If we reached a null-shorting termination, and the [node] has null
/// shorting, make the type of the [node] nullable.
void nullShortingTermination(ExpressionImpl node,
{bool discardType = false}) {
if (!_isNonNullableByDefault) return;
if (identical(_unfinishedNullShorts.last, node)) {
do {
_unfinishedNullShorts.removeLast();
flowAnalysis.flow!.nullAwareAccess_end();
} while (identical(_unfinishedNullShorts.last, node));
if (node is! CascadeExpression && !discardType) {
node.staticType = typeSystem.makeNullable(node.staticType as TypeImpl);
}
}
}
/// If it is appropriate to do so, override the current type of the static
/// element associated with the given expression with the given type.
/// Generally speaking, it is appropriate if the given type is more specific
/// than the current type.
///
/// @param expression the expression used to access the static element whose
/// types might be overridden
/// @param potentialType the potential type of the elements
/// @param allowPrecisionLoss see @{code overrideVariable} docs
void overrideExpression(Expression expression, DartType potentialType,
bool allowPrecisionLoss, bool setExpressionType) {
// TODO(brianwilkerson) Remove this method.
}
/// Examines the top entry of [_rewriteStack] but does not pop it.
ExpressionImpl? peekRewrite() => _rewriteStack.last;
/// Pops the top entry off of [_rewriteStack].
ExpressionImpl? popRewrite() {
var expression = _rewriteStack.removeLast();
if (_debugRewriteStack) {
assert(_debugPrint('POP ${expression.runtimeType} $expression'));
}
return expression;
}
/// Set information about enclosing declarations.
void prepareEnclosingDeclarations({
InterfaceElement? enclosingClassElement,
ExecutableElement? enclosingExecutableElement,
}) {
enclosingClass = enclosingClassElement;
_thisType = enclosingClass?.thisType;
_enclosingFunction = enclosingExecutableElement;
}
/// We are going to resolve [node], without visiting its parent.
/// Do necessary preparations - set enclosing elements, scopes, etc.
/// This [ResolverVisitor] instance is fresh, just created.
///
/// Return `true` if we were able to do this, or `false` if it is not
/// possible to resolve only [node].
bool prepareForResolving(AstNode node) {
var parent = node.parent;
if (parent is CompilationUnit) {
return node is ClassDeclaration ||
node is Directive ||
node is ExtensionDeclaration ||
node is FunctionDeclaration ||
node is TopLevelVariableDeclaration;
}
void forClassElement(InterfaceElement parentElement) {
enclosingClass = parentElement;
}
if (parent is ClassDeclaration) {
forClassElement(parent.declaredElement!);
return true;
}
if (parent is ExtensionDeclaration) {
enclosingExtension = parent.declaredElement!;
return true;
}
if (parent is MixinDeclaration) {
forClassElement(parent.declaredElement!);
return true;
}
return false;
}
/// Pushes an entry onto [_rewriteStack].
void pushRewrite(ExpressionImpl? expression) {
if (_debugRewriteStack) {
assert(_debugPrint('PUSH ${expression.runtimeType} $expression'));
}
_rewriteStack.add(expression);
}
@override
DartType recordType(
{required List<DartType> positional,
required List<shared.NamedType<DartType>> named}) {
return RecordTypeImpl(
positionalFields: positional.map((type) {
return RecordTypePositionalFieldImpl(type: type);
}).toList(),
namedFields: named.map((namedType) {
return RecordTypeNamedFieldImpl(
name: namedType.name,
type: namedType.type,
);
}).toList(),
nullabilitySuffix: NullabilitySuffix.none,
);
}
/// Replaces the expression [oldNode] with [newNode], updating the node's
/// parent as appropriate.
///
/// If [newNode] is the parent of [oldNode] already (because [newNode] became
/// the parent of [oldNode] in its constructor), this action will loop
/// infinitely; pass [oldNode]'s previous parent as [parent] to avoid this.
void replaceExpression(Expression oldNode, ExpressionImpl newNode,
{AstNode? parent}) {
assert(() {
assert(_replacements[oldNode] == null);
_replacements[oldNode] = newNode;
return true;
}());
if (_rewriteStack.isNotEmpty && identical(peekRewrite(), oldNode)) {
if (_debugRewriteStack) {
assert(_debugPrint('REPLACE ${newNode.runtimeType} $newNode'));
}
_rewriteStack.last = newNode;
}
NodeReplacer.replace(oldNode, newNode, parent: parent);
}
void resolveAssignedVariablePattern({
required AssignedVariablePatternImpl node,
required SharedMatchContext context,
}) {
final element = node.element;
if (element is! PromotableElement) {
return;
}
if (element.isFinal) {
final flow = this.flow;
if (element.isLate) {
if (flow.isAssigned(element)) {
errorReporter.reportErrorForToken(
CompileTimeErrorCode.LATE_FINAL_LOCAL_ALREADY_ASSIGNED,
node.name,
);
}
} else {
if (!flow.isUnassigned(element)) {
errorReporter.reportErrorForToken(
CompileTimeErrorCode.ASSIGNMENT_TO_FINAL_LOCAL,
node.name,
[node.name.lexeme],
);
}
}
}
analyzeAssignedVariablePattern(context, node, element);
}
/// Resolve LHS [node] of an assignment, an explicit [AssignmentExpression],
/// or implicit [PrefixExpression] or [PostfixExpression].
PropertyElementResolverResult resolveForWrite({
required Expression node,
required bool hasRead,
}) {
if (node is IndexExpression) {
var target = node.target;
if (target != null) {
analyzeExpression(target, null);
popRewrite();
}
startNullAwareIndexExpression(node);
var result = _propertyElementResolver.resolveIndexExpression(
node: node,
hasRead: hasRead,
hasWrite: true,
);
analyzeExpression(node.index, result.indexContextType);
popRewrite();
var whyNotPromoted = flowAnalysis.flow?.whyNotPromoted(node.index);
checkIndexExpressionIndex(
node.index,
readElement: hasRead ? result.readElement as ExecutableElement? : null,
writeElement: result.writeElement as ExecutableElement?,
whyNotPromoted: whyNotPromoted,
);
return result;
} else if (node is PrefixedIdentifierImpl) {
final prefix = node.prefix;
prefix.accept(this);
// TODO(scheglov) It would be nice to rewrite all such cases.
if (prefix.staticType is RecordType) {
final propertyAccess = PropertyAccessImpl(
target: prefix,
operator: node.period,
propertyName: node.identifier,
);
NodeReplacer.replace(node, propertyAccess);
return resolveForWrite(
node: propertyAccess,
hasRead: hasRead,
);
}
return _propertyElementResolver.resolvePrefixedIdentifier(
node: node,
hasRead: hasRead,
hasWrite: true,
);
} else if (node is PropertyAccess) {
node.target?.accept(this);
startNullAwarePropertyAccess(node);
return _propertyElementResolver.resolvePropertyAccess(
node: node,
hasRead: hasRead,
hasWrite: true,
);
} else if (node is SimpleIdentifierImpl) {
var result = _propertyElementResolver.resolveSimpleIdentifier(
node: node,
hasRead: hasRead,
hasWrite: true,
);
if (hasRead && result.readElementRequested == null) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.UNDEFINED_IDENTIFIER,
node,
[node.name],
);
}
return result;
} else {
analyzeExpression(node, null);
popRewrite();
return PropertyElementResolverResult();
}
}
void resolveMapPattern({
required MapPatternImpl node,
required SharedMatchContext context,
}) {
shared.MapPatternTypeArguments<DartType>? typeArguments;
var typeArgumentsList = node.typeArguments;
if (typeArgumentsList != null) {
typeArgumentsList.accept(this);
// Check that we have exactly two type arguments.
var length = typeArgumentsList.arguments.length;
if (length == 2) {
typeArguments = shared.MapPatternTypeArguments(
keyType: typeArgumentsList.arguments[0].typeOrThrow,
valueType: typeArgumentsList.arguments[1].typeOrThrow,
);
} else {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.EXPECTED_TWO_MAP_PATTERN_TYPE_ARGUMENTS,
typeArgumentsList,
[length],
);
}
}
node.requiredType = analyzeMapPattern(
context,
node,
typeArguments: typeArguments,
elements: node.elements,
).requiredType;
}
@override
DartType resolveObjectPatternPropertyGet({
required DartType receiverType,
required covariant SharedPatternField field,
}) {
var fieldNode = field.node;
var nameToken = fieldNode.name?.name;
nameToken ??= field.pattern.variablePattern?.name;
if (nameToken == null) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.MISSING_OBJECT_PATTERN_GETTER_NAME,
fieldNode,
);
return typeProvider.dynamicType;
}
var result = typePropertyResolver.resolve(
receiver: null,
receiverType: receiverType,
name: nameToken.lexeme,
propertyErrorEntity: nameToken,
nameErrorEntity: nameToken,
);
if (result.needsGetterError) {
errorReporter.reportErrorForToken(
CompileTimeErrorCode.UNDEFINED_GETTER,
nameToken,
[nameToken.lexeme, receiverType],
);
}
var getter = result.getter;
if (getter != null) {
fieldNode.element = getter;
if (getter is PropertyAccessorElement) {
return getter.returnType;
} else {
return getter.type;
}
}
var recordField = result.recordField;
if (recordField != null) {
return recordField.type;
}
return typeProvider.dynamicType;
}
@override
RelationalOperatorResolution<DartType>? resolveRelationalPatternOperator(
covariant RelationalPatternImpl node,
DartType matchedType,
) {
var operatorLexeme = node.operator.lexeme;
RelationalOperatorKind kind;
String methodName;
if (operatorLexeme == '==') {
kind = RelationalOperatorKind.equals;
methodName = '==';
} else if (operatorLexeme == '!=') {
kind = RelationalOperatorKind.notEquals;
methodName = '==';
} else {
kind = RelationalOperatorKind.other;
methodName = operatorLexeme;
}
var result = typePropertyResolver.resolve(
receiver: null,
receiverType: matchedType,
name: methodName,
propertyErrorEntity: node.operator,
nameErrorEntity: node,
parentNode: node,
);
if (result.needsGetterError) {
errorReporter.reportErrorForToken(
CompileTimeErrorCode.UNDEFINED_OPERATOR,
node.operator,
[methodName, matchedType],
);
}
var element = result.getter as MethodElement?;
node.element = element;
if (element == null) {
return null;
}
var parameterType = element.firstParameterType;
if (parameterType == null) {
return null;
}
return RelationalOperatorResolution(
kind: kind,
parameterType: parameterType,
returnType: element.returnType,
);
}
void setReadElement(Expression node, Element? element) {
DartType readType = DynamicTypeImpl.instance;
if (node is IndexExpression) {
if (element is MethodElement) {
readType = element.returnType;
}
} else if (node is PrefixedIdentifier ||
node is PropertyAccess ||
node is SimpleIdentifier) {
if (element is PropertyAccessorElement && element.isGetter) {
readType = element.returnType;
} else if (element is VariableElement) {
readType = localVariableTypeProvider.getType(node as SimpleIdentifier,
isRead: true);
}
}
var parent = node.parent;
if (parent is AssignmentExpressionImpl && parent.leftHandSide == node) {
parent.readElement = element;
parent.readType = readType;
} else if (parent is PostfixExpressionImpl &&
parent.operator.type.isIncrementOperator) {
parent.readElement = element;
parent.readType = readType;
} else if (parent is PrefixExpressionImpl &&
parent.operator.type.isIncrementOperator) {
parent.readElement = element;
parent.readType = readType;
}
}
@visibleForTesting
void setThisInterfaceType(InterfaceType thisType) {
_thisType = thisType;
}
@override
void setVariableType(PromotableElement variable, DartType type) {
if (variable is LocalVariableElementImpl) {
variable.type = type;
} else {
throw UnimplementedError('TODO(paulberry)');
}
}
void setWriteElement(Expression node, Element? element) {
DartType writeType = DynamicTypeImpl.instance;
if (node is IndexExpression) {
if (element is MethodElement) {
var parameters = element.parameters;
if (parameters.length == 2) {
writeType = parameters[1].type;
}
}
} else if (node is PrefixedIdentifier ||
node is PropertyAccess ||
node is SimpleIdentifier) {
if (element is PropertyAccessorElement && element.isSetter) {
if (element.isSynthetic) {
writeType = element.variable.type;
} else {
var parameters = element.parameters;
if (parameters.length == 1) {
writeType = parameters[0].type;
}
}
} else if (element is VariableElement) {
writeType = element.type;
}
}
var parent = node.parent;
if (parent is AssignmentExpressionImpl && parent.leftHandSide == node) {
parent.writeElement = element;
parent.writeType = writeType;
} else if (parent is PostfixExpressionImpl &&
parent.operator.type.isIncrementOperator) {
parent.writeElement = element;
parent.writeType = writeType;
} else if (parent is PrefixExpressionImpl &&
parent.operator.type.isIncrementOperator) {
parent.writeElement = element;
parent.writeType = writeType;
}
}
void startNullAwareIndexExpression(IndexExpression node) {
if (_migratableAstInfoProvider.isIndexExpressionNullAware(node)) {
var flow = flowAnalysis.flow;
if (flow != null) {
flow.nullAwareAccess_rightBegin(node.target,
node.realTarget.staticType ?? typeProvider.dynamicType);
_unfinishedNullShorts.add(node.nullShortingTermination);
}
}
}
void startNullAwarePropertyAccess(PropertyAccess node) {
if (_migratableAstInfoProvider.isPropertyAccessNullAware(node)) {
var flow = flowAnalysis.flow;
if (flow != null) {
var target = node.target;
if (target is SimpleIdentifier &&
target.staticElement is InterfaceElement) {
// `?.` to access static methods is equivalent to `.`, so do nothing.
} else {
flow.nullAwareAccess_rightBegin(
target, node.realTarget.staticType ?? typeProvider.dynamicType);
_unfinishedNullShorts.add(node.nullShortingTermination);
}
}
}
}
@override
DartType streamType(DartType elementType) {
return typeProvider.streamType(elementType);
}
/// Returns the result of an implicit `this.` lookup for the identifier string
/// [id] in a getter context, or `null` if no match was found.
LexicalLookupResult? thisLookupGetter(SimpleIdentifier node) {
return ThisLookup.lookupGetter(this, node);
}
/// Returns the result of an implicit `this.` lookup for the identifier string
/// [id] in a setter context, or `null` if no match was found.
LexicalLookupResult? thisLookupSetter(SimpleIdentifier node) {
return ThisLookup.lookupSetter(this, node);
}
/// If in a legacy library, return the legacy view on the [element].
/// Otherwise, return the original element.
T toLegacyElement<T extends Element?>(T element) {
if (_isNonNullableByDefault) return element;
if (element == null) return element;
return Member.legacy(element) as T;
}
/// If in a legacy library, return the legacy version of the [type].
/// Otherwise, return the original type.
DartType toLegacyTypeIfOptOut(DartType type) {
if (_isNonNullableByDefault) return type;
return NullabilityEliminator.perform(typeProvider, type);
}
@override
DartType variableTypeFromInitializerType(DartType type) {
if (type.isDartCoreNull) {
return DynamicTypeImpl.instance;
}
return typeSystem.demoteType(type);
}
@override
void visitAdjacentStrings(AdjacentStrings node, {DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitAdjacentStrings(node as AdjacentStringsImpl,
contextType: contextType);
}
@override
void visitAnnotation(covariant AnnotationImpl node) {
// Annotations can contain expressions, so we need flow analysis to be
// available to process those expressions.
var isTopLevel = flowAnalysis.flow == null;
if (isTopLevel) {
flowAnalysis.topLevelDeclaration_enter(node, null);
}
assert(flowAnalysis.flow != null);
var whyNotPromotedList = <Map<DartType, NonPromotionReason> Function()>[];
_annotationResolver.resolve(node, whyNotPromotedList);
var arguments = node.arguments;
if (arguments != null) {
checkForArgumentTypesNotAssignableInList(arguments, whyNotPromotedList);
}
if (isTopLevel) {
flowAnalysis.topLevelDeclaration_exit();
}
}
@override
void visitAsExpression(
covariant AsExpressionImpl node, {
DartType? contextType,
}) {
checkUnreachableNode(node);
analyzeExpression(node.expression, null);
popRewrite();
node.type.accept(this);
typeAnalyzer.visitAsExpression(node, contextType: contextType);
flowAnalysis.asExpression(node);
_insertImplicitCallReference(
insertGenericFunctionInstantiation(node, contextType: contextType),
contextType: contextType);
var expression = node.expression;
var staticType = node.staticType;
if (staticType != null && expression is SimpleIdentifier) {
var simpleIdentifier = expression as SimpleIdentifier;
var element = simpleIdentifier.staticElement;
if (element is PromotableElement &&
!expression.typeOrThrow.isDartCoreNull &&
typeSystem.isNullable(element.type) &&
typeSystem.isNonNullable(staticType) &&
flowAnalysis.isDefinitelyUnassigned(simpleIdentifier, element)) {
errorReporter.reportErrorForNode(
WarningCode.CAST_FROM_NULLABLE_ALWAYS_FAILS,
simpleIdentifier,
[simpleIdentifier.name],
);
}
}
}
@override
void visitAssertInitializer(AssertInitializer node) {
flowAnalysis.flow?.assert_begin();
analyzeExpression(node.condition, typeProvider.boolType);
popRewrite();
boolExpressionVerifier.checkForNonBoolExpression(
node.condition,
errorCode: CompileTimeErrorCode.NON_BOOL_EXPRESSION,
whyNotPromoted: flowAnalysis.flow?.whyNotPromoted(node.condition),
);
flowAnalysis.flow?.assert_afterCondition(node.condition);
node.message?.accept(this);
flowAnalysis.flow?.assert_end();
}
@override
void visitAssertStatement(AssertStatement node) {
checkUnreachableNode(node);
flowAnalysis.flow?.assert_begin();
analyzeExpression(node.condition, typeProvider.boolType);
popRewrite();
boolExpressionVerifier.checkForNonBoolExpression(
node.condition,
errorCode: CompileTimeErrorCode.NON_BOOL_EXPRESSION,
whyNotPromoted: flowAnalysis.flow?.whyNotPromoted(node.condition),
);
flowAnalysis.flow?.assert_afterCondition(node.condition);
node.message?.accept(this);
flowAnalysis.flow?.assert_end();
}
@override
void visitAssignmentExpression(AssignmentExpression node,
{DartType? contextType}) {
checkUnreachableNode(node);
_assignmentExpressionResolver.resolve(node as AssignmentExpressionImpl,
contextType: contextType);
_insertImplicitCallReference(
insertGenericFunctionInstantiation(node, contextType: contextType),
contextType: contextType);
}
@override
void visitAugmentationImportDirective(
covariant AugmentationImportDirectiveImpl node,
) {
node.visitChildren(this);
elementResolver.visitAugmentationImportDirective(node);
}
@override
void visitAwaitExpression(AwaitExpression node, {DartType? contextType}) {
DartType? futureUnion;
if (contextType != null) {
futureUnion = _createFutureOr(contextType);
}
checkUnreachableNode(node);
analyzeExpression(node.expression, futureUnion);
popRewrite();
typeAnalyzer.visitAwaitExpression(node as AwaitExpressionImpl,
contextType: contextType);
_insertImplicitCallReference(
insertGenericFunctionInstantiation(node, contextType: contextType),
contextType: contextType);
}
@override
void visitBinaryExpression(BinaryExpression node, {DartType? contextType}) {
checkUnreachableNode(node);
var migrationResolutionHooks = this.migrationResolutionHooks;
if (migrationResolutionHooks != null) {
migrationResolutionHooks.reportBinaryExpressionContext(node, contextType);
}
_binaryExpressionResolver.resolve(node as BinaryExpressionImpl,
contextType: contextType);
_insertImplicitCallReference(
insertGenericFunctionInstantiation(node, contextType: contextType),
contextType: contextType);
}
@override
void visitBlock(Block node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
DartType visitBlockFunctionBody(BlockFunctionBody node,
{DartType? imposedType}) {
try {
inferenceContext.pushFunctionBodyContext(node, imposedType);
_thisAccessTracker.enterFunctionBody(node);
checkUnreachableNode(node);
node.visitChildren(this);
} finally {
_thisAccessTracker.exitFunctionBody(node);
imposedType = inferenceContext.popFunctionBodyContext(node);
}
return imposedType;
}
@override
void visitBooleanLiteral(BooleanLiteral node, {DartType? contextType}) {
flowAnalysis.flow?.booleanLiteral(node, node.value);
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitBooleanLiteral(node as BooleanLiteralImpl,
contextType: contextType);
}
@override
void visitBreakStatement(BreakStatement node) {
//
// We do not visit the label because it needs to be visited in the context
// of the statement.
//
checkUnreachableNode(node);
flowAnalysis.breakStatement(node);
}
@override
void visitCascadeExpression(covariant CascadeExpressionImpl node,
{DartType? contextType}) {
checkUnreachableNode(node);
analyzeExpression(node.target, contextType);
popRewrite();
if (node.isNullAware) {
flowAnalysis.flow!.nullAwareAccess_rightBegin(
node.target, node.target.staticType ?? typeProvider.dynamicType);
_unfinishedNullShorts.add(node.nullShortingTermination);
}
node.cascadeSections.accept(this);
typeAnalyzer.visitCascadeExpression(node, contextType: contextType);
nullShortingTermination(node);
_insertImplicitCallReference(node, contextType: contextType);
nullSafetyDeadCodeVerifier.verifyCascadeExpression(node);
}
@override
void visitCatchClause(CatchClause node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitCatchClauseParameter(CatchClauseParameter node) {
node.visitChildren(this);
}
@override
void visitClassDeclaration(ClassDeclaration node) {
//
// Continue the class resolution.
//
var outerType = enclosingClass;
try {
enclosingClass = node.declaredElement;
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitClassDeclaration(node);
} finally {
enclosingClass = outerType;
}
baseOrFinalTypeVerifier.checkElement(
node.declaredElement as ClassOrMixinElementImpl, node.implementsClause);
}
@override
void visitClassTypeAlias(ClassTypeAlias node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitClassTypeAlias(node);
baseOrFinalTypeVerifier.checkElement(
node.declaredElement as ClassOrMixinElementImpl, node.implementsClause);
}
@override
void visitComment(Comment node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitCommentReference(CommentReference node) {
//
// We do not visit the expression because it needs to be visited in the
// context of the reference.
//
elementResolver.visitCommentReference(node);
}
@override
void visitCompilationUnit(CompilationUnit node) {
NodeList<Directive> directives = node.directives;
int directiveCount = directives.length;
for (int i = 0; i < directiveCount; i++) {
directives[i].accept(this);
}
NodeList<CompilationUnitMember> declarations = node.declarations;
int declarationCount = declarations.length;
for (int i = 0; i < declarationCount; i++) {
declarations[i].accept(this);
}
checkIdle();
}
@override
void visitConditionalExpression(ConditionalExpression node,
{DartType? contextType}) {
checkUnreachableNode(node);
Expression condition = node.condition;
var flow = flowAnalysis.flow;
flow?.conditional_conditionBegin();
analyzeExpression(node.condition, typeProvider.boolType);
condition = popRewrite()!;
var whyNotPromoted = flowAnalysis.flow?.whyNotPromoted(condition);
boolExpressionVerifier.checkForNonBoolCondition(condition,
whyNotPromoted: whyNotPromoted);
if (flow != null) {
flow.conditional_thenBegin(condition, node);
checkUnreachableNode(node.thenExpression);
}
analyzeExpression(node.thenExpression, contextType);
popRewrite();
nullSafetyDeadCodeVerifier.flowEnd(node.thenExpression);
Expression elseExpression = node.elseExpression;
if (flow != null) {
flow.conditional_elseBegin(node.thenExpression);
checkUnreachableNode(elseExpression);
analyzeExpression(elseExpression, contextType);
flow.conditional_end(node, elseExpression);
nullSafetyDeadCodeVerifier.flowEnd(elseExpression);
} else {
analyzeExpression(elseExpression, contextType);
}
elseExpression = popRewrite()!;
typeAnalyzer.visitConditionalExpression(node as ConditionalExpressionImpl,
contextType: contextType);
_insertImplicitCallReference(node, contextType: contextType);
}
@override
void visitConfiguration(Configuration node) {
// Don't visit the children. For the time being we don't resolve anything
// inside the configuration.
}
@override
void visitConstructorDeclaration(covariant ConstructorDeclarationImpl node) {
flowAnalysis.topLevelDeclaration_enter(node, node.parameters);
flowAnalysis.executableDeclaration_enter(node, node.parameters,
isClosure: false);
var returnType = node.declaredElement!.type.returnType;
var outerFunction = _enclosingFunction;
try {
_enclosingFunction = node.declaredElement;
assert(_thisType == null);
_setupThisType();
checkUnreachableNode(node);
node.documentationComment?.accept(this);
node.metadata.accept(this);
node.returnType.accept(this);
node.parameters.accept(this);
node.initializers.accept(this);
node.redirectedConstructor?.accept(this);
node.body.resolve(this, returnType.isDynamic ? null : returnType);
elementResolver.visitConstructorDeclaration(node);
} finally {
_enclosingFunction = outerFunction;
_thisType = null;
}
if (node.factoryKeyword != null) {
checkForBodyMayCompleteNormally(
body: node.body,
errorNode: node,
);
}
flowAnalysis.executableDeclaration_exit(node.body, false);
flowAnalysis.topLevelDeclaration_exit();
nullSafetyDeadCodeVerifier.flowEnd(node);
}
@override
void visitConstructorFieldInitializer(ConstructorFieldInitializer node) {
//
// We visit the expression, but do not visit the field name because it needs
// to be visited in the context of the constructor field initializer node.
//
var fieldElement = enclosingClass!.getField(node.fieldName.name);
var fieldType = fieldElement?.type;
var expression = node.expression;
analyzeExpression(expression, fieldType);
expression = popRewrite()!;
var whyNotPromoted = flowAnalysis.flow?.whyNotPromoted(expression);
elementResolver.visitConstructorFieldInitializer(
node as ConstructorFieldInitializerImpl);
if (fieldElement != null) {
var enclosingConstructor = enclosingFunction as ConstructorElement;
checkForFieldInitializerNotAssignable(node, fieldElement,
isConstConstructor: enclosingConstructor.isConst,
whyNotPromoted: whyNotPromoted);
}
}
@override
void visitConstructorName(ConstructorName node) {
node.type.accept(this);
elementResolver.visitConstructorName(node as ConstructorNameImpl);
}
@override
void visitConstructorReference(covariant ConstructorReferenceImpl node,
{DartType? contextType}) {
_constructorReferenceResolver.resolve(node, contextType: contextType);
_insertImplicitCallReference(node, contextType: contextType);
}
@override
void visitConstructorSelector(ConstructorSelector node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitContinueStatement(ContinueStatement node) {
//
// We do not visit the label because it needs to be visited in the context
// of the statement.
//
checkUnreachableNode(node);
flowAnalysis.continueStatement(node);
}
@override
void visitDeclaredIdentifier(DeclaredIdentifier node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitDeclaredIdentifier(node);
}
@override
void visitDefaultFormalParameter(DefaultFormalParameter node) {
checkUnreachableNode(node);
node.parameter.accept(this);
var defaultValue = node.defaultValue;
if (defaultValue != null) {
analyzeExpression(defaultValue, node.declaredElement?.type);
popRewrite();
}
ParameterElement element = node.declaredElement!;
if (element is DefaultParameterElementImpl && node.isOfLocalFunction) {
element.constantInitializer = defaultValue;
}
}
@override
void visitDoStatement(DoStatement node) {
checkUnreachableNode(node);
var condition = node.condition;
flowAnalysis.flow?.doStatement_bodyBegin(node);
node.body.accept(this);
flowAnalysis.flow?.doStatement_conditionBegin();
analyzeExpression(condition, typeProvider.boolType);
condition = popRewrite()!;
var whyNotPromoted = flowAnalysis.flow?.whyNotPromoted(condition);
boolExpressionVerifier.checkForNonBoolCondition(condition,
whyNotPromoted: whyNotPromoted);
flowAnalysis.flow?.doStatement_end(condition);
}
@override
void visitDoubleLiteral(DoubleLiteral node, {DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitDoubleLiteral(node as DoubleLiteralImpl,
contextType: contextType);
}
@override
DartType visitEmptyFunctionBody(EmptyFunctionBody node,
{DartType? imposedType}) {
if (!resolveOnlyCommentInFunctionBody) {
checkUnreachableNode(node);
node.visitChildren(this);
}
return imposedType ?? typeProvider.dynamicType;
}
@override
void visitEmptyStatement(EmptyStatement node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitEnumConstantArguments(EnumConstantArguments node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitEnumConstantDeclaration(EnumConstantDeclaration node) {
node as EnumConstantDeclarationImpl;
node.documentationComment?.accept(this);
node.metadata.accept(this);
checkUnreachableNode(node);
var element = node.declaredElement as ConstFieldElementImpl;
var initializer = element.constantInitializer;
if (initializer is InstanceCreationExpression) {
var constructorName = initializer.constructorName;
var constructorElement = constructorName.staticElement;
if (constructorElement != null) {
node.constructorElement = constructorElement;
if (!constructorElement.isConst && constructorElement.isFactory) {
final errorTarget =
node.arguments?.constructorSelector?.name ?? node.name;
errorReporter.reportErrorForOffset(
CompileTimeErrorCode.ENUM_CONSTANT_WITH_NON_CONST_CONSTRUCTOR,
errorTarget.offset,
errorTarget.length,
);
}
} else {
var typeName = constructorName.type.name;
if (typeName.staticElement is EnumElementImpl) {
var nameNode = node.arguments?.constructorSelector?.name;
if (nameNode != null) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.UNDEFINED_ENUM_CONSTRUCTOR_NAMED,
nameNode,
[nameNode.name],
);
} else {
errorReporter.reportErrorForToken(
CompileTimeErrorCode.UNDEFINED_ENUM_CONSTRUCTOR_UNNAMED,
node.name,
);
}
}
}
if (constructorElement != null) {
var arguments = node.arguments;
if (arguments != null) {
var argumentList = arguments.argumentList;
argumentList.correspondingStaticParameters =
ResolverVisitor.resolveArgumentsToParameters(
argumentList: argumentList,
parameters: constructorElement.parameters,
errorReporter: errorReporter,
);
for (var argument in argumentList.arguments) {
analyzeExpression(argument, argument.staticParameterElement?.type);
popRewrite();
}
arguments.typeArguments?.accept(this);
var whyNotPromotedList =
<Map<DartType, NonPromotionReason> Function()>[];
checkForArgumentTypesNotAssignableInList(
argumentList, whyNotPromotedList);
} else if (definingLibrary.featureSet
.isEnabled(Feature.enhanced_enums)) {
var requiredParameterCount = constructorElement.parameters
.where((e) => e.isRequiredPositional)
.length;
if (requiredParameterCount != 0) {
_reportNotEnoughPositionalArguments(
token: node.name,
requiredParameterCount: requiredParameterCount,
actualArgumentCount: 0,
nameNode: node,
errorReporter: errorReporter);
}
}
}
}
elementResolver.visitEnumConstantDeclaration(node);
}
@override
void visitEnumDeclaration(EnumDeclaration node) {
//
// Continue the enum resolution.
//
var outerType = enclosingClass;
try {
enclosingClass = node.declaredElement;
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitEnumDeclaration(node);
} finally {
enclosingClass = outerType;
}
}
@override
void visitExportDirective(ExportDirective node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitExportDirective(node);
}
@override
DartType visitExpressionFunctionBody(ExpressionFunctionBody node,
{DartType? imposedType}) {
if (resolveOnlyCommentInFunctionBody) {
return imposedType ?? typeProvider.dynamicType;
}
try {
inferenceContext.pushFunctionBodyContext(node, imposedType);
_thisAccessTracker.enterFunctionBody(node);
checkUnreachableNode(node);
analyzeExpression(
node.expression,
inferenceContext.bodyContext!.contextType,
);
popRewrite();
flowAnalysis.flow?.handleExit();
inferenceContext.bodyContext!.addReturnExpression(node.expression);
} finally {
_thisAccessTracker.exitFunctionBody(node);
imposedType = inferenceContext.popFunctionBodyContext(node);
}
return imposedType;
}
@override
void visitExpressionStatement(ExpressionStatement node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitExtendsClause(ExtendsClause node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitExtensionDeclaration(ExtensionDeclaration node) {
var outerExtension = enclosingExtension;
try {
enclosingExtension = node.declaredElement!;
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitExtensionDeclaration(node);
} finally {
enclosingExtension = outerExtension;
}
}
@override
void visitExtensionOverride(covariant ExtensionOverrideImpl node,
{DartType? contextType}) {
var whyNotPromotedList = <Map<DartType, NonPromotionReason> Function()>[];
node.extensionName.accept(this);
node.typeArguments?.accept(this);
var receiverContextType =
ExtensionMemberResolver(this).computeOverrideReceiverContextType(node);
InvocationInferrer<ExtensionOverrideImpl>(
resolver: this,
node: node,
argumentList: node.argumentList,
contextType: null,
whyNotPromotedList: whyNotPromotedList)
.resolveInvocation(
rawType: receiverContextType == null
? null
: FunctionTypeImpl(
typeFormals: const [],
parameters: [
ParameterElementImpl.synthetic(
null, receiverContextType, ParameterKind.REQUIRED)
],
returnType: DynamicTypeImpl.instance,
nullabilitySuffix: NullabilitySuffix.none));
extensionResolver.resolveOverride(node, whyNotPromotedList);
}
@override
void visitFieldDeclaration(FieldDeclaration node) {
_thisAccessTracker.enterFieldDeclaration(node);
try {
assert(_thisType == null);
_setupThisType();
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitFieldDeclaration(node);
} finally {
_thisAccessTracker.exitFieldDeclaration(node);
_thisType = null;
}
}
@override
void visitFieldFormalParameter(FieldFormalParameter node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitFieldFormalParameter(node);
}
@override
void visitForElement(ForElement node, {CollectionLiteralContext? context}) {
_forResolver.resolveElement(node as ForElementImpl, context);
}
@override
void visitFormalParameterList(FormalParameterList node) {
// Formal parameter lists can contain default values, which in turn contain
// expressions, so we need flow analysis to be available to process those
// expressions.
var isTopLevel = flowAnalysis.flow == null;
if (isTopLevel) {
flowAnalysis.topLevelDeclaration_enter(node, null);
}
checkUnreachableNode(node);
node.visitChildren(this);
if (isTopLevel) {
flowAnalysis.topLevelDeclaration_exit();
}
}
@override
void visitForStatement(ForStatement node) {
checkUnreachableNode(node);
_forResolver.resolveStatement(node as ForStatementImpl);
nullSafetyDeadCodeVerifier.flowEnd(node.body);
}
@override
void visitFunctionDeclaration(FunctionDeclaration node) {
bool isLocal = node.parent is FunctionDeclarationStatement;
if (isLocal) {
flowAnalysis.flow!.functionExpression_begin(node);
} else {
flowAnalysis.topLevelDeclaration_enter(
node, node.functionExpression.parameters);
}
flowAnalysis.executableDeclaration_enter(
node,
node.functionExpression.parameters,
isClosure: isLocal,
);
var functionType = node.declaredElement!.type;
var outerFunction = _enclosingFunction;
try {
_enclosingFunction = node.declaredElement;
checkUnreachableNode(node);
node.documentationComment?.accept(this);
node.metadata.accept(this);
node.returnType?.accept(this);
analyzeExpression(node.functionExpression, functionType);
popRewrite();
elementResolver.visitFunctionDeclaration(node);
} finally {
_enclosingFunction = outerFunction;
}
if (!node.isSetter) {
checkForBodyMayCompleteNormally(
body: node.functionExpression.body,
errorNode: node.name,
);
}
flowAnalysis.executableDeclaration_exit(
node.functionExpression.body,
isLocal,
);
if (isLocal) {
flowAnalysis.flow!.functionExpression_end();
} else {
flowAnalysis.topLevelDeclaration_exit();
}
nullSafetyDeadCodeVerifier.flowEnd(node);
}
@override
void visitFunctionDeclarationStatement(FunctionDeclarationStatement node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitFunctionExpression(covariant FunctionExpressionImpl node,
{DartType? contextType}) {
var outerFunction = _enclosingFunction;
_enclosingFunction = node.declaredElement;
_functionExpressionResolver.resolve(node, contextType: contextType);
insertGenericFunctionInstantiation(node, contextType: contextType);
_enclosingFunction = outerFunction;
}
@override
void visitFunctionExpressionInvocation(
covariant FunctionExpressionInvocationImpl node, {
DartType? contextType,
}) {
analyzeExpression(node.function, null);
node.function = popRewrite()!;
var whyNotPromotedList = <Map<DartType, NonPromotionReason> Function()>[];
_functionExpressionInvocationResolver.resolve(node, whyNotPromotedList,
contextType: contextType);
nullShortingTermination(node);
var replacement =
insertGenericFunctionInstantiation(node, contextType: contextType);
checkForArgumentTypesNotAssignableInList(
node.argumentList, whyNotPromotedList);
_insertImplicitCallReference(replacement, contextType: contextType);
}
@override
void visitFunctionReference(FunctionReference node, {DartType? contextType}) {
_functionReferenceResolver.resolve(node as FunctionReferenceImpl);
}
@override
void visitFunctionTypeAlias(FunctionTypeAlias node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitFunctionTypeAlias(node);
}
@override
void visitFunctionTypedFormalParameter(FunctionTypedFormalParameter node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitFunctionTypedFormalParameter(node);
}
@override
void visitGenericFunctionType(GenericFunctionType node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitGenericTypeAlias(GenericTypeAlias node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitGenericTypeAlias(node);
}
@override
void visitHideCombinator(HideCombinator node) {}
@override
void visitIfElement(
covariant IfElementImpl node, {
CollectionLiteralContext? context,
}) {
final caseClause = node.caseClause;
if (caseClause != null) {
var guardedPattern = caseClause.guardedPattern;
analyzeIfCaseElement(
node: node,
expression: node.expression,
pattern: guardedPattern.pattern,
variables: guardedPattern.variables,
guard: guardedPattern.whenClause?.expression,
ifTrue: node.thenElement,
ifFalse: node.elseElement,
context: context,
);
// Stack: (Expression, Guard)
popRewrite(); // guard
popRewrite()!; // expression
} else {
analyzeIfElement(
node: node,
condition: node.expression,
ifTrue: node.thenElement,
ifFalse: node.elseElement,
context: context,
);
}
}
@override
void visitIfStatement(covariant IfStatementImpl node) {
checkUnreachableNode(node);
final caseClause = node.caseClause;
if (caseClause != null) {
var guardedPattern = caseClause.guardedPattern;
analyzeIfCaseStatement(
node,
node.expression,
guardedPattern.pattern,
guardedPattern.whenClause?.expression,
node.thenStatement,
node.elseStatement,
guardedPattern.variables,
);
// Stack: (Expression, Guard)
popRewrite(); // guard
popRewrite()!; // expression
} else {
analyzeIfStatement(
node,
node.expression,
node.thenStatement,
node.elseStatement,
);
}
}
@override
void visitImplementsClause(ImplementsClause node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitImplicitCallReference(ImplicitCallReference node,
{DartType? contextType}) {
checkUnreachableNode(node);
analyzeExpression(node.expression, null);
popRewrite();
node.typeArguments?.accept(this);
}
@override
void visitImportDirective(ImportDirective node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitImportDirective(node as ImportDirectiveImpl);
}
@override
void visitIndexExpression(covariant IndexExpressionImpl node,
{DartType? contextType}) {
checkUnreachableNode(node);
var target = node.target;
if (target != null) {
analyzeExpression(target, null);
popRewrite();
}
startNullAwareIndexExpression(node);
var result = _propertyElementResolver.resolveIndexExpression(
node: node,
hasRead: true,
hasWrite: false,
);
var element = result.readElement;
node.staticElement = element as MethodElement?;
analyzeExpression(node.index, result.indexContextType);
popRewrite();
var whyNotPromoted = flowAnalysis.flow?.whyNotPromoted(node.index);
checkIndexExpressionIndex(
node.index,
readElement: result.readElement as ExecutableElement?,
writeElement: null,
whyNotPromoted: whyNotPromoted,
);
DartType type;
if (identical(node.realTarget.staticType, NeverTypeImpl.instance)) {
type = NeverTypeImpl.instance;
} else if (element is MethodElement) {
type = element.returnType;
} else {
type = DynamicTypeImpl.instance;
}
inferenceHelper.recordStaticType(node, type, contextType: contextType);
var replacement =
insertGenericFunctionInstantiation(node, contextType: contextType);
nullShortingTermination(node);
_insertImplicitCallReference(replacement, contextType: contextType);
nullSafetyDeadCodeVerifier.verifyIndexExpression(node);
}
@override
void visitInstanceCreationExpression(
covariant InstanceCreationExpressionImpl node,
{DartType? contextType}) {
checkUnreachableNode(node);
_instanceCreationExpressionResolver.resolve(node, contextType: contextType);
_insertImplicitCallReference(node, contextType: contextType);
}
@override
void visitIntegerLiteral(IntegerLiteral node, {DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitIntegerLiteral(node as IntegerLiteralImpl,
contextType: contextType);
}
@override
void visitInterpolationExpression(InterpolationExpression node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitInterpolationString(InterpolationString node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitIsExpression(
covariant IsExpressionImpl node, {
DartType? contextType,
}) {
checkUnreachableNode(node);
analyzeExpression(node.expression, null);
popRewrite();
node.type.accept(this);
typeAnalyzer.visitIsExpression(node, contextType: contextType);
flowAnalysis.isExpression(node);
}
@override
void visitLabel(Label node) {}
@override
void visitLabeledStatement(LabeledStatement node) {
flowAnalysis.labeledStatement_enter(node);
checkUnreachableNode(node);
node.visitChildren(this);
flowAnalysis.labeledStatement_exit(node);
}
@override
void visitLibraryAugmentationDirective(LibraryAugmentationDirective node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitLibraryAugmentationDirective(node);
}
@override
void visitLibraryDirective(LibraryDirective node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitLibraryDirective(node);
}
@override
void visitLibraryIdentifier(LibraryIdentifier node,
{DartType? contextType}) {}
@override
void visitListLiteral(covariant ListLiteralImpl node,
{DartType? contextType}) {
checkUnreachableNode(node);
_typedLiteralResolver.resolveListLiteral(node,
contextType: contextType ?? UnknownInferredType.instance);
}
@override
void visitMapLiteralEntry(MapLiteralEntry node,
{CollectionLiteralContext? context}) {
checkUnreachableNode(node);
analyzeExpression(node.key, context?.keyType);
popRewrite();
analyzeExpression(node.value, context?.valueType);
popRewrite();
}
@override
void visitMethodDeclaration(covariant MethodDeclarationImpl node) {
flowAnalysis.topLevelDeclaration_enter(node, node.parameters);
flowAnalysis.executableDeclaration_enter(node, node.parameters,
isClosure: false);
DartType returnType = node.declaredElement!.returnType;
var outerFunction = _enclosingFunction;
try {
_enclosingFunction = node.declaredElement;
assert(_thisType == null);
_setupThisType();
checkUnreachableNode(node);
node.documentationComment?.accept(this);
node.metadata.accept(this);
node.returnType?.accept(this);
node.typeParameters?.accept(this);
node.parameters?.accept(this);
node.body.resolve(this, returnType.isDynamic ? null : returnType);
elementResolver.visitMethodDeclaration(node);
} finally {
_enclosingFunction = outerFunction;
_thisType = null;
}
if (!node.isSetter) {
checkForBodyMayCompleteNormally(
body: node.body,
errorNode: node.name,
);
}
flowAnalysis.executableDeclaration_exit(node.body, false);
flowAnalysis.topLevelDeclaration_exit();
nullSafetyDeadCodeVerifier.flowEnd(node);
}
@override
void visitMethodInvocation(covariant MethodInvocationImpl node,
{DartType? contextType}) {
checkUnreachableNode(node);
var whyNotPromotedList = <Map<DartType, NonPromotionReason> Function()>[];
var target = node.target;
target?.accept(this);
target = node.target;
if (_migratableAstInfoProvider.isMethodInvocationNullAware(node)) {
var flow = flowAnalysis.flow;
if (flow != null) {
if (target is SimpleIdentifierImpl &&
target.staticElement is InterfaceElement) {
// `?.` to access static methods is equivalent to `.`, so do nothing.
} else {
flow.nullAwareAccess_rightBegin(
target, node.realTarget!.staticType ?? typeProvider.dynamicType);
_unfinishedNullShorts.add(node.nullShortingTermination);
}
}
}
node.typeArguments?.accept(this);
elementResolver.visitMethodInvocation(node,
whyNotPromotedList: whyNotPromotedList, contextType: contextType);
var functionRewrite = MethodInvocationResolver.getRewriteResult(node);
if (functionRewrite != null) {
_resolveRewrittenFunctionExpressionInvocation(
functionRewrite, whyNotPromotedList,
contextType: contextType);
nullShortingTermination(node, discardType: true);
} else {
nullShortingTermination(node);
}
var replacement =
insertGenericFunctionInstantiation(node, contextType: contextType);
checkForArgumentTypesNotAssignableInList(
node.argumentList, whyNotPromotedList);
_insertImplicitCallReference(replacement, contextType: contextType);
nullSafetyDeadCodeVerifier.verifyMethodInvocation(node);
}
@override
void visitMixinDeclaration(MixinDeclaration node) {
//
// Continue the class resolution.
//
var outerType = enclosingClass;
try {
enclosingClass = node.declaredElement!;
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitMixinDeclaration(node);
} finally {
enclosingClass = outerType;
}
baseOrFinalTypeVerifier.checkElement(
node.declaredElement as ClassOrMixinElementImpl, node.implementsClause);
}
@override
void visitNamedExpression(NamedExpression node, {DartType? contextType}) {
checkUnreachableNode(node);
node.name.accept(this);
analyzeExpression(node.expression, contextType);
popRewrite();
typeAnalyzer.visitNamedExpression(node as NamedExpressionImpl,
contextType: contextType);
// Any "why not promoted" information that flow analysis had associated with
// `node.expression` now needs to be forwarded to `node`, so that when
// `visitArgumentList` iterates through the arguments, it will find it.
flowAnalysis.flow?.forwardExpression(node, node.expression);
}
@override
void visitNamedType(NamedType node) {
// All TypeName(s) are already resolved, so we don't resolve it here.
// But there might be type arguments with Expression(s), such as default
// values for formal parameters of GenericFunctionType(s). These are
// invalid, but if they exist, they should be resolved.
node.typeArguments?.accept(this);
}
@override
void visitNativeClause(NativeClause node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
DartType visitNativeFunctionBody(NativeFunctionBody node,
{DartType? imposedType}) {
checkUnreachableNode(node);
node.visitChildren(this);
return imposedType ?? typeProvider.dynamicType;
}
@override
void visitNullLiteral(NullLiteral node, {DartType? contextType}) {
flowAnalysis.flow?.nullLiteral(node);
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitNullLiteral(node as NullLiteralImpl,
contextType: contextType);
}
@override
void visitOnClause(OnClause node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitParenthesizedExpression(ParenthesizedExpression node,
{DartType? contextType}) {
checkUnreachableNode(node);
analyzeExpression(node.expression, contextType);
popRewrite();
typeAnalyzer.visitParenthesizedExpression(
node as ParenthesizedExpressionImpl,
contextType: contextType);
flowAnalysis.flow?.parenthesizedExpression(node, node.expression);
}
@override
void visitPartDirective(PartDirective node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitPartDirective(node);
}
@override
void visitPartOfDirective(PartOfDirective node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitPartOfDirective(node);
}
@override
void visitPatternAssignment(covariant PatternAssignmentImpl node) {
checkUnreachableNode(node);
final analysisResult =
analyzePatternAssignment(node, node.pattern, node.expression);
node.patternTypeSchema = analysisResult.patternSchema;
node.staticType = analysisResult.resolveShorting();
popRewrite(); // expression
}
@override
void visitPatternVariableDeclaration(
covariant PatternVariableDeclarationImpl node,
) {
// TODO(scheglov) Support for `late` was removed.
final patternSchema = analyzePatternVariableDeclaration(
node, node.pattern, node.expression,
isFinal: node.keyword.keyword == Keyword.FINAL, isLate: false);
node.patternTypeSchema = patternSchema;
popRewrite(); // expression
}
@override
void visitPatternVariableDeclarationStatement(
PatternVariableDeclarationStatement node) {
checkUnreachableNode(node);
node.declaration.accept(this);
}
@override
void visitPostfixExpression(PostfixExpression node, {DartType? contextType}) {
checkUnreachableNode(node);
_postfixExpressionResolver.resolve(node as PostfixExpressionImpl,
contextType: contextType);
_insertImplicitCallReference(
insertGenericFunctionInstantiation(node, contextType: contextType),
contextType: contextType);
}
@override
void visitPrefixedIdentifier(covariant PrefixedIdentifierImpl node,
{DartType? contextType}) {
checkUnreachableNode(node);
final rewrittenPropertyAccess =
_prefixedIdentifierResolver.resolve(node, contextType: contextType);
if (rewrittenPropertyAccess != null) {
visitPropertyAccess(rewrittenPropertyAccess, contextType: contextType);
// We did record that `node` was replaced with `rewrittenPropertyAccess`.
// But if `rewrittenPropertyAccess` was itself rewritten, replace the
// rewrite result of `node`.
assert(() {
final rewrite = _replacements[rewrittenPropertyAccess];
if (rewrite != null) {
_replacements[node] = rewrite;
}
return true;
}());
return;
}
_insertImplicitCallReference(
insertGenericFunctionInstantiation(node, contextType: contextType),
contextType: contextType);
}
@override
void visitPrefixExpression(PrefixExpression node, {DartType? contextType}) {
checkUnreachableNode(node);
_prefixExpressionResolver.resolve(node as PrefixExpressionImpl,
contextType: contextType);
_insertImplicitCallReference(
insertGenericFunctionInstantiation(node, contextType: contextType),
contextType: contextType);
}
@override
void visitPropertyAccess(covariant PropertyAccessImpl node,
{DartType? contextType}) {
checkUnreachableNode(node);
var target = node.target;
if (target != null) {
analyzeExpression(target, null);
popRewrite();
}
startNullAwarePropertyAccess(node);
var result = _propertyElementResolver.resolvePropertyAccess(
node: node,
hasRead: true,
hasWrite: false,
);
var element = result.readElement;
var propertyName = node.propertyName;
propertyName.staticElement = element;
DartType type;
if (element is MethodElement) {
type = element.type;
} else if (element is PropertyAccessorElement && element.isGetter) {
type = result.getType!;
} else if (result.functionTypeCallType != null) {
type = result.functionTypeCallType!;
} else if (result.recordField != null) {
type = result.recordField!.type;
} else {
type = DynamicTypeImpl.instance;
}
if (!isConstructorTearoffsEnabled) {
// Only perform a generic function instantiation on a [PrefixedIdentifier]
// in pre-constructor-tearoffs code. In constructor-tearoffs-enabled code,
// generic function instantiation is performed at assignability check
// sites.
// TODO(srawlins): Switch all resolution to use the latter method, in a
// breaking change release.
type = inferenceHelper.inferTearOff(node, propertyName, type,
contextType: contextType);
}
inferenceHelper.recordStaticType(propertyName, type, contextType: null);
inferenceHelper.recordStaticType(node, type, contextType: contextType);
var replacement =
insertGenericFunctionInstantiation(node, contextType: contextType);
nullShortingTermination(node);
_insertImplicitCallReference(replacement, contextType: contextType);
nullSafetyDeadCodeVerifier.verifyPropertyAccess(node);
}
@override
void visitRecordLiteral(
covariant RecordLiteralImpl node, {
DartType? contextType,
}) {
checkUnreachableNode(node);
_recordLiteralResolver.resolve(node, contextType: contextType);
}
@override
void visitRecordTypeAnnotation(covariant RecordTypeAnnotationImpl node) {
// All RecordTypeAnnotation(s) are already resolved, so we don't resolve
// it here. But there might be types with Expression(s), such as default
// values for formal parameters of GenericFunctionType(s). These are
// invalid, but if they exist, they should be resolved.
node.visitChildren(this);
}
@override
void visitRecordTypeAnnotationNamedField(
RecordTypeAnnotationNamedField node,
) {
node.visitChildren(this);
elementResolver.visitRecordTypeAnnotationNamedField(node);
}
@override
void visitRecordTypeAnnotationNamedFields(
RecordTypeAnnotationNamedFields node,
) {
node.visitChildren(this);
}
@override
void visitRecordTypeAnnotationPositionalField(
RecordTypeAnnotationPositionalField node,
) {
node.visitChildren(this);
elementResolver.visitRecordTypeAnnotationPositionalField(node);
}
@override
void visitRedirectingConstructorInvocation(
RedirectingConstructorInvocation node) {
//
// We visit the argument list, but do not visit the optional identifier
// because it needs to be visited in the context of the constructor
// invocation.
//
var whyNotPromotedList = <Map<DartType, NonPromotionReason> Function()>[];
elementResolver.visitRedirectingConstructorInvocation(
node as RedirectingConstructorInvocationImpl);
InvocationInferrer<RedirectingConstructorInvocationImpl>(
resolver: this,
node: node,
argumentList: node.argumentList,
contextType: null,
whyNotPromotedList: whyNotPromotedList)
.resolveInvocation(rawType: node.staticElement?.type);
checkForArgumentTypesNotAssignableInList(
node.argumentList, whyNotPromotedList);
}
@override
void visitRethrowExpression(RethrowExpression node, {DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitRethrowExpression(node as RethrowExpressionImpl,
contextType: contextType);
flowAnalysis.flow?.handleExit();
}
@override
void visitReturnStatement(ReturnStatement node) {
checkUnreachableNode(node);
var expression = node.expression;
if (expression != null) {
analyzeExpression(
expression,
inferenceContext.bodyContext?.contextType,
);
// Pick up the expression again in case it was rewritten.
expression = popRewrite();
}
inferenceContext.bodyContext?.addReturnExpression(expression);
flowAnalysis.flow?.handleExit();
}
@override
void visitSetOrMapLiteral(SetOrMapLiteral node, {DartType? contextType}) {
checkUnreachableNode(node);
_typedLiteralResolver.resolveSetOrMapLiteral(node,
contextType: contextType ?? UnknownInferredType.instance);
}
@override
void visitShowCombinator(ShowCombinator node) {}
@override
void visitSimpleFormalParameter(SimpleFormalParameter node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitSimpleFormalParameter(node);
}
@override
void visitSimpleIdentifier(covariant SimpleIdentifierImpl node,
{DartType? contextType}) {
_simpleIdentifierResolver.resolve(node, contextType: contextType);
_insertImplicitCallReference(
insertGenericFunctionInstantiation(node, contextType: contextType),
contextType: contextType);
}
@override
void visitSimpleStringLiteral(SimpleStringLiteral node,
{DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitSimpleStringLiteral(node as SimpleStringLiteralImpl,
contextType: contextType);
}
@override
void visitSpreadElement(SpreadElement node,
{CollectionLiteralContext? context}) {
var iterableType = context?.iterableType;
if (iterableType != null && _isNonNullableByDefault && node.isNullAware) {
iterableType = typeSystem.makeNullable(iterableType);
}
checkUnreachableNode(node);
analyzeExpression(node.expression, iterableType);
popRewrite();
if (!node.isNullAware) {
nullableDereferenceVerifier.expression(
CompileTimeErrorCode.UNCHECKED_USE_OF_NULLABLE_VALUE_IN_SPREAD,
node.expression,
);
}
}
@override
void visitStringInterpolation(StringInterpolation node,
{DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitStringInterpolation(node as StringInterpolationImpl,
contextType: contextType);
}
@override
void visitSuperConstructorInvocation(SuperConstructorInvocation node) {
//
// We visit the argument list, but do not visit the optional identifier
// because it needs to be visited in the context of the constructor
// invocation.
//
var whyNotPromotedList = <Map<DartType, NonPromotionReason> Function()>[];
elementResolver.visitSuperConstructorInvocation(
node as SuperConstructorInvocationImpl);
InvocationInferrer<SuperConstructorInvocationImpl>(
resolver: this,
node: node,
argumentList: node.argumentList,
contextType: null,
whyNotPromotedList: whyNotPromotedList)
.resolveInvocation(rawType: node.staticElement?.type);
checkForArgumentTypesNotAssignableInList(
node.argumentList, whyNotPromotedList);
}
@override
void visitSuperExpression(SuperExpression node, {DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitSuperExpression(node);
typeAnalyzer.visitSuperExpression(node as SuperExpressionImpl,
contextType: contextType);
}
@override
void visitSuperFormalParameter(SuperFormalParameter node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitSwitchExpression(
covariant SwitchExpressionImpl node, {
DartType? contextType,
}) {
analyzeExpression(node, contextType);
popRewrite();
}
@override
void visitSwitchStatement(covariant SwitchStatementImpl node) {
// Stack: ()
checkUnreachableNode(node);
var previousExhaustiveness = legacySwitchExhaustiveness;
analyzeSwitchStatement(node, node.expression, node.memberGroups.length);
// Stack: (Expression)
popRewrite();
// Stack: ()
legacySwitchExhaustiveness = previousExhaustiveness;
}
@override
void visitSymbolLiteral(SymbolLiteral node, {DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitSymbolLiteral(node as SymbolLiteralImpl,
contextType: contextType);
}
@override
void visitThisExpression(ThisExpression node, {DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitThisExpression(node as ThisExpressionImpl,
contextType: contextType);
_insertImplicitCallReference(node, contextType: contextType);
}
@override
void visitThrowExpression(ThrowExpression node, {DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
typeAnalyzer.visitThrowExpression(node as ThrowExpressionImpl,
contextType: contextType);
flowAnalysis.flow?.handleExit();
}
@override
void visitTopLevelVariableDeclaration(TopLevelVariableDeclaration node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitTopLevelVariableDeclaration(node);
}
@override
void visitTryStatement(TryStatement node) {
checkUnreachableNode(node);
var flow = flowAnalysis.flow!;
var body = node.body;
var catchClauses = node.catchClauses;
var finallyBlock = node.finallyBlock;
if (finallyBlock != null) {
flow.tryFinallyStatement_bodyBegin();
}
if (catchClauses.isNotEmpty) {
flow.tryCatchStatement_bodyBegin();
}
body.accept(this);
nullSafetyDeadCodeVerifier.flowEnd(node.body);
nullSafetyDeadCodeVerifier.tryStatementEnter(node);
if (catchClauses.isNotEmpty) {
flow.tryCatchStatement_bodyEnd(body);
var catchLength = catchClauses.length;
for (var i = 0; i < catchLength; ++i) {
var catchClause = catchClauses[i];
nullSafetyDeadCodeVerifier.verifyCatchClause(catchClause);
flow.tryCatchStatement_catchBegin(
catchClause.exceptionParameter?.declaredElement,
catchClause.stackTraceParameter?.declaredElement,
);
catchClause.accept(this);
flow.tryCatchStatement_catchEnd();
nullSafetyDeadCodeVerifier.flowEnd(catchClause.body);
}
flow.tryCatchStatement_end();
}
nullSafetyDeadCodeVerifier.tryStatementExit(node);
if (finallyBlock != null) {
flow.tryFinallyStatement_finallyBegin(
catchClauses.isNotEmpty ? node : body);
finallyBlock.accept(this);
flow.tryFinallyStatement_end();
}
}
@override
void visitTypeArgumentList(TypeArgumentList node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitTypeLiteral(TypeLiteral node, {DartType? contextType}) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitTypeParameter(TypeParameter node) {
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitTypeParameter(node);
}
@override
void visitTypeParameterList(TypeParameterList node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitVariableDeclaration(VariableDeclaration node) {
_variableDeclarationResolver.resolve(node as VariableDeclarationImpl);
var declaredElement = node.declaredElement!;
var initializer = node.initializer;
var parent = node.parent as VariableDeclarationList;
var declaredType = parent.type;
if (initializer != null) {
var initializerStaticType = initializer.typeOrThrow;
flowAnalysis.flow?.initialize(declaredElement as PromotableElement,
initializerStaticType, initializer,
isFinal: parent.isFinal,
isLate: parent.isLate,
isImplicitlyTyped: declaredType == null);
}
_checkTopLevelCycle(node);
}
@override
void visitVariableDeclarationList(VariableDeclarationList node) {
flowAnalysis.variableDeclarationList(node);
checkUnreachableNode(node);
node.visitChildren(this);
elementResolver.visitVariableDeclarationList(node);
}
@override
void visitVariableDeclarationStatement(VariableDeclarationStatement node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitWhileStatement(WhileStatement node) {
checkUnreachableNode(node);
Expression condition = node.condition;
flowAnalysis.flow?.whileStatement_conditionBegin(node);
analyzeExpression(condition, typeProvider.boolType);
condition = popRewrite()!;
var whyNotPromoted = flowAnalysis.flow?.whyNotPromoted(condition);
boolExpressionVerifier.checkForNonBoolCondition(node.condition,
whyNotPromoted: whyNotPromoted);
flowAnalysis.flow?.whileStatement_bodyBegin(node, condition);
node.body.accept(this);
flowAnalysis.flow?.whileStatement_end();
nullSafetyDeadCodeVerifier.flowEnd(node.body);
// TODO(brianwilkerson) If the loop can only be exited because the condition
// is false, then propagateFalseState(condition);
}
@override
void visitWithClause(WithClause node) {
checkUnreachableNode(node);
node.visitChildren(this);
}
@override
void visitYieldStatement(YieldStatement node) {
checkUnreachableNode(node);
_yieldStatementResolver.resolve(node);
}
/// Check whether [errorNode] is an `onError` callback in a
/// [Future.catchError] call, which might return an implicit `null`.
void _checkForFutureCatchErrorOnError(BlockFunctionBody errorNode) {
// Check for "body might complete normally" in a `Future.catchError`'s
//`onError` callback.
final parent = errorNode.parent?.parent;
if (parent is! ArgumentList) {
return;
}
final invocation = parent.parent;
if (invocation is! MethodInvocation) {
return;
}
final targetType = invocation.realTarget?.staticType;
if (invocation.methodName.name == 'catchError' &&
targetType is InterfaceType) {
final instanceOfFuture =
targetType.asInstanceOf(typeProvider.futureElement);
if (instanceOfFuture != null) {
final targetFutureType = instanceOfFuture.typeArguments.first;
final expectedReturnType = typeProvider.futureOrType(targetFutureType);
final returnTypeBase = typeSystem.futureOrBase(expectedReturnType);
if (returnTypeBase is VoidType ||
returnTypeBase.isDynamic ||
returnTypeBase.isDartCoreNull) {
return;
}
errorReporter.reportErrorForToken(
WarningCode.BODY_MIGHT_COMPLETE_NORMALLY_CATCH_ERROR,
errorNode.block.leftBracket,
[returnTypeBase],
);
}
}
}
void _checkTopLevelCycle(VariableDeclaration node) {
var element = node.declaredElement;
if (element is! PropertyInducingElementImpl) {
return;
}
// Errors on const are reported separately with
// [CompileTimeErrorCode.RECURSIVE_COMPILE_TIME_CONSTANT].
if (element.isConst) {
return;
}
var error = element.typeInferenceError;
if (error == null) {
return;
}
if (error.kind == TopLevelInferenceErrorKind.dependencyCycle) {
var argumentsText = error.arguments.join(', ');
errorReporter.reportErrorForToken(CompileTimeErrorCode.TOP_LEVEL_CYCLE,
node.name, [node.name.lexeme, argumentsText]);
}
}
/// Creates a union of `T | Future<T>`, unless `T` is already a
/// future-union, in which case it simply returns `T`.
DartType _createFutureOr(DartType type) {
if (type.isDartAsyncFutureOr) {
return type;
}
return typeProvider.futureOrType(type);
}
/// Helper function used to print information to the console in debug mode.
/// This method returns `true` so that it can be conveniently called inside of
/// an `assert` statement.
bool _debugPrint(String s) {
print(s);
return true;
}
/// Infers type arguments corresponding to [typeParameters] used it the
/// [declaredType], so that thr resulting type is a subtype of [contextType].
List<DartType> _inferTypeArguments({
required List<TypeParameterElement> typeParameters,
required AstNode errorNode,
required DartType declaredType,
required DartType contextType,
}) {
var inferrer = GenericInferrer(
typeSystem,
typeParameters,
errorNode: errorNode,
genericMetadataIsEnabled: genericMetadataIsEnabled,
);
inferrer.constrainReturnType(declaredType, contextType);
return inferrer.upwardsInfer();
}
/// If `expression` should be treated as `expression.call`, inserts an
/// [ImplicitCallReference] node which wraps [expression].
void _insertImplicitCallReference(ExpressionImpl expression,
{required DartType? contextType}) {
var parent = expression.parent;
if (_shouldSkipImplicitCallReferenceDueToForm(expression, parent)) {
return;
}
var staticType = expression.staticType;
if (staticType == null) {
return;
}
DartType? context;
if (parent is AssignmentExpression) {
context = parent.writeType;
} else {
context = contextType;
}
var callMethod = getImplicitCallMethod(staticType, context, expression);
if (callMethod == null || context == null) {
return;
}
// `expression` is to be treated as `expression.call`.
context = typeSystem.flatten(context);
var callMethodType = callMethod.type;
List<DartType> typeArgumentTypes;
if (isConstructorTearoffsEnabled &&
callMethodType.typeFormals.isNotEmpty &&
context is FunctionType) {
typeArgumentTypes = typeSystem.inferFunctionTypeInstantiation(
context,
callMethodType,
errorReporter: errorReporter,
errorNode: expression,
// If the constructor-tearoffs feature is enabled, then so is
// generic-metadata.
genericMetadataIsEnabled: true,
);
if (typeArgumentTypes.isNotEmpty) {
callMethodType = callMethodType.instantiate(typeArgumentTypes);
}
} else {
typeArgumentTypes = [];
}
var callReference = ImplicitCallReferenceImpl(
expression: expression,
staticElement: callMethod,
typeArguments: null,
typeArgumentTypes: typeArgumentTypes,
);
replaceExpression(expression, callReference, parent: parent);
callReference.staticType = callMethodType;
}
/// Continues resolution of a [FunctionExpressionInvocation] that was created
/// from a rewritten [MethodInvocation]. The target function is already
/// resolved.
///
/// The specification says that `target.getter()` should be treated as an
/// ordinary method invocation. So, we need to perform the same null shorting
/// as for method invocations.
void _resolveRewrittenFunctionExpressionInvocation(
FunctionExpressionInvocation node,
List<WhyNotPromotedGetter> whyNotPromotedList,
{required DartType? contextType}) {
var function = node.function;
if (function is PropertyAccess &&
_migratableAstInfoProvider.isPropertyAccessNullAware(function) &&
_isNonNullableByDefault) {
var target = function.target;
if (target is SimpleIdentifier &&
target.staticElement is InterfaceElement) {
// `?.` to access static methods is equivalent to `.`, so do nothing.
} else {
flowAnalysis.flow!.nullAwareAccess_rightBegin(function,
function.realTarget.staticType ?? typeProvider.dynamicType);
_unfinishedNullShorts.add(node.nullShortingTermination);
}
}
_functionExpressionInvocationResolver.resolve(
node as FunctionExpressionInvocationImpl, whyNotPromotedList,
contextType: contextType);
nullShortingTermination(node);
}
void _setupThisType() {
var enclosingClass = this.enclosingClass;
if (enclosingClass != null) {
_thisType = enclosingClass.thisType;
} else {
var enclosingExtension = this.enclosingExtension;
if (enclosingExtension != null) {
_thisType = enclosingExtension.extendedType;
}
}
}
bool _shouldSkipImplicitCallReferenceDueToForm(
Expression expression, AstNode? parent) {
while (parent is ParenthesizedExpression) {
expression = parent;
parent = expression.parent;
}
if (parent is CascadeExpression && parent.target == expression) {
// Do not perform an "implicit tear-off conversion" here. It should only
// be performed on [parent]. See
// https://github.com/dart-lang/language/issues/1873.
return true;
}
if (parent is ConditionalExpression &&
(parent.thenExpression == expression ||
parent.elseExpression == expression)) {
// Do not perform an "implicit tear-off conversion" on the branches of a
// conditional expression.
return true;
}
if (parent is BinaryExpression &&
parent.operator.type == TokenType.QUESTION_QUESTION) {
// Do not perform an "implicit tear-off conversion" on the branches of a
// `??` operator.
return true;
}
return false;
}
/// Given an [argumentList] and the [parameters] related to the element that
/// will be invoked using those arguments, compute the list of parameters that
/// correspond to the list of arguments.
///
/// Returns the parameters that correspond to the arguments. If no parameter
/// matched an argument, that position will be `null` in the list.
static List<ParameterElement?> resolveArgumentsToParameters({
required ArgumentList argumentList,
required List<ParameterElement> parameters,
ErrorReporter? errorReporter,
ConstructorDeclaration? enclosingConstructor,
}) {
int requiredParameterCount = 0;
int unnamedParameterCount = 0;
List<ParameterElement> unnamedParameters = <ParameterElement>[];
Map<String, ParameterElement>? namedParameters;
int length = parameters.length;
for (int i = 0; i < length; i++) {
ParameterElement parameter = parameters[i];
if (parameter.isRequiredPositional) {
unnamedParameters.add(parameter);
unnamedParameterCount++;
requiredParameterCount++;
} else if (parameter.isOptionalPositional) {
unnamedParameters.add(parameter);
unnamedParameterCount++;
} else {
namedParameters ??= HashMap<String, ParameterElement>();
namedParameters[parameter.name] = parameter;
}
}
int unnamedIndex = 0;
NodeList<Expression> arguments = argumentList.arguments;
int argumentCount = arguments.length;
List<ParameterElement?> resolvedParameters =
List<ParameterElement?>.filled(argumentCount, null);
int positionalArgumentCount = 0;
bool noBlankArguments = true;
Expression? firstUnresolvedArgument;
Expression? lastPositionalArgument;
for (int i = 0; i < argumentCount; i++) {
Expression argument = arguments[i];
if (argument is! NamedExpression) {
if (argument is SimpleIdentifier && argument.name.isEmpty) {
noBlankArguments = false;
}
positionalArgumentCount++;
if (unnamedIndex < unnamedParameterCount) {
resolvedParameters[i] = unnamedParameters[unnamedIndex++];
} else {
firstUnresolvedArgument ??= argument;
}
lastPositionalArgument = argument;
}
}
Set<String>? usedNames;
if (enclosingConstructor != null) {
var result = verifySuperFormalParameters(
constructor: enclosingConstructor,
hasExplicitPositionalArguments: positionalArgumentCount != 0,
errorReporter: errorReporter,
);
positionalArgumentCount += result.positionalArgumentCount;
if (result.namedArgumentNames.isNotEmpty) {
usedNames = result.namedArgumentNames.toSet();
}
}
for (int i = 0; i < argumentCount; i++) {
Expression argument = arguments[i];
if (argument is NamedExpressionImpl) {
var nameNode = argument.name.label;
String name = nameNode.name;
var element = namedParameters != null ? namedParameters[name] : null;
if (element == null) {
errorReporter?.reportErrorForNode(
CompileTimeErrorCode.UNDEFINED_NAMED_PARAMETER, nameNode, [name]);
} else {
resolvedParameters[i] = element;
nameNode.staticElement = element;
}
usedNames ??= <String>{};
if (!usedNames.add(name)) {
errorReporter?.reportErrorForNode(
CompileTimeErrorCode.DUPLICATE_NAMED_ARGUMENT, nameNode, [name]);
}
}
}
if (positionalArgumentCount < requiredParameterCount && noBlankArguments) {
var parent = argumentList.parent;
if (errorReporter != null && parent != null) {
var token = lastPositionalArgument?.endToken.next ??
argumentList.leftParenthesis.next ??
argumentList.rightParenthesis;
_reportNotEnoughPositionalArguments(
token: token,
requiredParameterCount: requiredParameterCount,
actualArgumentCount: positionalArgumentCount,
nameNode: parent,
errorReporter: errorReporter);
}
} else if (positionalArgumentCount > unnamedParameterCount &&
noBlankArguments) {
ErrorCode errorCode;
int namedParameterCount = namedParameters?.length ?? 0;
int namedArgumentCount = usedNames?.length ?? 0;
if (namedParameterCount > namedArgumentCount) {
errorCode =
CompileTimeErrorCode.EXTRA_POSITIONAL_ARGUMENTS_COULD_BE_NAMED;
} else {
errorCode = CompileTimeErrorCode.EXTRA_POSITIONAL_ARGUMENTS;
}
if (firstUnresolvedArgument != null) {
errorReporter?.reportErrorForNode(errorCode, firstUnresolvedArgument,
[unnamedParameterCount, positionalArgumentCount]);
}
}
return resolvedParameters;
}
/// Report [CompileTimeErrorCode.NOT_ENOUGH_POSITIONAL_ARGUMENTS] or one of
/// its derivatives at the specified [token], considering the name of the
/// [nameNode].
static void _reportNotEnoughPositionalArguments(
{required Token token,
required int requiredParameterCount,
required int actualArgumentCount,
required AstNode nameNode,
required ErrorReporter errorReporter}) {
String? name;
if (nameNode is InstanceCreationExpression) {
var constructorName = nameNode.constructorName;
name =
constructorName.name?.name ?? '${constructorName.type.name.name}.new';
} else if (nameNode is RedirectingConstructorInvocation) {
name = nameNode.constructorName?.name;
if (name == null) {
var staticElement = nameNode.staticElement;
if (staticElement != null) {
name =
'${staticElement.returnType.getDisplayString(withNullability: true)}.new';
}
}
} else if (nameNode is SuperConstructorInvocation) {
name = nameNode.constructorName?.name;
if (name == null) {
var staticElement = nameNode.staticElement;
if (staticElement != null) {
name =
'${staticElement.returnType.getDisplayString(withNullability: true)}.new';
}
}
} else if (nameNode is MethodInvocation) {
name = nameNode.methodName.name;
} else if (nameNode is FunctionExpressionInvocation) {
var function = nameNode.function;
if (function is SimpleIdentifier) {
name = function.name;
}
} else if (nameNode is EnumConstantArguments) {
var parent = nameNode.parent;
if (parent is EnumConstantDeclaration) {
var declaredElement = parent.declaredElement!;
name = declaredElement.type.getDisplayString(withNullability: true);
}
} else if (nameNode is EnumConstantDeclaration) {
var declaredElement = nameNode.declaredElement!;
name = declaredElement.type.getDisplayString(withNullability: true);
} else if (nameNode is Annotation) {
var nameNodeName = nameNode.name;
name = nameNodeName is PrefixedIdentifier
? nameNodeName.identifier.name
: '${nameNodeName.name}.new';
} else {
throw UnimplementedError('(${nameNode.runtimeType}) $nameNode');
}
var isPlural = requiredParameterCount > 1;
var arguments = <Object>[];
if (isPlural) {
arguments.add(requiredParameterCount);
arguments.add(actualArgumentCount);
}
ErrorCode errorCode;
if (name == null) {
errorCode = isPlural
? CompileTimeErrorCode.NOT_ENOUGH_POSITIONAL_ARGUMENTS_PLURAL
: CompileTimeErrorCode.NOT_ENOUGH_POSITIONAL_ARGUMENTS_SINGULAR;
} else {
errorCode = isPlural
? CompileTimeErrorCode.NOT_ENOUGH_POSITIONAL_ARGUMENTS_NAME_PLURAL
: CompileTimeErrorCode.NOT_ENOUGH_POSITIONAL_ARGUMENTS_NAME_SINGULAR;
arguments.add(name);
}
errorReporter.reportErrorForToken(errorCode, token, arguments);
}
}
/// Override of [ResolverVisitorForMigration] that invokes methods of
/// [MigrationResolutionHooks] when appropriate.
class ResolverVisitorForMigration extends ResolverVisitor {
final MigrationResolutionHooks _migrationResolutionHooks;
ResolverVisitorForMigration(
InheritanceManager3 inheritanceManager,
LibraryElementImpl definingLibrary,
Source source,
TypeProvider typeProvider,
AnalysisErrorListener errorListener,
TypeSystemImpl typeSystem,
FeatureSet featureSet,
MigrationResolutionHooks migrationResolutionHooks)
: _migrationResolutionHooks = migrationResolutionHooks,
super._(
inheritanceManager,
definingLibrary,
source,
typeSystem,
typeProvider as TypeProviderImpl,
errorListener,
featureSet,
FlowAnalysisHelperForMigration(
typeSystem, migrationResolutionHooks, featureSet),
migrationResolutionHooks,
migrationResolutionHooks);
@override
void visitConditionalExpression(covariant ConditionalExpressionImpl node,
{DartType? contextType}) {
var conditionalKnownValue =
_migrationResolutionHooks.getConditionalKnownValue(node);
if (conditionalKnownValue == null) {
super.visitConditionalExpression(node, contextType: contextType);
return;
} else {
var subexpressionToKeep =
conditionalKnownValue ? node.thenExpression : node.elseExpression;
subexpressionToKeep.accept(this);
inferenceHelper.recordStaticType(node, subexpressionToKeep.typeOrThrow,
contextType: contextType);
}
}
@override
void visitIfElement(
covariant IfElementImpl node, {
CollectionLiteralContext? context,
}) {
var conditionalKnownValue =
_migrationResolutionHooks.getConditionalKnownValue(node);
if (conditionalKnownValue == null) {
super.visitIfElement(node, context: context);
return;
} else {
var element = conditionalKnownValue ? node.thenElement : node.elseElement;
if (element != null) {
element.resolveElement(this, context);
popRewrite();
}
}
}
@override
void visitIfStatement(covariant IfStatementImpl node) {
var conditionalKnownValue =
_migrationResolutionHooks.getConditionalKnownValue(node);
if (conditionalKnownValue == null) {
super.visitIfStatement(node);
return;
} else {
(conditionalKnownValue ? node.thenStatement : node.elseStatement)
?.accept(this);
}
}
}
/// Instances of the class `ScopeResolverVisitor` are used to resolve
/// [SimpleIdentifier]s to declarations using scoping rules.
///
/// TODO(paulberry): migrate the responsibility for all scope resolution into
/// this visitor.
class ScopeResolverVisitor extends UnifyingAstVisitor<void> {
static const _nameScopeProperty = 'nameScope';
/// The element for the library containing the compilation unit being visited.
final LibraryElementImpl definingLibrary;
/// The source representing the compilation unit being visited.
final Source source;
/// The object used to access the types from the core library.
final TypeProviderImpl typeProvider;
/// The error reporter that will be informed of any errors that are found
/// during resolution.
final ErrorReporter errorReporter;
/// The scope used to resolve identifiers.
Scope nameScope;
/// The scope used to resolve unlabeled `break` and `continue` statements.
ImplicitLabelScope _implicitLabelScope = ImplicitLabelScope.ROOT;
/// The scope used to resolve labels for `break` and `continue` statements, or
/// `null` if no labels have been defined in the current context.
LabelScope? labelScope;
/// The container with information about local variables.
final LocalVariableInfo _localVariableInfo = LocalVariableInfo();
/// If the current function is contained within a closure (a local function or
/// function expression inside another executable declaration), the element
/// representing the closure; otherwise `null`.
ExecutableElement? _enclosingClosure;
/// Initialize a newly created visitor to resolve the nodes in an AST node.
///
/// [definingLibrary] is the element for the library containing the node being
/// visited.
/// [source] is the source representing the compilation unit containing the
/// node being visited.
/// [typeProvider] is the object used to access the types from the core
/// library.
/// [errorListener] is the error listener that will be informed of any errors
/// that are found during resolution.
/// [nameScope] is the scope used to resolve identifiers in the node that will
/// first be visited. If `null` or unspecified, a new [LibraryOrAugmentationScope] will be
/// created based on [definingLibrary] and [typeProvider].
ScopeResolverVisitor(this.definingLibrary, this.source, this.typeProvider,
AnalysisErrorListener errorListener,
{Scope? nameScope})
: errorReporter = ErrorReporter(
errorListener,
source,
isNonNullableByDefault: definingLibrary.isNonNullableByDefault,
),
nameScope = nameScope ?? LibraryOrAugmentationScope(definingLibrary);
/// Return the implicit label scope in which the current node is being
/// resolved.
ImplicitLabelScope get implicitLabelScope => _implicitLabelScope;
@override
void visitAssignedVariablePattern(AssignedVariablePattern node) {
final element = node.element;
if (element is PromotableElement) {
_localVariableInfo.potentiallyMutatedInScope.add(element);
}
}
@override
void visitBlock(Block node) {
_withDeclaredLocals(node, node.statements, () {
super.visitBlock(node);
});
}
@override
void visitBlockFunctionBody(BlockFunctionBody node) {
ImplicitLabelScope implicitOuterScope = _implicitLabelScope;
try {
_implicitLabelScope = ImplicitLabelScope.ROOT;
super.visitBlockFunctionBody(node);
} finally {
_implicitLabelScope = implicitOuterScope;
}
}
@override
void visitBreakStatement(covariant BreakStatementImpl node) {
node.target = _lookupBreakOrContinueTarget(node, node.label, false);
}
@override
void visitCatchClause(CatchClause node) {
var exception = node.exceptionParameter;
if (exception != null) {
Scope outerScope = nameScope;
try {
nameScope = LocalScope(nameScope);
_define(exception.declaredElement!);
var stackTrace = node.stackTraceParameter;
if (stackTrace != null) {
_define(stackTrace.declaredElement!);
}
super.visitCatchClause(node);
} finally {
nameScope = outerScope;
}
} else {
super.visitCatchClause(node);
}
}
@override
void visitClassDeclaration(ClassDeclaration node) {
Scope outerScope = nameScope;
try {
ClassElement element = node.declaredElement!;
node.metadata.accept(this);
nameScope = TypeParameterScope(
nameScope,
element.typeParameters,
);
_setNodeNameScope(node, nameScope);
visitClassDeclarationInScope(node);
nameScope = InterfaceScope(nameScope, element);
visitClassMembersInScope(node);
} finally {
nameScope = outerScope;
}
}
void visitClassDeclarationInScope(ClassDeclaration node) {
node.typeParameters?.accept(this);
node.extendsClause?.accept(this);
node.withClause?.accept(this);
node.implementsClause?.accept(this);
node.nativeClause?.accept(this);
}
void visitClassMembersInScope(ClassDeclaration node) {
node.documentationComment?.accept(this);
node.members.accept(this);
}
@override
void visitClassTypeAlias(ClassTypeAlias node) {
node.metadata.accept(this);
Scope outerScope = nameScope;
try {
ClassElement element = node.declaredElement!;
nameScope = InterfaceScope(
TypeParameterScope(nameScope, element.typeParameters),
element,
);
visitClassTypeAliasInScope(node);
} finally {
nameScope = outerScope;
}
}
void visitClassTypeAliasInScope(ClassTypeAlias node) {
// Note: we don't visit metadata because it's not inside the class type
// alias's type parameter scope. It was already visited in
// [visitClassTypeAlias].
node.documentationComment?.accept(this);
node.typeParameters?.accept(this);
node.superclass.accept(this);
node.withClause.accept(this);
node.implementsClause?.accept(this);
}
@override
void visitCompilationUnit(CompilationUnit node) {
_setNodeNameScope(node, nameScope);
super.visitCompilationUnit(node);
}
@override
void visitConstructorDeclaration(ConstructorDeclaration node) {
(node.body as FunctionBodyImpl).localVariableInfo = _localVariableInfo;
Scope outerScope = nameScope;
try {
ConstructorElement element = node.declaredElement!;
node.metadata.accept(this);
node.returnType.accept(this);
node.parameters.accept(this);
try {
nameScope = ConstructorInitializerScope(
nameScope,
element,
);
node.initializers.accept(this);
} finally {
nameScope = outerScope;
}
node.redirectedConstructor?.accept(this);
nameScope = FormalParameterScope(
nameScope,
element.parameters,
);
visitConstructorDeclarationInScope(node);
} finally {
nameScope = outerScope;
}
}
void visitConstructorDeclarationInScope(ConstructorDeclaration node) {
node.documentationComment?.accept(this);
node.body.accept(this);
}
@override
void visitContinueStatement(covariant ContinueStatementImpl node) {
node.target = _lookupBreakOrContinueTarget(node, node.label, true);
}
@override
void visitDeclaredIdentifier(DeclaredIdentifier node) {
_define(node.declaredElement!);
super.visitDeclaredIdentifier(node);
}
@override
void visitDoStatement(DoStatement node) {
ImplicitLabelScope outerImplicitScope = _implicitLabelScope;
try {
_implicitLabelScope = _implicitLabelScope.nest(node);
visitDoStatementInScope(node);
} finally {
_implicitLabelScope = outerImplicitScope;
}
}
void visitDoStatementInScope(DoStatement node) {
visitStatementInScope(node.body);
node.condition.accept(this);
}
@override
void visitEnumDeclaration(EnumDeclaration node) {
Scope outerScope = nameScope;
try {
final element = node.declaredElement!;
node.metadata.accept(this);
nameScope = TypeParameterScope(
nameScope,
element.typeParameters,
);
_setNodeNameScope(node, nameScope);
visitEnumDeclarationInScope(node);
nameScope = InterfaceScope(nameScope, element);
visitEnumMembersInScope(node);
} finally {
nameScope = outerScope;
}
}
void visitEnumDeclarationInScope(EnumDeclaration node) {
node.typeParameters?.accept(this);
node.withClause?.accept(this);
node.implementsClause?.accept(this);
}
void visitEnumMembersInScope(EnumDeclaration node) {
node.documentationComment?.accept(this);
node.constants.accept(this);
node.members.accept(this);
}
@override
void visitExpressionFunctionBody(ExpressionFunctionBody node) {
_setNodeNameScope(node, nameScope);
super.visitExpressionFunctionBody(node);
}
@override
void visitExtensionDeclaration(ExtensionDeclaration node) {
Scope outerScope = nameScope;
try {
ExtensionElement element = node.declaredElement!;
node.metadata.accept(this);
nameScope = TypeParameterScope(
nameScope,
element.typeParameters,
);
_setNodeNameScope(node, nameScope);
visitExtensionDeclarationInScope(node);
nameScope = ExtensionScope(nameScope, element);
visitExtensionMembersInScope(node);
} finally {
nameScope = outerScope;
}
}
void visitExtensionDeclarationInScope(ExtensionDeclaration node) {
node.typeParameters?.accept(this);
node.extendedType.accept(this);
}
void visitExtensionMembersInScope(ExtensionDeclaration node) {
node.documentationComment?.accept(this);
node.members.accept(this);
}
@override
void visitForEachPartsWithDeclaration(ForEachPartsWithDeclaration node) {
//
// We visit the iterator before the loop variable because the loop variable
// cannot be in scope while visiting the iterator.
//
node.iterable.accept(this);
node.loopVariable.accept(this);
}
@override
void visitForEachPartsWithPattern(
covariant ForEachPartsWithPatternImpl node,
) {
//
// We visit the iterator before the pattern because the pattern variables
// cannot be in scope while visiting the iterator.
//
node.iterable.accept(this);
for (var variable in node.variables) {
_define(variable);
}
node.pattern.accept(this);
}
@override
void visitForElement(ForElement node) {
Scope outerNameScope = nameScope;
try {
nameScope = LocalScope(nameScope);
_setNodeNameScope(node, nameScope);
visitForElementInScope(node);
} finally {
nameScope = outerNameScope;
}
}
/// Visit the given [node] after it's scope has been created. This replaces
/// the normal call to the inherited visit method so that ResolverVisitor can
/// intervene when type propagation is enabled.
void visitForElementInScope(ForElement node) {
// TODO(brianwilkerson) Investigate the possibility of removing the
// visit...InScope methods now that type propagation is no longer done.
node.forLoopParts.accept(this);
node.body.accept(this);
}
@override
void visitFormalParameterList(FormalParameterList node) {
super.visitFormalParameterList(node);
// We finished resolving function signature, now include formal parameters
// scope. Note: we must not do this if the parent is a
// FunctionTypedFormalParameter, because in that case we aren't finished
// resolving the full function signature, just a part of it.
var parent = node.parent;
if (parent is FunctionExpression) {
nameScope = FormalParameterScope(
nameScope,
parent.declaredElement!.parameters,
);
} else if (parent is FunctionTypeAlias) {
var aliasedElement = parent.declaredElement!.aliasedElement;
var functionElement = aliasedElement as GenericFunctionTypeElement;
nameScope = FormalParameterScope(
nameScope,
functionElement.parameters,
);
} else if (parent is MethodDeclaration) {
nameScope = FormalParameterScope(
nameScope,
parent.declaredElement!.parameters,
);
}
}
@override
void visitForStatement(ForStatement node) {
Scope outerNameScope = nameScope;
ImplicitLabelScope outerImplicitScope = _implicitLabelScope;
try {
nameScope = LocalScope(nameScope);
_implicitLabelScope = _implicitLabelScope.nest(node);
_setNodeNameScope(node, nameScope);
visitForStatementInScope(node);
} finally {
nameScope = outerNameScope;
_implicitLabelScope = outerImplicitScope;
}
}
/// Visit the given [node] after it's scope has been created. This replaces
/// the normal call to the inherited visit method so that ResolverVisitor can
/// intervene when type propagation is enabled.
void visitForStatementInScope(ForStatement node) {
// TODO(brianwilkerson) Investigate the possibility of removing the
// visit...InScope methods now that type propagation is no longer done.
node.forLoopParts.accept(this);
visitStatementInScope(node.body);
}
@override
void visitFunctionDeclaration(FunctionDeclaration node) {
(node.functionExpression.body as FunctionBodyImpl).localVariableInfo =
_localVariableInfo;
var outerClosure = _enclosingClosure;
Scope outerScope = nameScope;
try {
_enclosingClosure = node.parent is FunctionDeclarationStatement
? node.declaredElement
: null;
node.metadata.accept(this);
var element = node.declaredElement!;
nameScope = TypeParameterScope(
nameScope,
element.typeParameters,
);
_setNodeNameScope(node, nameScope);
visitFunctionDeclarationInScope(node);
} finally {
nameScope = outerScope;
_enclosingClosure = outerClosure;
}
}
void visitFunctionDeclarationInScope(FunctionDeclaration node) {
// Note: we don't visit metadata because it's not inside the function's type
// parameter scope. It was already visited in [visitFunctionDeclaration].
node.returnType?.accept(this);
node.functionExpression.accept(this);
}
@override
void visitFunctionExpression(FunctionExpression node) {
var outerClosure = _enclosingClosure;
Scope outerScope = nameScope;
try {
if (node.parent is! FunctionDeclaration) {
(node.body as FunctionBodyImpl).localVariableInfo = _localVariableInfo;
_enclosingClosure = node.declaredElement;
}
var parent = node.parent;
if (parent is FunctionDeclaration) {
// We have already created a function scope and don't need to do so again.
super.visitFunctionExpression(node);
parent.documentationComment?.accept(this);
return;
}
ExecutableElement element = node.declaredElement!;
nameScope = FormalParameterScope(
TypeParameterScope(nameScope, element.typeParameters),
element.parameters,
);
super.visitFunctionExpression(node);
} finally {
nameScope = outerScope;
_enclosingClosure = outerClosure;
}
}
@override
void visitFunctionTypeAlias(FunctionTypeAlias node) {
node.metadata.accept(this);
Scope outerScope = nameScope;
try {
var element = node.declaredElement!;
nameScope = TypeParameterScope(nameScope, element.typeParameters);
visitFunctionTypeAliasInScope(node);
} finally {
nameScope = outerScope;
}
}
void visitFunctionTypeAliasInScope(FunctionTypeAlias node) {
// Note: we don't visit metadata because it's not inside the function type
// alias's type parameter scope. It was already visited in
// [visitFunctionTypeAlias].
node.returnType?.accept(this);
node.typeParameters?.accept(this);
node.parameters.accept(this);
// Visiting the parameters added them to the scope as a side effect. So it
// is safe to visit the documentation comment now.
node.documentationComment?.accept(this);
}
@override
void visitFunctionTypedFormalParameter(FunctionTypedFormalParameter node) {
node.metadata.accept(this);
Scope outerScope = nameScope;
try {
ParameterElement element = node.declaredElement!;
nameScope = TypeParameterScope(
nameScope,
element.typeParameters,
);
visitFunctionTypedFormalParameterInScope(node);
} finally {
nameScope = outerScope;
}
}
void visitFunctionTypedFormalParameterInScope(
FunctionTypedFormalParameter node) {
// Note: we don't visit metadata because it's not inside the function typed
// formal parameter's type parameter scope. It was already visited in
// [visitFunctionTypedFormalParameter].
node.documentationComment?.accept(this);
node.returnType?.accept(this);
node.typeParameters?.accept(this);
node.parameters.accept(this);
}
@override
void visitGenericFunctionType(GenericFunctionType node) {
var type = node.type;
if (type == null) {
// The function type hasn't been resolved yet, so we can't create a scope
// for its parameters.
super.visitGenericFunctionType(node);
return;
}
Scope outerScope = nameScope;
try {
GenericFunctionTypeElement element =
(node as GenericFunctionTypeImpl).declaredElement!;
nameScope = TypeParameterScope(nameScope, element.typeParameters);
_setNodeNameScope(node, nameScope);
super.visitGenericFunctionType(node);
} finally {
nameScope = outerScope;
}
}
@override
void visitGenericTypeAlias(GenericTypeAlias node) {
node.metadata.accept(this);
Scope outerScope = nameScope;
try {
var element = node.declaredElement as TypeAliasElement;
nameScope = TypeParameterScope(nameScope, element.typeParameters);
_setNodeNameScope(node, nameScope);
visitGenericTypeAliasInScope(node);
var aliasedElement = element.aliasedElement;
if (aliasedElement is GenericFunctionTypeElement) {
nameScope = FormalParameterScope(
TypeParameterScope(nameScope, aliasedElement.typeParameters),
aliasedElement.parameters);
}
node.documentationComment?.accept(this);
} finally {
nameScope = outerScope;
}
}
void visitGenericTypeAliasInScope(GenericTypeAlias node) {
// Note: we don't visit metadata because it's not inside the generic type
// alias's type parameter scope. It was already visited in
// [visitGenericTypeAlias].
node.typeParameters?.accept(this);
node.type.accept(this);
}
@override
void visitGuardedPattern(covariant GuardedPatternImpl node) {
var patternVariables = node.variables.values.toList();
for (var variable in patternVariables) {
_define(variable);
}
node.pattern.accept(this);
for (var variable in patternVariables) {
variable.isVisitingWhenClause = true;
}
node.whenClause?.accept(this);
for (var variable in patternVariables) {
variable.isVisitingWhenClause = false;
}
}
@override
void visitIfElement(covariant IfElementImpl node) {
_visitIf(node);
}
@override
void visitIfStatement(covariant IfStatementImpl node) {
_visitIf(node);
}
@override
void visitLabeledStatement(LabeledStatement node) {
var outerScope = _addScopesFor(node.labels, node.unlabeled);
try {
super.visitLabeledStatement(node);
} finally {
labelScope = outerScope;
}
}
@override
void visitMethodDeclaration(MethodDeclaration node) {
(node.body as FunctionBodyImpl).localVariableInfo = _localVariableInfo;
node.metadata.accept(this);
Scope outerScope = nameScope;
try {
ExecutableElement element = node.declaredElement!;
nameScope = TypeParameterScope(
nameScope,
element.typeParameters,
);
_setNodeNameScope(node, nameScope);
visitMethodDeclarationInScope(node);
} finally {
nameScope = outerScope;
}
}
void visitMethodDeclarationInScope(MethodDeclaration node) {
// Note: we don't visit metadata because it's not inside the method's type
// parameter scope. It was already visited in [visitMethodDeclaration].
node.returnType?.accept(this);
node.typeParameters?.accept(this);
node.parameters?.accept(this);
// Visiting the parameters added them to the scope as a side effect. So it
// is safe to visit the documentation comment now.
node.documentationComment?.accept(this);
node.body.accept(this);
}
@override
void visitMethodInvocation(MethodInvocation node) {
// Only visit the method name if there's no real target (so this is an
// unprefixed function invocation, outside a cascade). This is the only
// circumstance in which the method name is meant to be looked up in the
// current scope.
node.target?.accept(this);
if (node.realTarget == null) {
node.methodName.accept(this);
}
node.typeArguments?.accept(this);
node.argumentList.accept(this);
}
@override
void visitMixinDeclaration(MixinDeclaration node) {
Scope outerScope = nameScope;
try {
final element = node.declaredElement!;
node.metadata.accept(this);
nameScope = TypeParameterScope(nameScope, element.typeParameters);
_setNodeNameScope(node, nameScope);
visitMixinDeclarationInScope(node);
nameScope = InterfaceScope(nameScope, element);
visitMixinMembersInScope(node);
} finally {
nameScope = outerScope;
}
}
void visitMixinDeclarationInScope(MixinDeclaration node) {
node.typeParameters?.accept(this);
node.onClause?.accept(this);
node.implementsClause?.accept(this);
}
void visitMixinMembersInScope(MixinDeclaration node) {
node.documentationComment?.accept(this);
node.members.accept(this);
}
@override
void visitNamedType(NamedType node) {
// All TypeName(s) are already resolved, so we don't resolve it here.
// But there might be type arguments with Expression(s), such as
// annotations on formal parameters of GenericFunctionType(s).
node.typeArguments?.accept(this);
}
@override
void visitPatternVariableDeclaration(
covariant PatternVariableDeclarationImpl node,
) {
for (var variable in node.elements) {
_define(variable);
}
super.visitPatternVariableDeclaration(node);
}
@override
void visitPrefixedIdentifier(PrefixedIdentifier node) {
// Do not visit the identifier after the `.`, since it is not meant to be
// looked up in the current scope.
node.prefix.accept(this);
}
@override
void visitPropertyAccess(PropertyAccess node) {
// Do not visit the property name, since it is not meant to be looked up in
// the current scope.
node.target?.accept(this);
}
@override
void visitSimpleIdentifier(covariant SimpleIdentifierImpl node) {
// Ignore if already resolved - declaration or type.
if (node.inDeclarationContext()) {
return;
}
// Ignore if qualified.
var parent = node.parent;
var scopeLookupResult = nameScope.lookup(node.name);
node.scopeLookupResult = scopeLookupResult;
// Ignore if it cannot be a reference to a local variable.
if (parent is FieldFormalParameter) {
return;
} else if (parent is ConstructorDeclaration && parent.returnType == node) {
return;
} else if (parent is ConstructorFieldInitializer &&
parent.fieldName == node) {
return;
}
if (parent is ConstructorName) {
return;
}
if (parent is Label) {
return;
}
// Prepare VariableElement.
var element = scopeLookupResult.getter;
if (element is! VariableElement) {
return;
}
// Must be local or parameter.
ElementKind kind = element.kind;
if (kind == ElementKind.LOCAL_VARIABLE || kind == ElementKind.PARAMETER) {
node.staticElement = element;
if (node.inSetterContext()) {
if (element is PatternVariableElementImpl &&
element.isVisitingWhenClause) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.PATTERN_VARIABLE_ASSIGNMENT_INSIDE_GUARD,
node,
);
}
_localVariableInfo.potentiallyMutatedInScope.add(element);
if (_enclosingClosure != null &&
element.enclosingElement != _enclosingClosure) {
// ignore:deprecated_member_use_from_same_package
_localVariableInfo.potentiallyMutatedInClosure.add(element);
}
}
}
if (element is JoinPatternVariableElementImpl) {
element.references.add(node);
}
}
/// Visit the given statement after it's scope has been created. This is used
/// by ResolverVisitor to correctly visit the 'then' and 'else' statements of
/// an 'if' statement.
///
/// @param node the statement to be visited
void visitStatementInScope(Statement? node) {
if (node is Block) {
// Don't create a scope around a block because the block will create it's
// own scope.
visitBlock(node);
} else if (node != null) {
Scope outerNameScope = nameScope;
try {
nameScope = LocalScope(nameScope);
node.accept(this);
} finally {
nameScope = outerNameScope;
}
}
}
@override
void visitSwitchExpression(covariant SwitchExpressionImpl node) {
node.expression.accept(this);
for (var case_ in node.cases) {
_withNameScope(() {
var guardedPattern = case_.guardedPattern;
var variables = guardedPattern.variables;
for (var variable in variables.values) {
_define(variable);
}
case_.accept(this);
});
}
}
@override
void visitSwitchStatement(covariant SwitchStatementImpl node) {
var outerScope = labelScope;
ImplicitLabelScope outerImplicitScope = _implicitLabelScope;
try {
_implicitLabelScope = _implicitLabelScope.nest(node);
for (SwitchMember member in node.members) {
for (Label label in member.labels) {
SimpleIdentifier labelName = label.label;
LabelElement labelElement = labelName.staticElement as LabelElement;
labelScope =
LabelScope(labelScope, labelName.name, member, labelElement);
}
}
node.expression.accept(this);
for (var group in node.memberGroups) {
for (var member in group.members) {
if (member is SwitchCaseImpl) {
member.expression.accept(this);
} else if (member is SwitchPatternCaseImpl) {
_withNameScope(() {
member.guardedPattern.accept(this);
});
}
}
_withDeclaredLocals(node, group.statements, () {
for (var variable in group.variables.values) {
_define(variable);
}
group.statements.accept(this);
});
}
} finally {
labelScope = outerScope;
_implicitLabelScope = outerImplicitScope;
}
}
@override
void visitVariableDeclaration(VariableDeclaration node) {
super.visitVariableDeclaration(node);
if (node.parent!.parent is ForParts) {
_define(node.declaredElement!);
}
}
@override
void visitWhileStatement(WhileStatement node) {
node.condition.accept(this);
ImplicitLabelScope outerImplicitScope = _implicitLabelScope;
try {
_implicitLabelScope = _implicitLabelScope.nest(node);
visitStatementInScope(node.body);
} finally {
_implicitLabelScope = outerImplicitScope;
}
}
/// Add scopes for each of the given labels.
///
/// @param labels the labels for which new scopes are to be added
/// @return the scope that was in effect before the new scopes were added
LabelScope? _addScopesFor(NodeList<Label> labels, AstNode node) {
var outerScope = labelScope;
for (Label label in labels) {
SimpleIdentifier labelNameNode = label.label;
String labelName = labelNameNode.name;
LabelElement labelElement = labelNameNode.staticElement as LabelElement;
labelScope = LabelScope(labelScope, labelName, node, labelElement);
}
return outerScope;
}
void _define(Element element) {
(nameScope as LocalScope).add(element);
}
/// Return the target of a break or continue statement, and update the static
/// element of its label (if any). The [parentNode] is the AST node of the
/// break or continue statement. The [labelNode] is the label contained in
/// that statement (if any). The flag [isContinue] is `true` if the node being
/// visited is a continue statement.
AstNode? _lookupBreakOrContinueTarget(
AstNode parentNode, SimpleIdentifierImpl? labelNode, bool isContinue) {
if (labelNode == null) {
return implicitLabelScope.getTarget(isContinue);
} else {
var labelScope = this.labelScope;
if (labelScope == null) {
// There are no labels in scope, so by definition the label is
// undefined.
errorReporter.reportErrorForNode(
CompileTimeErrorCode.LABEL_UNDEFINED, labelNode, [labelNode.name]);
return null;
}
var definingScope = labelScope.lookup(labelNode.name);
if (definingScope == null) {
// No definition of the given label name could be found in any
// enclosing scope.
errorReporter.reportErrorForNode(
CompileTimeErrorCode.LABEL_UNDEFINED, labelNode, [labelNode.name]);
return null;
}
// The target has been found.
labelNode.staticElement = definingScope.element;
ExecutableElement? labelContainer =
definingScope.element.thisOrAncestorOfType();
if (_enclosingClosure != null &&
!identical(labelContainer, _enclosingClosure)) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.LABEL_IN_OUTER_SCOPE,
labelNode,
[labelNode.name]);
}
var node = definingScope.node;
if (isContinue &&
node is! DoStatement &&
node is! ForStatement &&
node is! SwitchMember &&
node is! WhileStatement) {
errorReporter.reportErrorForNode(
CompileTimeErrorCode.CONTINUE_LABEL_INVALID, parentNode);
}
return node;
}
}
void _visitIf(IfElementOrStatementImpl node) {
node.expression.accept(this);
var caseClause = node.caseClause;
if (caseClause != null) {
var guardedPattern = caseClause.guardedPattern;
_withNameScope(() {
guardedPattern.accept(this);
node.ifTrue.accept(this);
});
node.ifFalse?.accept(this);
} else {
node.ifTrue.accept(this);
node.ifFalse?.accept(this);
}
}
void _withDeclaredLocals(
AstNode node,
List<Statement> statements,
void Function() f,
) {
var outerScope = nameScope;
try {
var enclosedScope = LocalScope(nameScope);
BlockScope.elementsInStatements(statements).forEach(enclosedScope.add);
nameScope = enclosedScope;
_setNodeNameScope(node, nameScope);
f();
} finally {
nameScope = outerScope;
}
}
/// Run [f] with the new name scope.
void _withNameScope(void Function() f) {
var current = nameScope;
try {
nameScope = LocalScope(current);
f();
} finally {
nameScope = current;
}
}
/// Return the [Scope] to use while resolving inside the [node].
///
/// Not every node has the scope set, for example we set the scopes for
/// blocks, but statements don't have separate scopes. The compilation unit
/// has the library scope.
static Scope? getNodeNameScope(AstNode node) {
return node.getProperty(_nameScopeProperty);
}
/// Set the [Scope] to use while resolving inside the [node].
static void _setNodeNameScope(AstNode node, Scope scope) {
node.setProperty(_nameScopeProperty, scope);
}
}
/// Tracker for whether a `switch` statement has `default` or is on an
/// enumeration, and all the enum constants are covered.
class SwitchExhaustiveness {
/// If the switch is on an enumeration, the set of enum constants to cover.
/// Otherwise `null`.
final Set<FieldElement>? _enumConstants;
/// If the switch is on an enumeration, is `true` if the null value is
/// covered, because the switch expression type is non-nullable, or `null`
/// was covered explicitly.
bool _isNullEnumValueCovered = false;
bool isExhaustive = false;
factory SwitchExhaustiveness(DartType expressionType) {
if (expressionType is InterfaceType) {
var enum_ = expressionType.element;
if (enum_ is EnumElementImpl) {
return SwitchExhaustiveness._(
enum_.constants.toSet(),
expressionType.nullabilitySuffix == NullabilitySuffix.none,
);
}
}
return SwitchExhaustiveness._(null, false);
}
SwitchExhaustiveness._(this._enumConstants, this._isNullEnumValueCovered);
void visitSwitchExpressionCase(SwitchExpressionCaseImpl node) {
if (_enumConstants != null) {
ExpressionImpl? caseConstant;
var guardedPattern = node.guardedPattern;
if (guardedPattern.whenClause == null) {
var pattern = guardedPattern.pattern.unParenthesized;
if (pattern is ConstantPatternImpl) {
caseConstant = pattern.expression;
}
}
_handleCaseConstant(caseConstant);
}
}
void visitSwitchMember(SwitchStatementCaseGroup group) {
for (var node in group.members) {
if (_enumConstants != null) {
ExpressionImpl? caseConstant;
if (node is SwitchCaseImpl) {
caseConstant = node.expression;
} else if (node is SwitchPatternCaseImpl) {
var guardedPattern = node.guardedPattern;
if (guardedPattern.whenClause == null) {
var pattern = guardedPattern.pattern.unParenthesized;
if (pattern is ConstantPatternImpl) {
caseConstant = pattern.expression;
}
}
}
_handleCaseConstant(caseConstant);
} else if (node is SwitchDefault) {
isExhaustive = true;
}
}
}
void _handleCaseConstant(ExpressionImpl? caseConstant) {
if (caseConstant != null) {
var element = _referencedElement(caseConstant);
if (element is PropertyAccessorElement) {
_enumConstants!.remove(element.variable);
}
if (caseConstant is NullLiteral) {
_isNullEnumValueCovered = true;
}
if (_enumConstants!.isEmpty && _isNullEnumValueCovered) {
isExhaustive = true;
}
}
}
static Element? _referencedElement(Expression expression) {
if (expression is ParenthesizedExpression) {
return _referencedElement(expression.expression);
} else if (expression is PrefixedIdentifier) {
return expression.staticElement;
} else if (expression is PropertyAccess) {
return expression.propertyName.staticElement;
} else if (expression is SimpleIdentifier) {
return expression.staticElement;
}
return null;
}
}
class _WhyNotPromotedVisitor
implements
NonPromotionReasonVisitor<DiagnosticMessage?, AstNode,
PromotableElement, DartType> {
final Source source;
final SyntacticEntity _errorEntity;
final FlowAnalysisDataForTesting? _dataForTesting;
PropertyAccessorElement? propertyReference;
DartType? propertyType;
_WhyNotPromotedVisitor(this.source, this._errorEntity, this._dataForTesting);
@override
DiagnosticMessage visitDemoteViaExplicitWrite(
DemoteViaExplicitWrite<PromotableElement> reason) {
var node = reason.node as AstNode;
if (node is ForEachPartsWithIdentifier) {
node = node.identifier;
}
if (_dataForTesting != null) {
_dataForTesting!.nonPromotionReasonTargets[node] = reason.shortName;
}
var variableName = reason.variable.name;
return _contextMessageForWrite(variableName, node, reason);
}
@override
DiagnosticMessage? visitPropertyNotPromoted(
PropertyNotPromoted<DartType> reason) {
var receiverElement = reason.propertyMember;
if (receiverElement is PropertyAccessorElement) {
propertyReference = receiverElement;
propertyType = reason.staticType;
return _contextMessageForProperty(
receiverElement, reason.propertyName, reason);
} else {
assert(receiverElement == null,
'Unrecognized property element: ${receiverElement.runtimeType}');
return null;
}
}
@override
DiagnosticMessage? visitThisNotPromoted(ThisNotPromoted reason) {
return DiagnosticMessageImpl(
filePath: source.fullName,
message: "'this' can't be promoted",
offset: _errorEntity.offset,
length: _errorEntity.length,
url: reason.documentationLink);
}
DiagnosticMessageImpl _contextMessageForProperty(
PropertyAccessorElement property,
String propertyName,
NonPromotionReason reason) {
return DiagnosticMessageImpl(
filePath: property.source.fullName,
message:
"'$propertyName' refers to a property so it couldn't be promoted",
offset: property.nonSynthetic.nameOffset,
length: property.nameLength,
url: reason.documentationLink);
}
DiagnosticMessageImpl _contextMessageForWrite(
String variableName, AstNode node, NonPromotionReason reason) {
return DiagnosticMessageImpl(
filePath: source.fullName,
message: "Variable '$variableName' could not be promoted due to an "
"assignment",
offset: node.offset,
length: node.length,
url: reason.documentationLink);
}
}