blob: a9b13d6267683a6693574f2e401aa5b606d5a17c [file] [log] [blame]
// Copyright (c) 2017, 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.
/// This file declares a "shadow hierarchy" of concrete classes which extend
/// the kernel class hierarchy, adding methods and fields needed by the
/// BodyBuilder.
///
/// Instances of these classes may be created using the factory methods in
/// `ast_factory.dart`.
///
/// Note that these classes represent the Dart language prior to desugaring.
/// When a single Dart construct desugars to a tree containing multiple kernel
/// AST nodes, the shadow class extends the kernel object at the top of the
/// desugared tree.
///
/// This means that in some cases multiple shadow classes may extend the same
/// kernel class, because multiple constructs in Dart may desugar to a tree
/// with the same kind of root node.
import 'dart:core' hide MapEntry;
import 'package:kernel/ast.dart' as kernel show Expression, Initializer;
import 'package:kernel/ast.dart' hide InvalidExpression, InvalidInitializer;
import 'package:kernel/clone.dart' show CloneVisitor;
import 'package:kernel/type_algebra.dart' show Substitution;
import '../../base/instrumentation.dart'
show
Instrumentation,
InstrumentationValueForMember,
InstrumentationValueForType,
InstrumentationValueForTypeArgs;
import '../fasta_codes.dart'
show
noLength,
templateCantInferTypeDueToCircularity,
templateCantUseSuperBoundedTypeForInstanceCreation;
import '../problems.dart' show unhandled, unsupported;
import '../source/source_class_builder.dart' show SourceClassBuilder;
import '../source/source_library_builder.dart' show SourceLibraryBuilder;
import '../type_inference/inference_helper.dart' show InferenceHelper;
import '../type_inference/interface_resolver.dart' show InterfaceResolver;
import '../type_inference/type_inference_engine.dart'
show
FieldInitializerInferenceNode,
IncludesTypeParametersCovariantly,
InferenceNode,
TypeInferenceEngine;
import '../type_inference/type_inferrer.dart'
show TypeInferrer, TypeInferrerDisabled, TypeInferrerImpl;
import '../type_inference/type_inference_listener.dart'
show TypeInferenceListener;
import '../type_inference/type_promotion.dart'
show TypePromoter, TypePromoterImpl, TypePromotionFact, TypePromotionScope;
import '../type_inference/type_schema.dart' show UnknownType;
import '../type_inference/type_schema_elimination.dart' show greatestClosure;
import '../type_inference/type_schema_environment.dart'
show TypeSchemaEnvironment, getPositionalParameterType;
import 'body_builder.dart' show combineStatements;
import 'factory.dart' show Factory;
import 'kernel_expression_generator.dart' show makeLet;
/// Indicates whether type inference involving conditional expressions should
/// always use least upper bound.
///
/// A value of `true` matches the behavior of analyzer. A value of `false`
/// matches the informal specification in
/// https://github.com/dart-lang/sdk/pull/29371.
///
/// TODO(paulberry): once compatibility with analyzer is no longer needed,
/// change this to `false`.
const bool _forceLub = true;
/// Computes the return type of a (possibly factory) constructor.
InterfaceType computeConstructorReturnType(Member constructor) {
if (constructor is Constructor) {
return constructor.enclosingClass.thisType;
} else {
return constructor.function.returnType;
}
}
List<DartType> getExplicitTypeArguments(Arguments arguments) {
if (arguments is ArgumentsJudgment) {
return arguments._hasExplicitTypeArguments ? arguments.types : null;
} else {
// This code path should only be taken in situations where there are no
// type arguments at all, e.g. calling a user-definable operator.
assert(arguments.types.isEmpty);
return null;
}
}
/// Information associated with a class during type inference.
class ClassInferenceInfo {
/// The builder associated with this class.
final SourceClassBuilder builder;
/// The visitor for determining if a given type makes covariant use of one of
/// the class's generic parameters, and therefore requires covariant checks.
IncludesTypeParametersCovariantly needsCheckVisitor;
/// Getters and methods in the class's API. May include forwarding nodes.
final gettersAndMethods = <Member>[];
/// Setters in the class's API. May include forwarding nodes.
final setters = <Member>[];
ClassInferenceInfo(this.builder);
}
/// Concrete shadow object representing a set of invocation arguments.
class ArgumentsJudgment extends Arguments {
bool _hasExplicitTypeArguments;
List<ExpressionJudgment> get positionalJudgments => positional.cast();
List<NamedExpressionJudgment> get namedJudgments => named.cast();
ArgumentsJudgment(List<Expression> positional,
{List<DartType> types, List<NamedExpression> named})
: _hasExplicitTypeArguments = types != null && types.isNotEmpty,
super(positional, types: types, named: named);
static void setNonInferrableArgumentTypes(
ArgumentsJudgment arguments, List<DartType> types) {
arguments.types.clear();
arguments.types.addAll(types);
arguments._hasExplicitTypeArguments = true;
}
static void removeNonInferrableArgumentTypes(ArgumentsJudgment arguments) {
arguments.types.clear();
arguments._hasExplicitTypeArguments = false;
}
}
/// Shadow object for [AsExpression].
class AsJudgment extends AsExpression implements ExpressionJudgment {
DartType inferredType;
AsJudgment(Expression operand, DartType type) : super(operand, type);
ExpressionJudgment get judgment => operand;
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferrer.inferExpression(factory, judgment, const UnknownType(), false);
inferredType = type;
inferrer.listener.asExpression(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing an assert initializer in kernel form.
class AssertInitializerJudgment extends AssertInitializer
implements InitializerJudgment {
AssertInitializerJudgment(AssertStatement statement) : super(statement);
AssertStatementJudgment get judgment => statement;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
inferrer.inferStatement(factory, judgment);
inferrer.listener.assertInitializer(this, fileOffset);
}
}
/// Concrete shadow object representing an assertion statement in kernel form.
class AssertStatementJudgment extends AssertStatement
implements StatementJudgment {
AssertStatementJudgment(Expression condition,
{Expression message, int conditionStartOffset, int conditionEndOffset})
: super(condition,
message: message,
conditionStartOffset: conditionStartOffset,
conditionEndOffset: conditionEndOffset);
ExpressionJudgment get conditionJudgment => condition;
ExpressionJudgment get messageJudgment => message;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var conditionJudgment = this.conditionJudgment;
var messageJudgment = this.messageJudgment;
var expectedType = inferrer.coreTypes.boolClass.rawType;
inferrer.inferExpression(
factory, conditionJudgment, expectedType, !inferrer.isTopLevel);
inferrer.ensureAssignable(expectedType, conditionJudgment.inferredType,
conditionJudgment, conditionJudgment.fileOffset);
if (messageJudgment != null) {
inferrer.inferExpression(
factory, messageJudgment, const UnknownType(), false);
}
inferrer.listener.assertStatement(this, fileOffset);
}
}
/// Shadow object for [AwaitExpression].
class AwaitJudgment extends AwaitExpression implements ExpressionJudgment {
DartType inferredType;
AwaitJudgment(Expression operand) : super(operand);
ExpressionJudgment get judgment => operand;
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
if (!inferrer.typeSchemaEnvironment.isEmptyContext(typeContext)) {
typeContext = inferrer.wrapFutureOrType(typeContext);
}
var judgment = this.judgment;
inferrer.inferExpression(factory, judgment, typeContext, true);
inferredType =
inferrer.typeSchemaEnvironment.unfutureType(judgment.inferredType);
inferrer.listener.awaitExpression(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a statement block in kernel form.
class BlockJudgment extends Block implements StatementJudgment {
BlockJudgment(List<Statement> statements) : super(statements);
List<Statement> get judgments => statements;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
for (var judgment in judgments) {
inferrer.inferStatement(factory, judgment);
}
inferrer.listener.block(this, fileOffset);
}
}
/// Concrete shadow object representing a boolean literal in kernel form.
class BoolJudgment extends BoolLiteral implements ExpressionJudgment {
DartType inferredType;
BoolJudgment(bool value) : super(value);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferredType = inferrer.coreTypes.boolClass.rawType;
inferrer.listener.boolLiteral(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a break statement in kernel form.
class BreakJudgment extends BreakStatement implements StatementJudgment {
BreakJudgment(LabeledStatement target) : super(target);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
// No inference needs to be done.
}
}
/// Concrete shadow object representing a continue statement in kernel form.
class ContinueJudgment extends BreakStatement implements StatementJudgment {
ContinueJudgment(LabeledStatement target) : super(target);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
// No inference needs to be done.
inferrer.listener.breakStatement(this, fileOffset);
}
}
/// Concrete shadow object representing a cascade expression.
///
/// A cascade expression of the form `a..b()..c()` is represented as the kernel
/// expression:
///
/// let v = a in
/// let _ = v.b() in
/// let _ = v.c() in
/// v
///
/// In the documentation that follows, `v` is referred to as the "cascade
/// variable"--this is the variable that remembers the value of the expression
/// preceding the first `..` while the cascades are being evaluated.
///
/// After constructing a [ShadowCascadeExpression], the caller should
/// call [finalize] with an expression representing the expression after the
/// `..`. If a further `..` follows that expression, the caller should call
/// [extend] followed by [finalize] for each subsequent cascade.
class ShadowCascadeExpression extends Let implements ExpressionJudgment {
DartType inferredType;
/// Pointer to the last "let" expression in the cascade.
Let nextCascade;
/// Creates a [ShadowCascadeExpression] using [variable] as the cascade
/// variable. Caller is responsible for ensuring that [variable]'s
/// initializer is the expression preceding the first `..` of the cascade
/// expression.
ShadowCascadeExpression(VariableDeclarationJudgment variable)
: super(
variable,
makeLet(new VariableDeclaration.forValue(new _UnfinishedCascade()),
new VariableGet(variable))) {
nextCascade = body;
}
/// Adds a new unfinalized section to the end of the cascade. Should be
/// called after the previous cascade section has been finalized.
void extend() {
assert(nextCascade.variable.initializer is! _UnfinishedCascade);
Let newCascade = makeLet(
new VariableDeclaration.forValue(new _UnfinishedCascade()),
nextCascade.body);
nextCascade.body = newCascade;
newCascade.parent = nextCascade;
nextCascade = newCascade;
}
/// Finalizes the last cascade section with the given [expression].
void finalize(Expression expression) {
assert(nextCascade.variable.initializer is _UnfinishedCascade);
nextCascade.variable.initializer = expression;
expression.parent = nextCascade.variable;
}
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var lhsType = inferrer.inferExpression(
factory, variable.initializer, typeContext, true);
if (inferrer.strongMode) {
variable.type = lhsType;
}
Let section = body;
while (true) {
inferrer.inferExpression(
factory, section.variable.initializer, const UnknownType(), false);
if (section.body is! Let) break;
section = section.body;
}
inferrer.listener.cascadeExpression(this, fileOffset, lhsType);
return lhsType;
}
}
/// Shadow object representing a class in kernel form.
class ShadowClass extends Class {
ClassInferenceInfo _inferenceInfo;
ShadowClass(
{String name,
Supertype supertype,
Supertype mixedInType,
List<TypeParameter> typeParameters,
List<Supertype> implementedTypes,
List<Procedure> procedures,
List<Field> fields})
: super(
name: name,
supertype: supertype,
mixedInType: mixedInType,
typeParameters: typeParameters,
implementedTypes: implementedTypes,
procedures: procedures,
fields: fields);
/// Resolves all forwarding nodes for this class, propagates covariance
/// annotations, and creates forwarding stubs as needed.
void finalizeCovariance(InterfaceResolver interfaceResolver) {
interfaceResolver.finalizeCovariance(
this, _inferenceInfo.gettersAndMethods);
interfaceResolver.finalizeCovariance(this, _inferenceInfo.setters);
interfaceResolver.recordInstrumentation(this);
}
/// Creates API members for this class.
void setupApiMembers(InterfaceResolver interfaceResolver) {
interfaceResolver.createApiMembers(this, _inferenceInfo.gettersAndMethods,
_inferenceInfo.setters, _inferenceInfo.builder.library);
}
static void clearClassInferenceInfo(ShadowClass class_) {
class_._inferenceInfo = null;
}
static ClassInferenceInfo getClassInferenceInfo(Class class_) {
if (class_ is ShadowClass) return class_._inferenceInfo;
return null;
}
/// Initializes the class inference information associated with the given
/// [class_], starting with the fact that it is associated with the given
/// [builder].
static void setBuilder(ShadowClass class_, SourceClassBuilder builder) {
class_._inferenceInfo = new ClassInferenceInfo(builder);
}
}
/// Abstract shadow object representing a complex assignment in kernel form.
///
/// Since there are many forms a complex assignment might have been desugared
/// to, this class wraps the desugared assignment rather than extending it.
///
/// TODO(paulberry): once we know exactly what constitutes a "complex
/// assignment", document it here.
abstract class ShadowComplexAssignment extends ShadowSyntheticExpression {
/// In a compound assignment, the expression that reads the old value, or
/// `null` if this is not a compound assignment.
Expression read;
/// The expression appearing on the RHS of the assignment.
final Expression rhs;
/// The expression that performs the write (e.g. `a.[]=(b, a.[](b) + 1)` in
/// `++a[b]`).
Expression write;
/// In a compound assignment without shortcut semantics, the expression that
/// combines the old and new values, or `null` if this is not a compound
/// assignment.
///
/// Note that in a compound assignment with shortcut semantics, this is not
/// used; [nullAwareCombiner] is used instead.
MethodInvocation combiner;
/// In a compound assignment with shortcut semantics, the conditional
/// expression that determines whether the assignment occurs.
///
/// Note that in a compound assignment without shortcut semantics, this is not
/// used; [combiner] is used instead.
ConditionalExpression nullAwareCombiner;
/// Indicates whether the expression arose from a post-increment or
/// post-decrement.
bool isPostIncDec = false;
/// Indicates whether the expression arose from a pre-increment or
/// pre-decrement.
bool isPreIncDec = false;
ShadowComplexAssignment(this.rhs) : super(null);
String toString() {
var parts = _getToStringParts();
return '${runtimeType}(${parts.join(', ')})';
}
List<String> _getToStringParts() {
List<String> parts = [];
if (desugared != null) parts.add('desugared=$desugared');
if (read != null) parts.add('read=$read');
if (rhs != null) parts.add('rhs=$rhs');
if (write != null) parts.add('write=$write');
if (combiner != null) parts.add('combiner=$combiner');
if (nullAwareCombiner != null) {
parts.add('nullAwareCombiner=$nullAwareCombiner');
}
if (isPostIncDec) parts.add('isPostIncDec=true');
if (isPreIncDec) parts.add('isPreIncDec=true');
return parts;
}
DartType _getWriteType(ShadowTypeInferrer inferrer) => unhandled(
'$runtimeType', 'ShadowComplexAssignment._getWriteType', -1, null);
_ComplexAssignmentInferenceResult
_inferRhs<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType readType,
DartType writeContext) {
assert(writeContext != null);
var writeOffset = write == null ? -1 : write.fileOffset;
Procedure combinerMember;
DartType combinedType;
if (combiner != null) {
bool isOverloadedArithmeticOperator = false;
combinerMember =
inferrer.findMethodInvocationMember(readType, combiner, silent: true);
if (combinerMember is Procedure) {
isOverloadedArithmeticOperator = inferrer.typeSchemaEnvironment
.isOverloadedArithmeticOperatorAndType(combinerMember, readType);
}
DartType rhsType;
var combinerType =
inferrer.getCalleeFunctionType(combinerMember, readType, false);
if (isPreIncDec || isPostIncDec) {
rhsType = inferrer.coreTypes.intClass.rawType;
} else {
// It's not necessary to call _storeLetType for [rhs] because the RHS
// is always passed directly to the combiner; it's never stored in a
// temporary variable first.
assert(identical(combiner.arguments.positional.first, rhs));
// Analyzer uses a null context for the RHS here.
// TODO(paulberry): improve on this.
rhsType =
inferrer.inferExpression(factory, rhs, const UnknownType(), true);
// Do not use rhs after this point because it may be a Shadow node
// that has been replaced in the tree with its desugaring.
var expectedType = getPositionalParameterType(combinerType, 0);
inferrer.ensureAssignable(expectedType, rhsType,
combiner.arguments.positional.first, combiner.fileOffset);
}
if (isOverloadedArithmeticOperator) {
combinedType = inferrer.typeSchemaEnvironment
.getTypeOfOverloadedArithmetic(readType, rhsType);
} else {
combinedType = combinerType.returnType;
}
var checkKind = inferrer.preCheckInvocationContravariance(read, readType,
combinerMember, combiner, combiner.arguments, combiner);
var replacedCombiner = inferrer.handleInvocationContravariance(
checkKind,
combiner,
combiner.arguments,
combiner,
combinedType,
combinerType,
combiner.fileOffset);
var replacedCombiner2 = inferrer.ensureAssignable(
writeContext, combinedType, replacedCombiner, writeOffset);
if (replacedCombiner2 != null) {
replacedCombiner = replacedCombiner2;
}
_storeLetType(inferrer, replacedCombiner, combinedType);
} else {
var rhsType = inferrer.inferExpression(
factory, rhs, writeContext ?? const UnknownType(), true);
var replacedRhs =
inferrer.ensureAssignable(writeContext, rhsType, rhs, writeOffset);
_storeLetType(inferrer, replacedRhs ?? rhs, rhsType);
if (nullAwareCombiner != null) {
MethodInvocation equalsInvocation = nullAwareCombiner.condition;
inferrer.findMethodInvocationMember(
greatestClosure(inferrer.coreTypes, writeContext), equalsInvocation,
silent: true);
// Note: the case of readType=null only happens for erroneous code.
combinedType = readType == null
? rhsType
: inferrer.typeSchemaEnvironment
.getLeastUpperBound(readType, rhsType);
if (inferrer.strongMode) {
nullAwareCombiner.staticType = combinedType;
}
} else {
combinedType = rhsType;
}
}
if (this is ShadowIndexAssign) {
_storeLetType(inferrer, write, const VoidType());
} else {
_storeLetType(inferrer, write, combinedType);
}
return new _ComplexAssignmentInferenceResult(combinerMember,
isPostIncDec ? (readType ?? const DynamicType()) : combinedType);
}
}
/// Abstract shadow object representing a complex assignment involving a
/// receiver.
abstract class ShadowComplexAssignmentWithReceiver
extends ShadowComplexAssignment {
/// The receiver of the assignment target (e.g. `a` in `a[b] = c`).
final Expression receiver;
/// Indicates whether this assignment uses `super`.
final bool isSuper;
ShadowComplexAssignmentWithReceiver(
this.receiver, Expression rhs, this.isSuper)
: super(rhs);
@override
List<String> _getToStringParts() {
var parts = super._getToStringParts();
if (receiver != null) parts.add('receiver=$receiver');
if (isSuper) parts.add('isSuper=true');
return parts;
}
DartType _inferReceiver<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
if (receiver != null) {
var receiverType = inferrer.inferExpression(
factory, receiver, const UnknownType(), true);
_storeLetType(inferrer, receiver, receiverType);
return receiverType;
} else if (isSuper) {
return inferrer.classHierarchy.getTypeAsInstanceOf(
inferrer.thisType, inferrer.thisType.classNode.supertype.classNode);
} else {
return inferrer.thisType;
}
}
}
/// Concrete shadow object representing a conditional expression in kernel form.
/// Shadow object for [ConditionalExpression].
class ConditionalJudgment extends ConditionalExpression
implements ExpressionJudgment {
DartType inferredType;
ExpressionJudgment get conditionJudgment => condition;
ExpressionJudgment get thenJudgment => then;
ExpressionJudgment get otherwiseJudgment => otherwise;
ConditionalJudgment(
Expression condition, Expression then, Expression otherwise)
: super(condition, then, otherwise, null);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var conditionJudgment = this.conditionJudgment;
var thenJudgment = this.thenJudgment;
var otherwiseJudgment = this.otherwiseJudgment;
var expectedType = inferrer.coreTypes.boolClass.rawType;
inferrer.inferExpression(
factory, conditionJudgment, expectedType, !inferrer.isTopLevel);
inferrer.ensureAssignable(expectedType, conditionJudgment.inferredType,
condition, condition.fileOffset);
inferrer.inferExpression(factory, thenJudgment, typeContext, true);
bool useLub = _forceLub || typeContext == null;
inferrer.inferExpression(factory, otherwiseJudgment, typeContext, useLub);
inferredType = useLub
? inferrer.typeSchemaEnvironment.getLeastUpperBound(
thenJudgment.inferredType, otherwiseJudgment.inferredType)
: greatestClosure(inferrer.coreTypes, typeContext);
if (inferrer.strongMode) {
staticType = inferredType;
}
inferrer.listener.conditionalExpression(this, fileOffset, inferredType);
return inferredType;
}
}
/// Shadow object for [ConstructorInvocation].
class ShadowConstructorInvocation extends ConstructorInvocation
implements ExpressionJudgment {
DartType inferredType;
final Member _initialTarget;
/// If the constructor invocation points to a redirected constructor, the type
/// arguments to be supplied to redirected constructor, in terms of those
/// supplied to the original constructor.
///
/// For example, in the code below:
///
/// class C<T> {
/// C() = D<List<T>>;
/// }
/// main() {
/// new C<int>();
/// }
///
/// [targetTypeArguments] is a list containing the type `List<T>`.
final List<DartType> targetTypeArguments;
ShadowConstructorInvocation(Constructor target, this.targetTypeArguments,
this._initialTarget, Arguments arguments,
{bool isConst: false})
: super(target, arguments, isConst: isConst);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var library = inferrer.engine.beingInferred[target];
if (library != null) {
// There is a cyclic dependency where inferring the types of the
// initializing formals of a constructor required us to infer the
// corresponding field type which required us to know the type of the
// constructor.
var name = target.enclosingClass.name;
if (target.name.name != '') name += '.${target.name.name}';
library.addProblem(
templateCantInferTypeDueToCircularity.withArguments(name),
target.fileOffset,
name.length,
target.fileUri);
for (var declaration in target.function.positionalParameters) {
declaration.type ??= const DynamicType();
}
for (var declaration in target.function.namedParameters) {
declaration.type ??= const DynamicType();
}
} else if ((library = inferrer.engine.toBeInferred[target]) != null) {
inferrer.engine.toBeInferred.remove(target);
inferrer.engine.beingInferred[target] = library;
for (var declaration in target.function.positionalParameters) {
inferrer.engine.inferInitializingFormal(declaration, target);
}
for (var declaration in target.function.namedParameters) {
inferrer.engine.inferInitializingFormal(declaration, target);
}
inferrer.engine.beingInferred.remove(target);
}
var inferredType = inferrer.inferInvocation(
factory,
typeContext,
fileOffset,
_initialTarget.function.functionType,
computeConstructorReturnType(_initialTarget),
arguments,
isConst: isConst);
if (inferrer.strongMode &&
!inferrer.isTopLevel &&
inferrer.typeSchemaEnvironment.isSuperBounded(inferredType)) {
inferrer.helper.addProblem(
templateCantUseSuperBoundedTypeForInstanceCreation
.withArguments(inferredType),
fileOffset,
noLength);
}
inferrer.listener
.constructorInvocation(this, fileOffset, target, inferredType);
if (isRedirected(this)) {
InterfaceType returnType = inferredType;
List<DartType> initialTypeArguments;
if (inferrer.strongMode) {
initialTypeArguments = returnType.typeArguments;
} else {
int requiredTypeArgumentsCount = returnType.typeArguments.length;
int suppliedTypeArgumentsCount = arguments.types.length;
initialTypeArguments = arguments.types.toList(growable: true)
..length = requiredTypeArgumentsCount;
for (int i = suppliedTypeArgumentsCount;
i < requiredTypeArgumentsCount;
i++) {
initialTypeArguments[i] = const DynamicType();
}
}
Substitution substitution = Substitution.fromPairs(
_initialTarget.function.typeParameters, initialTypeArguments);
arguments.types.clear();
for (DartType argument in targetTypeArguments) {
arguments.types.add(substitution.substituteType(argument));
}
}
return inferredType;
}
/// Determines whether the given [ShadowConstructorInvocation] represents an
/// invocation of a redirected factory constructor.
///
/// This is static to avoid introducing a method that would be visible to the
/// kernel.
static bool isRedirected(ShadowConstructorInvocation expression) {
return !identical(expression._initialTarget, expression.target);
}
}
/// Concrete shadow object representing a continue statement from a switch
/// statement, in kernel form.
class ContinueSwitchJudgment extends ContinueSwitchStatement
implements StatementJudgment {
ContinueSwitchJudgment(SwitchCase target) : super(target);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
// No inference needs to be done.
inferrer.listener.continueSwitchStatement(this, fileOffset);
}
}
/// Shadow object representing a deferred check in kernel form.
class ShadowDeferredCheck extends Let implements ExpressionJudgment {
DartType inferredType;
ShadowDeferredCheck(VariableDeclaration variable, Expression body)
: super(variable, body);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
// Since the variable is not used in the body we don't need to type infer
// it. We can just type infer the body.
var inferredType =
inferrer.inferExpression(factory, body, typeContext, true);
inferrer.listener.deferredCheck(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a do loop in kernel form.
class DoJudgment extends DoStatement implements StatementJudgment {
DoJudgment(Statement body, Expression condition) : super(body, condition);
StatementJudgment get bodyJudgment => body;
ExpressionJudgment get conditionJudgment => condition;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var conditionJudgment = this.conditionJudgment;
inferrer.inferStatement(factory, bodyJudgment);
var boolType = inferrer.coreTypes.boolClass.rawType;
inferrer.inferExpression(
factory, conditionJudgment, boolType, !inferrer.isTopLevel);
inferrer.ensureAssignable(boolType, conditionJudgment.inferredType,
condition, condition.fileOffset);
inferrer.listener.doStatement(this, fileOffset);
}
}
/// Concrete shadow object representing a double literal in kernel form.
class DoubleJudgment extends DoubleLiteral implements ExpressionJudgment {
DartType inferredType;
DoubleJudgment(double value) : super(value);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferredType = inferrer.coreTypes.doubleClass.rawType;
inferrer.listener.doubleLiteral(this, fileOffset, inferredType);
return inferredType;
}
}
/// Common base class for shadow objects representing expressions in kernel
/// form.
abstract class ExpressionJudgment implements Expression {
DartType inferredType;
/// Calls back to [inferrer] to perform type inference for whatever concrete
/// type of [ExpressionJudgment] this is.
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext);
}
/// Concrete shadow object representing an empty statement in kernel form.
class EmptyStatementJudgment extends EmptyStatement
implements StatementJudgment {
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
// No inference needs to be done.
}
}
/// Concrete shadow object representing an expression statement in kernel form.
class ExpressionStatementJudgment extends ExpressionStatement
implements StatementJudgment {
ExpressionStatementJudgment(Expression expression) : super(expression);
Expression get judgment => expression;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
inferrer.inferExpression(factory, judgment, const UnknownType(), false);
inferrer.listener.expressionStatement(this, fileOffset);
}
}
/// Shadow object for [StaticInvocation] when the procedure being invoked is a
/// factory constructor.
class ShadowFactoryConstructorInvocation extends StaticInvocation
implements ExpressionJudgment {
DartType inferredType;
final Member _initialTarget;
/// If the factory invocation points to a redirected factory, the type
/// arguments to be supplied to redirected constructor, in terms of those
/// supplied to the original constructor.
///
/// For example, in the code below:
///
/// class C<T> {
/// C() = D<List<T>>;
/// }
/// main() {
/// new C<int>();
/// }
///
/// [targetTypeArguments] is a list containing the type `List<T>`.
final List<DartType> targetTypeArguments;
ShadowFactoryConstructorInvocation(Procedure target, this.targetTypeArguments,
this._initialTarget, Arguments arguments,
{bool isConst: false})
: super(target, arguments, isConst: isConst);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var inferredType = inferrer.inferInvocation(
factory,
typeContext,
fileOffset,
_initialTarget.function.functionType,
computeConstructorReturnType(_initialTarget),
arguments);
inferrer.listener
.constructorInvocation(this, fileOffset, target, inferredType);
if (isRedirected(this)) {
InterfaceType returnType = inferredType;
List<DartType> initialTypeArguments;
if (inferrer.strongMode) {
initialTypeArguments = returnType.typeArguments;
} else {
int requiredTypeArgumentsCount = returnType.typeArguments.length;
int suppliedTypeArgumentsCount = arguments.types.length;
initialTypeArguments = arguments.types.toList(growable: true)
..length = requiredTypeArgumentsCount;
for (int i = suppliedTypeArgumentsCount;
i < requiredTypeArgumentsCount;
i++) {
initialTypeArguments[i] = const DynamicType();
}
}
Substitution substitution = Substitution.fromPairs(
_initialTarget.function.typeParameters, initialTypeArguments);
arguments.types.clear();
for (DartType argument in targetTypeArguments) {
arguments.types.add(substitution.substituteType(argument));
}
}
return inferredType;
}
/// Determines whether the given [ShadowConstructorInvocation] represents an
/// invocation of a redirected factory constructor.
///
/// This is static to avoid introducing a method that would be visible to the
/// kernel.
static bool isRedirected(ShadowFactoryConstructorInvocation expression) {
return !identical(expression._initialTarget, expression.target);
}
}
/// Concrete shadow object representing a field in kernel form.
class ShadowField extends Field implements ShadowMember {
@override
InferenceNode inferenceNode;
ShadowTypeInferrer _typeInferrer;
final bool _isImplicitlyTyped;
ShadowField(Name name, this._isImplicitlyTyped, {Uri fileUri})
: super(name, fileUri: fileUri) {}
@override
void setInferredType(
TypeInferenceEngine engine, Uri uri, DartType inferredType) {
type = inferredType;
}
static bool hasTypeInferredFromInitializer(ShadowField field) =>
field.inferenceNode is FieldInitializerInferenceNode;
static bool isImplicitlyTyped(ShadowField field) => field._isImplicitlyTyped;
static void setInferenceNode(ShadowField field, InferenceNode node) {
assert(field.inferenceNode == null);
field.inferenceNode = node;
}
}
/// Concrete shadow object representing a field initializer in kernel form.
class ShadowFieldInitializer extends FieldInitializer
implements InitializerJudgment {
ShadowFieldInitializer(Field field, Expression value) : super(field, value);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var initializerType =
inferrer.inferExpression(factory, value, field.type, true);
inferrer.ensureAssignable(field.type, initializerType, value, fileOffset);
inferrer.listener.fieldInitializer(this, fileOffset, field);
}
}
/// Concrete shadow object representing a for-in loop in kernel form.
class ShadowForInStatement extends ForInStatement implements StatementJudgment {
final bool _declaresVariable;
final ShadowSyntheticExpression _syntheticAssignment;
ShadowForInStatement(VariableDeclaration variable, Expression iterable,
Statement body, this._declaresVariable, this._syntheticAssignment,
{bool isAsync: false})
: super(variable, iterable, body, isAsync: isAsync);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var iterableClass = isAsync
? inferrer.coreTypes.streamClass
: inferrer.coreTypes.iterableClass;
DartType context;
bool typeNeeded = false;
bool typeChecksNeeded = !inferrer.isTopLevel;
VariableDeclarationJudgment variable;
var syntheticAssignment = _syntheticAssignment;
kernel.Expression syntheticWrite;
DartType syntheticWriteType;
if (_declaresVariable) {
variable = this.variable;
if (inferrer.strongMode && variable._implicitlyTyped) {
typeNeeded = true;
context = const UnknownType();
} else {
context = variable.type;
}
} else if (syntheticAssignment is ShadowComplexAssignment) {
syntheticWrite = syntheticAssignment.write;
syntheticWriteType =
context = syntheticAssignment._getWriteType(inferrer);
} else {
context = const UnknownType();
}
context = inferrer.wrapType(context, iterableClass);
var inferredExpressionType = inferrer.resolveTypeParameter(
inferrer.inferExpression(
factory, iterable, context, typeNeeded || typeChecksNeeded));
inferrer.ensureAssignable(
inferrer.wrapType(const DynamicType(), iterableClass),
inferredExpressionType,
iterable,
iterable.fileOffset);
DartType inferredType;
if (typeNeeded || typeChecksNeeded) {
inferredType = const DynamicType();
if (inferredExpressionType is InterfaceType) {
InterfaceType supertype = inferrer.classHierarchy
.getTypeAsInstanceOf(inferredExpressionType, iterableClass);
if (supertype != null) {
inferredType = supertype.typeArguments[0];
}
}
if (typeNeeded) {
inferrer.instrumentation?.record(inferrer.uri, variable.fileOffset,
'type', new InstrumentationValueForType(inferredType));
variable.type = inferredType;
}
if (!_declaresVariable) {
this.variable.type = inferredType;
}
}
inferrer.inferStatement(factory, body);
if (_declaresVariable) {
inferrer.inferMetadataKeepingHelper(factory, variable.annotations);
var tempVar =
new VariableDeclaration(null, type: inferredType, isFinal: true);
var variableGet = new VariableGet(tempVar)
..fileOffset = this.variable.fileOffset;
var implicitDowncast = inferrer.ensureAssignable(
variable.type, inferredType, variableGet, fileOffset);
if (implicitDowncast != null) {
this.variable = tempVar..parent = this;
variable.initializer = implicitDowncast..parent = variable;
body = combineStatements(variable, body)..parent = this;
}
} else if (syntheticAssignment is ShadowSyntheticExpression) {
if (syntheticAssignment is ShadowComplexAssignment) {
inferrer.ensureAssignable(
greatestClosure(inferrer.coreTypes, syntheticWriteType),
this.variable.type,
syntheticAssignment.rhs,
syntheticAssignment.rhs.fileOffset);
if (syntheticAssignment is ShadowPropertyAssign) {
syntheticAssignment._handleWriteContravariance(
inferrer, inferrer.thisType);
}
}
syntheticAssignment._replaceWithDesugared();
}
if (syntheticWrite is VariableSet) {
inferrer.listener.forInStatement(
this,
fileOffset,
variable?.fileOffset,
variable?.type,
syntheticWrite.fileOffset,
syntheticWrite.variable.type,
syntheticWrite.variable.fileOffset,
null);
} else if (syntheticWrite is PropertySet) {
inferrer.listener.forInStatement(
this,
fileOffset,
variable?.fileOffset,
variable?.type,
syntheticWrite.fileOffset,
syntheticWrite.interfaceTarget?.setterType,
null,
syntheticWrite.interfaceTarget);
} else if (syntheticWrite is StaticSet) {
inferrer.listener.forInStatement(
this,
fileOffset,
variable?.fileOffset,
variable?.type,
syntheticWrite.fileOffset,
syntheticWrite.target.setterType,
null,
syntheticWrite.target);
} else if (syntheticWrite == null ||
syntheticWrite is ShadowSyntheticExpression) {
inferrer.listener.forInStatement(this, fileOffset, variable?.fileOffset,
variable?.type, null, null, null, null);
} else {
throw new UnimplementedError(
'(${syntheticWrite.runtimeType}) $syntheticWrite');
}
}
}
/// Concrete shadow object representing a classic for loop in kernel form.
class ShadowForStatement extends ForStatement implements StatementJudgment {
ShadowForStatement(List<VariableDeclaration> variables, Expression condition,
List<Expression> updates, Statement body)
: super(variables, condition, updates, body);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
for (var variable in variables) {
inferrer.inferStatement(factory, variable);
}
if (condition != null) {
var expectedType = inferrer.coreTypes.boolClass.rawType;
var conditionType = inferrer.inferExpression(
factory, condition, expectedType, !inferrer.isTopLevel);
inferrer.ensureAssignable(
expectedType, conditionType, condition, condition.fileOffset);
}
for (var update in updates) {
inferrer.inferExpression(factory, update, const UnknownType(), false);
}
inferrer.inferStatement(factory, body);
inferrer.listener.forStatement(this, fileOffset);
}
}
/// Concrete shadow object representing a local function declaration in kernel
/// form.
class ShadowFunctionDeclaration extends FunctionDeclaration
implements StatementJudgment {
bool _hasImplicitReturnType = false;
ShadowFunctionDeclaration(VariableDeclaration variable, FunctionNode function)
: super(variable, function);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
inferrer.inferMetadataKeepingHelper(factory, variable.annotations);
inferrer.inferLocalFunction(
factory,
function,
null,
fileOffset,
_hasImplicitReturnType
? (inferrer.strongMode ? null : const DynamicType())
: function.returnType);
var inferredType = variable.type = function.functionType;
inferrer.listener.functionDeclaration(this, fileOffset, inferredType);
}
static void setHasImplicitReturnType(
ShadowFunctionDeclaration declaration, bool hasImplicitReturnType) {
declaration._hasImplicitReturnType = hasImplicitReturnType;
}
}
/// Concrete shadow object representing a function expression in kernel form.
class ShadowFunctionExpression extends FunctionExpression
implements ExpressionJudgment {
DartType inferredType;
ShadowFunctionExpression(FunctionNode function) : super(function);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var inferredType = inferrer.inferLocalFunction(
factory, function, typeContext, fileOffset, null);
inferrer.listener.functionExpression(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing an if-null expression.
///
/// An if-null expression of the form `a ?? b` is represented as the kernel
/// expression:
///
/// let v = a in v == null ? b : v
class ShadowIfNullExpression extends Let implements ExpressionJudgment {
DartType inferredType;
ShadowIfNullExpression(VariableDeclaration variable, Expression body)
: super(variable, body);
@override
ConditionalExpression get body => super.body;
/// Returns the expression to the left of `??`.
Expression get _lhs => variable.initializer;
/// Returns the expression to the right of `??`.
Expression get _rhs => body.then;
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
// To infer `e0 ?? e1` in context K:
// - Infer e0 in context K to get T0
var lhsType = inferrer.inferExpression(factory, _lhs, typeContext, true);
if (inferrer.strongMode) {
variable.type = lhsType;
}
// - Let J = T0 if K is `?` else K.
// - Infer e1 in context J to get T1
bool useLub = _forceLub || typeContext is UnknownType;
var rhsType = typeContext is UnknownType
? inferrer.inferExpression(factory, _rhs, lhsType, true)
: inferrer.inferExpression(factory, _rhs, typeContext, _forceLub);
// - Let T = greatest closure of K with respect to `?` if K is not `_`, else
// UP(t0, t1)
// - Then the inferred type is T.
var inferredType = useLub
? inferrer.typeSchemaEnvironment.getLeastUpperBound(lhsType, rhsType)
: greatestClosure(inferrer.coreTypes, typeContext);
if (inferrer.strongMode) {
body.staticType = inferredType;
}
inferrer.listener.ifNull(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing an if statement in kernel form.
class IfJudgment extends IfStatement implements StatementJudgment {
IfJudgment(Expression condition, Statement then, Statement otherwise)
: super(condition, then, otherwise);
ExpressionJudgment get conditionJudgment => condition;
StatementJudgment get thenJudgment => then;
StatementJudgment get otherwiseJudgment => otherwise;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var conditionJudgment = this.conditionJudgment;
var expectedType = inferrer.coreTypes.boolClass.rawType;
inferrer.inferExpression(
factory, conditionJudgment, expectedType, !inferrer.isTopLevel);
inferrer.ensureAssignable(expectedType, conditionJudgment.inferredType,
condition, condition.fileOffset);
inferrer.inferStatement(factory, thenJudgment);
if (otherwiseJudgment != null) {
inferrer.inferStatement(factory, otherwiseJudgment);
}
inferrer.listener.ifStatement(this, fileOffset);
}
}
/// Concrete shadow object representing an assignment to a target for which
/// assignment is not allowed.
class ShadowIllegalAssignment extends ShadowComplexAssignment {
ShadowIllegalAssignment(Expression rhs) : super(rhs);
@override
DartType _getWriteType(ShadowTypeInferrer inferrer) {
return const UnknownType();
}
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
if (write != null) {
inferrer.inferExpression(factory, write, const UnknownType(), false);
}
_replaceWithDesugared();
return const DynamicType();
}
}
/// Concrete shadow object representing an assignment to a target of the form
/// `a[b]`.
class ShadowIndexAssign extends ShadowComplexAssignmentWithReceiver {
/// In an assignment to an index expression, the index expression.
Expression index;
ShadowIndexAssign(Expression receiver, this.index, Expression rhs,
{bool isSuper: false})
: super(receiver, rhs, isSuper);
Arguments _getInvocationArguments(
ShadowTypeInferrer inferrer, Expression invocation) {
if (invocation is MethodInvocation) {
return invocation.arguments;
} else if (invocation is SuperMethodInvocation) {
return invocation.arguments;
} else {
throw unhandled("${invocation.runtimeType}", "_getInvocationArguments",
fileOffset, inferrer.uri);
}
}
@override
List<String> _getToStringParts() {
var parts = super._getToStringParts();
if (index != null) parts.add('index=$index');
return parts;
}
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var receiverType = _inferReceiver(inferrer, factory);
var writeMember = inferrer.findMethodInvocationMember(receiverType, write);
// To replicate analyzer behavior, we base type inference on the write
// member. TODO(paulberry): would it be better to use the read member
// when doing compound assignment?
var calleeType =
inferrer.getCalleeFunctionType(writeMember, receiverType, false);
DartType expectedIndexTypeForWrite;
DartType indexContext = const UnknownType();
DartType writeContext = const UnknownType();
if (calleeType.positionalParameters.length >= 2) {
// TODO(paulberry): we ought to get a context for the index expression
// from the index formal parameter, but analyzer doesn't so for now we
// replicate its behavior.
expectedIndexTypeForWrite = calleeType.positionalParameters[0];
writeContext = calleeType.positionalParameters[1];
}
var indexType =
inferrer.inferExpression(factory, index, indexContext, true);
_storeLetType(inferrer, index, indexType);
if (writeContext is! UnknownType) {
inferrer.ensureAssignable(
expectedIndexTypeForWrite,
indexType,
_getInvocationArguments(inferrer, write).positional[0],
write.fileOffset);
}
InvocationExpression read = this.read;
DartType readType;
if (read != null) {
var readMember =
inferrer.findMethodInvocationMember(receiverType, read, silent: true);
var calleeFunctionType =
inferrer.getCalleeFunctionType(readMember, receiverType, false);
inferrer.ensureAssignable(
getPositionalParameterType(calleeFunctionType, 0),
indexType,
_getInvocationArguments(inferrer, read).positional[0],
read.fileOffset);
readType = calleeFunctionType.returnType;
var desugaredInvocation = read is MethodInvocation ? read : null;
var checkKind = inferrer.preCheckInvocationContravariance(receiver,
receiverType, readMember, desugaredInvocation, read.arguments, read);
var replacedRead = inferrer.handleInvocationContravariance(
checkKind,
desugaredInvocation,
read.arguments,
read,
readType,
calleeFunctionType,
read.fileOffset);
_storeLetType(inferrer, replacedRead, readType);
}
var inferredResult = _inferRhs(inferrer, factory, readType, writeContext);
inferrer.listener.indexAssign(this, write.fileOffset, writeMember,
inferredResult.combiner, inferredResult.type);
_replaceWithDesugared();
return inferredResult.type;
}
}
/// Common base class for shadow objects representing initializers in kernel
/// form.
abstract class InitializerJudgment implements Initializer {
/// Performs type inference for whatever concrete type of [InitializerJudgment]
/// this is.
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory);
}
/// Concrete shadow object representing an integer literal in kernel form.
class IntJudgment extends IntLiteral implements ExpressionJudgment {
DartType inferredType;
IntJudgment(int value) : super(value);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferredType = inferrer.coreTypes.intClass.rawType;
inferrer.listener.intLiteral(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing an invalid initializer in kernel form.
class ShadowInvalidInitializer extends LocalInitializer
implements InitializerJudgment {
ShadowInvalidInitializer(VariableDeclaration variable) : super(variable);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
inferrer.inferExpression(
factory, variable.initializer, const UnknownType(), false);
inferrer.listener.invalidInitializer(this, fileOffset);
}
}
/// Concrete shadow object representing a non-inverted "is" test in kernel form.
class IsJudgment extends IsExpression implements ExpressionJudgment {
DartType inferredType;
ExpressionJudgment get judgment => operand;
IsJudgment(Expression operand, DartType type) : super(operand, type);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferrer.inferExpression(factory, judgment, const UnknownType(), false);
inferredType = inferrer.coreTypes.boolClass.rawType;
inferrer.listener.isExpression(this, fileOffset, type, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing an inverted "is" test in kernel form.
class IsNotJudgment extends Not implements ExpressionJudgment {
DartType inferredType;
@override
IsExpression get operand => super.operand;
ExpressionJudgment get judgment => operand.operand;
IsNotJudgment(Expression operand, DartType type, int charOffset)
: super(new IsExpression(operand, type)..fileOffset = charOffset);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
IsExpression isExpression = this.operand;
inferrer.inferExpression(factory, judgment, const UnknownType(), false);
inferredType = inferrer.coreTypes.boolClass.rawType;
inferrer.listener
.isNotExpression(this, fileOffset, isExpression.type, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a labeled statement in kernel form.
class LabeledStatementJudgment extends LabeledStatement
implements StatementJudgment {
LabeledStatementJudgment(Statement body) : super(body);
StatementJudgment get judgment => body;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
inferrer.inferStatement(factory, judgment);
inferrer.listener.labeledStatement(this, fileOffset);
}
}
/// Concrete shadow object representing a list literal in kernel form.
class ShadowListLiteral extends ListLiteral implements ExpressionJudgment {
DartType inferredType;
final DartType _declaredTypeArgument;
ShadowListLiteral(List<Expression> expressions,
{DartType typeArgument, bool isConst: false})
: _declaredTypeArgument = typeArgument,
super(expressions,
typeArgument: typeArgument ?? const DynamicType(),
isConst: isConst);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var listClass = inferrer.coreTypes.listClass;
var listType = listClass.thisType;
List<DartType> inferredTypes;
DartType inferredTypeArgument;
List<DartType> formalTypes;
List<DartType> actualTypes;
bool inferenceNeeded = _declaredTypeArgument == null && inferrer.strongMode;
bool typeChecksNeeded = !inferrer.isTopLevel;
if (inferenceNeeded || typeChecksNeeded) {
formalTypes = [];
actualTypes = [];
}
if (inferenceNeeded) {
inferredTypes = [const UnknownType()];
inferrer.typeSchemaEnvironment.inferGenericFunctionOrType(listType,
listClass.typeParameters, null, null, typeContext, inferredTypes,
isConst: isConst);
inferredTypeArgument = inferredTypes[0];
} else {
inferredTypeArgument = _declaredTypeArgument ?? const DynamicType();
}
if (inferenceNeeded || typeChecksNeeded) {
for (var expression in expressions) {
var expressionType = inferrer.inferExpression(factory, expression,
inferredTypeArgument, inferenceNeeded || typeChecksNeeded);
if (inferenceNeeded) {
formalTypes.add(listType.typeArguments[0]);
}
actualTypes.add(expressionType);
}
}
if (inferenceNeeded) {
inferrer.typeSchemaEnvironment.inferGenericFunctionOrType(
listType,
listClass.typeParameters,
formalTypes,
actualTypes,
typeContext,
inferredTypes);
inferredTypeArgument = inferredTypes[0];
inferrer.instrumentation?.record(inferrer.uri, fileOffset, 'typeArgs',
new InstrumentationValueForTypeArgs([inferredTypeArgument]));
typeArgument = inferredTypeArgument;
}
if (typeChecksNeeded) {
for (int i = 0; i < expressions.length; i++) {
inferrer.ensureAssignable(typeArgument, actualTypes[i], expressions[i],
expressions[i].fileOffset);
}
}
var inferredType = new InterfaceType(listClass, [inferredTypeArgument]);
inferrer.listener.listLiteral(this, fileOffset, inferredType);
return inferredType;
}
}
/// Shadow object for [LogicalExpression].
class ShadowLogicalExpression extends LogicalExpression
implements ExpressionJudgment {
DartType inferredType;
ShadowLogicalExpression(Expression left, String operator, Expression right)
: super(left, operator, right);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var boolType = inferrer.coreTypes.boolClass.rawType;
var leftType =
inferrer.inferExpression(factory, left, boolType, !inferrer.isTopLevel);
var rightType = inferrer.inferExpression(
factory, right, boolType, !inferrer.isTopLevel);
inferrer.ensureAssignable(boolType, leftType, left, left.fileOffset);
inferrer.ensureAssignable(boolType, rightType, right, right.fileOffset);
var inferredType = boolType;
inferrer.listener.logicalExpression(this, fileOffset, inferredType);
return inferredType;
}
}
/// Shadow object for synthetic assignments added at the top of a for-in loop.
///
/// This covers the case where a for-in loop refers to a variable decleared
/// elsewhere, so it is desugared into a for-in loop that assigns to the
/// variable at the top of the loop body.
class ShadowLoopAssignmentStatement extends ExpressionStatement
implements StatementJudgment {
ShadowLoopAssignmentStatement(Expression expression) : super(expression);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {}
}
/// Shadow object for [MapLiteral].
class ShadowMapLiteral extends MapLiteral implements ExpressionJudgment {
DartType inferredType;
final DartType _declaredKeyType;
final DartType _declaredValueType;
ShadowMapLiteral(List<MapEntry> entries,
{DartType keyType, DartType valueType, bool isConst: false})
: _declaredKeyType = keyType,
_declaredValueType = valueType,
super(entries,
keyType: keyType ?? const DynamicType(),
valueType: valueType ?? const DynamicType(),
isConst: isConst);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var mapClass = inferrer.coreTypes.mapClass;
var mapType = mapClass.thisType;
List<DartType> inferredTypes;
DartType inferredKeyType;
DartType inferredValueType;
List<DartType> formalTypes;
List<DartType> actualTypes;
assert((_declaredKeyType == null) == (_declaredValueType == null));
bool inferenceNeeded = _declaredKeyType == null && inferrer.strongMode;
bool typeChecksNeeded = !inferrer.isTopLevel;
if (inferenceNeeded || typeChecksNeeded) {
formalTypes = [];
actualTypes = [];
}
if (inferenceNeeded) {
inferredTypes = [const UnknownType(), const UnknownType()];
inferrer.typeSchemaEnvironment.inferGenericFunctionOrType(mapType,
mapClass.typeParameters, null, null, typeContext, inferredTypes,
isConst: isConst);
inferredKeyType = inferredTypes[0];
inferredValueType = inferredTypes[1];
} else {
inferredKeyType = _declaredKeyType ?? const DynamicType();
inferredValueType = _declaredValueType ?? const DynamicType();
}
if (inferenceNeeded || typeChecksNeeded) {
for (var entry in entries) {
var keyType = inferrer.inferExpression(factory, entry.key,
inferredKeyType, inferenceNeeded || typeChecksNeeded);
var valueType = inferrer.inferExpression(factory, entry.value,
inferredValueType, inferenceNeeded || typeChecksNeeded);
if (inferenceNeeded) {
formalTypes.addAll(mapType.typeArguments);
}
actualTypes.add(keyType);
actualTypes.add(valueType);
}
}
if (inferenceNeeded) {
inferrer.typeSchemaEnvironment.inferGenericFunctionOrType(
mapType,
mapClass.typeParameters,
formalTypes,
actualTypes,
typeContext,
inferredTypes);
inferredKeyType = inferredTypes[0];
inferredValueType = inferredTypes[1];
inferrer.instrumentation?.record(
inferrer.uri,
fileOffset,
'typeArgs',
new InstrumentationValueForTypeArgs(
[inferredKeyType, inferredValueType]));
keyType = inferredKeyType;
valueType = inferredValueType;
}
if (typeChecksNeeded) {
for (int i = 0; i < entries.length; i++) {
var entry = entries[i];
var key = entry.key;
inferrer.ensureAssignable(
keyType, actualTypes[2 * i], key, key.fileOffset);
var value = entry.value;
inferrer.ensureAssignable(
valueType, actualTypes[2 * i + 1], value, value.fileOffset);
}
}
var inferredType =
new InterfaceType(mapClass, [inferredKeyType, inferredValueType]);
inferrer.listener.mapLiteral(this, fileOffset, inferredType);
return inferredType;
}
}
/// Abstract shadow object representing a field or procedure in kernel form.
abstract class ShadowMember implements Member {
Uri get fileUri;
InferenceNode get inferenceNode;
void set inferenceNode(InferenceNode value);
void setInferredType(
TypeInferenceEngine engine, Uri uri, DartType inferredType);
static void resolveInferenceNode(Member member) {
if (member is ShadowMember) {
if (member.inferenceNode != null) {
member.inferenceNode.resolve();
member.inferenceNode = null;
}
}
}
}
/// Shadow object for [MethodInvocation].
class ShadowMethodInvocation extends MethodInvocation
implements ExpressionJudgment {
DartType inferredType;
/// Indicates whether this method invocation is a call to a `call` method
/// resulting from the invocation of a function expression.
final bool _isImplicitCall;
ShadowMethodInvocation(Expression receiver, Name name, Arguments arguments,
{bool isImplicitCall: false, Member interfaceTarget})
: _isImplicitCall = isImplicitCall,
super(receiver, name, arguments, interfaceTarget);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
return inferrer.inferMethodInvocation(
factory, this, receiver, fileOffset, _isImplicitCall, typeContext,
desugaredInvocation: this);
}
}
/// Concrete shadow object representing a named function expression.
///
/// Named function expressions are not legal in Dart, but they are accepted by
/// the parser and BodyBuilder for error recovery purposes.
///
/// A named function expression of the form `f() { ... }` is represented as the
/// kernel expression:
///
/// let f = () { ... } in f
class ShadowNamedFunctionExpression extends Let implements ExpressionJudgment {
DartType inferredType;
ShadowNamedFunctionExpression(VariableDeclaration variable)
: super(variable, new VariableGet(variable));
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var inferredType = inferrer.inferExpression(
factory, variable.initializer, typeContext, true);
if (inferrer.strongMode) variable.type = inferredType;
inferrer.listener.namedFunctionExpression(this, fileOffset, inferredType);
return inferredType;
}
}
/// Shadow object for [Not].
class ShadowNot extends Not implements ExpressionJudgment {
DartType inferredType;
ShadowNot(Expression operand) : super(operand);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
// First infer the receiver so we can look up the method that was invoked.
var boolType = inferrer.coreTypes.boolClass.rawType;
var actualType = inferrer.inferExpression(
factory, operand, boolType, !inferrer.isTopLevel);
inferrer.ensureAssignable(boolType, actualType, operand, fileOffset);
DartType inferredType = boolType;
inferrer.listener.not(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a null-aware method invocation.
///
/// A null-aware method invocation of the form `a?.b(...)` is represented as the
/// expression:
///
/// let v = a in v == null ? null : v.b(...)
class ShadowNullAwareMethodInvocation extends Let
implements ExpressionJudgment {
DartType inferredType;
ShadowNullAwareMethodInvocation(VariableDeclaration variable, Expression body)
: super(variable, body);
@override
ConditionalExpression get body => super.body;
MethodInvocation get _desugaredInvocation => body.otherwise;
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var inferredType = inferrer.inferMethodInvocation(
factory, this, variable.initializer, fileOffset, false, typeContext,
receiverVariable: variable, desugaredInvocation: _desugaredInvocation);
if (inferrer.strongMode) {
body.staticType = inferredType;
}
return inferredType;
}
}
/// Concrete shadow object representing a null-aware read from a property.
///
/// A null-aware property get of the form `a?.b` is represented as the kernel
/// expression:
///
/// let v = a in v == null ? null : v.b
class NullAwarePropertyGetJudgment extends Let implements ExpressionJudgment {
DartType inferredType;
NullAwarePropertyGetJudgment(
VariableDeclaration variable, ConditionalExpression body)
: super(variable, body);
@override
ConditionalExpression get body => super.body;
PropertyGet get _desugaredGet => body.otherwise;
ExpressionJudgment get receiverJudgment => variable.initializer;
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferrer.inferPropertyGet(
factory, this, receiverJudgment, fileOffset, typeContext,
receiverVariable: variable, desugaredGet: _desugaredGet);
if (inferrer.strongMode) {
body.staticType = inferredType;
}
return inferredType;
}
}
/// Concrete shadow object representing a null literal in kernel form.
class NullJudgment extends NullLiteral implements ExpressionJudgment {
DartType inferredType;
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferredType = inferrer.coreTypes.nullClass.rawType;
inferrer.listener
.nullLiteral(this, fileOffset, fileOffset == -1, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a procedure in kernel form.
class ShadowProcedure extends Procedure implements ShadowMember {
@override
InferenceNode inferenceNode;
final bool _hasImplicitReturnType;
ShadowProcedure(Name name, ProcedureKind kind, FunctionNode function,
this._hasImplicitReturnType,
{Uri fileUri, bool isAbstract: false})
: super(name, kind, function, fileUri: fileUri, isAbstract: isAbstract);
@override
void setInferredType(
TypeInferenceEngine engine, Uri uri, DartType inferredType) {
if (isSetter) {
if (function.positionalParameters.length > 0) {
function.positionalParameters[0].type = inferredType;
}
} else if (isGetter) {
function.returnType = inferredType;
} else {
unhandled("setInferredType", "not accessor", fileOffset, uri);
}
}
static bool hasImplicitReturnType(ShadowProcedure procedure) {
return procedure._hasImplicitReturnType;
}
}
/// Concrete shadow object representing an assignment to a property.
class ShadowPropertyAssign extends ShadowComplexAssignmentWithReceiver {
/// If this assignment uses null-aware access (`?.`), the conditional
/// expression that guards the access; otherwise `null`.
ConditionalExpression nullAwareGuard;
ShadowPropertyAssign(Expression receiver, Expression rhs,
{bool isSuper: false})
: super(receiver, rhs, isSuper);
@override
List<String> _getToStringParts() {
var parts = super._getToStringParts();
if (nullAwareGuard != null) parts.add('nullAwareGuard=$nullAwareGuard');
return parts;
}
@override
DartType _getWriteType(ShadowTypeInferrer inferrer) {
assert(receiver == null);
var receiverType = inferrer.thisType;
var writeMember = inferrer.findPropertySetMember(receiverType, write);
return inferrer.getSetterType(writeMember, receiverType);
}
Object _handleWriteContravariance(
ShadowTypeInferrer inferrer, DartType receiverType) {
return inferrer.findPropertySetMember(receiverType, write);
}
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var receiverType = _inferReceiver(inferrer, factory);
DartType readType;
if (read != null) {
var readMember =
inferrer.findPropertyGetMember(receiverType, read, silent: true);
readType = inferrer.getCalleeType(readMember, receiverType);
inferrer.handlePropertyGetContravariance(receiver, readMember,
read is PropertyGet ? read : null, read, readType, read.fileOffset);
_storeLetType(inferrer, read, readType);
}
Member writeMember;
if (write != null) {
writeMember = _handleWriteContravariance(inferrer, receiverType);
}
// To replicate analyzer behavior, we base type inference on the write
// member. TODO(paulberry): would it be better to use the read member when
// doing compound assignment?
var writeContext = inferrer.getSetterType(writeMember, receiverType);
var inferredResult = _inferRhs(inferrer, factory, readType, writeContext);
if (inferrer.strongMode) nullAwareGuard?.staticType = inferredResult.type;
inferrer.listener.propertyAssign(
this,
write.fileOffset,
inferrer.getRealTarget(writeMember),
writeContext,
inferredResult.combiner,
inferredResult.type);
_replaceWithDesugared();
return inferredResult.type;
}
}
/// Shadow object for [PropertyGet].
class PropertyGetJudgment extends PropertyGet implements ExpressionJudgment {
DartType inferredType;
PropertyGetJudgment(Expression receiver, Name name, [Member interfaceTarget])
: super(receiver, name, interfaceTarget);
PropertyGetJudgment.byReference(
Expression receiver, Name name, Reference interfaceTargetReference)
: super.byReference(receiver, name, interfaceTargetReference);
ExpressionJudgment get receiverJudgment => receiver;
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferrer.inferPropertyGet(
factory, this, receiverJudgment, fileOffset, typeContext,
desugaredGet: this);
return inferredType;
}
}
/// Concrete shadow object representing a redirecting initializer in kernel
/// form.
class ShadowRedirectingInitializer extends RedirectingInitializer
implements InitializerJudgment {
ShadowRedirectingInitializer(Constructor target, Arguments arguments)
: super(target, arguments);
@override
infer<Expression, Statement, Initializer, Type>(ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
List<TypeParameter> classTypeParameters =
target.enclosingClass.typeParameters;
List<DartType> typeArguments =
new List<DartType>(classTypeParameters.length);
for (int i = 0; i < typeArguments.length; i++) {
typeArguments[i] = new TypeParameterType(classTypeParameters[i]);
}
ArgumentsJudgment.setNonInferrableArgumentTypes(arguments, typeArguments);
inferrer.inferInvocation(factory, null, fileOffset,
target.function.functionType, target.enclosingClass.thisType, arguments,
skipTypeArgumentInference: true);
ArgumentsJudgment.removeNonInferrableArgumentTypes(arguments);
inferrer.listener.redirectingInitializer(this, fileOffset, target);
}
}
/// Shadow object for [Rethrow].
class ShadowRethrow extends Rethrow implements ExpressionJudgment {
DartType inferredType;
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var inferredType = const BottomType();
inferrer.listener.rethrow_(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a return statement in kernel form.
class ReturnJudgment extends ReturnStatement implements StatementJudgment {
ReturnJudgment([Expression expression]) : super(expression);
ExpressionJudgment get judgment => expression;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var judgment = this.judgment;
var closureContext = inferrer.closureContext;
var typeContext = !closureContext.isGenerator
? closureContext.returnOrYieldContext
: const UnknownType();
DartType inferredType;
if (expression != null) {
inferrer.inferExpression(factory, judgment, typeContext, true);
inferredType = judgment.inferredType;
} else {
inferredType = const VoidType();
}
// Analyzer treats bare `return` statements as having no effect on the
// inferred type of the closure. TODO(paulberry): is this what we want
// for Fasta?
if (judgment != null) {
closureContext.handleReturn(
inferrer, inferredType, expression, fileOffset);
}
inferrer.listener.returnStatement(this, fileOffset);
}
}
/// Common base class for shadow objects representing statements in kernel
/// form.
abstract class StatementJudgment extends Statement {
/// Calls back to [inferrer] to perform type inference for whatever concrete
/// type of [StatementJudgment] this is.
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> statement);
}
/// Concrete shadow object representing an assignment to a static variable.
class ShadowStaticAssignment extends ShadowComplexAssignment {
ShadowStaticAssignment(Expression rhs) : super(rhs);
@override
DartType _getWriteType(ShadowTypeInferrer inferrer) {
StaticSet write = this.write;
return write.target.setterType;
}
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
DartType readType = const DynamicType(); // Only used in error recovery
var read = this.read;
if (read is StaticGet) {
readType = read.target.getterType;
_storeLetType(inferrer, read, readType);
}
Member writeMember;
DartType writeContext = const UnknownType();
var write = this.write;
if (write is StaticSet) {
writeContext = write.target.setterType;
writeMember = write.target;
if (writeMember is ShadowField && writeMember.inferenceNode != null) {
writeMember.inferenceNode.resolve();
writeMember.inferenceNode = null;
}
}
var inferredResult = _inferRhs(inferrer, factory, readType, writeContext);
inferrer.listener.staticAssign(this, write?.fileOffset, writeMember,
writeContext, inferredResult.combiner, inferredResult.type);
_replaceWithDesugared();
return inferredResult.type;
}
}
/// Concrete shadow object representing a read of a static variable in kernel
/// form.
class StaticGetJudgment extends StaticGet implements ExpressionJudgment {
DartType inferredType;
StaticGetJudgment(Member target) : super(target);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var target = this.target;
if (target is ShadowField && target.inferenceNode != null) {
target.inferenceNode.resolve();
target.inferenceNode = null;
}
var type = target.getterType;
if (target is Procedure && target.kind == ProcedureKind.Method) {
type = inferrer.instantiateTearOff(type, typeContext, this);
}
inferredType = type;
inferrer.listener.staticGet(this, fileOffset, target, inferredType);
return inferredType;
}
}
/// Shadow object for [StaticInvocation].
class ShadowStaticInvocation extends StaticInvocation
implements ExpressionJudgment {
DartType inferredType;
ShadowStaticInvocation(Procedure target, Arguments arguments,
{bool isConst: false})
: super(target, arguments, isConst: isConst);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var calleeType = target.function.functionType;
var inferredType = inferrer.inferInvocation(factory, typeContext,
fileOffset, calleeType, calleeType.returnType, arguments);
inferrer.listener.staticInvocation(
this,
arguments.fileOffset,
target,
arguments.types,
inferrer.lastCalleeType,
inferrer.lastInferredSubstitution,
inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a string concatenation in kernel form.
class ShadowStringConcatenation extends StringConcatenation
implements ExpressionJudgment {
DartType inferredType;
ShadowStringConcatenation(List<Expression> expressions) : super(expressions);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
if (!inferrer.isTopLevel) {
for (kernel.Expression expression in expressions) {
inferrer.inferExpression(
factory, expression, const UnknownType(), false);
}
}
var inferredType = inferrer.coreTypes.stringClass.rawType;
inferrer.listener.stringConcatenation(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a string literal in kernel form.
class ShadowStringLiteral extends StringLiteral implements ExpressionJudgment {
DartType inferredType;
ShadowStringLiteral(String value) : super(value);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var inferredType = inferrer.coreTypes.stringClass.rawType;
inferrer.listener.stringLiteral(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a super initializer in kernel form.
class ShadowSuperInitializer extends SuperInitializer
implements InitializerJudgment {
ShadowSuperInitializer(Constructor target, Arguments arguments)
: super(target, arguments);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var substitution = Substitution.fromSupertype(inferrer.classHierarchy
.getClassAsInstanceOf(
inferrer.thisType.classNode, target.enclosingClass));
inferrer.inferInvocation(
factory,
null,
fileOffset,
substitution
.substituteType(target.function.functionType.withoutTypeParameters),
inferrer.thisType,
arguments,
skipTypeArgumentInference: true);
inferrer.listener.superInitializer(this, fileOffset);
}
}
/// Shadow object for [SuperMethodInvocation].
class ShadowSuperMethodInvocation extends SuperMethodInvocation
implements ExpressionJudgment {
DartType inferredType;
ShadowSuperMethodInvocation(Name name, Arguments arguments,
[Procedure interfaceTarget])
: super(name, arguments, interfaceTarget);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
if (interfaceTarget != null) {
inferrer.instrumentation?.record(inferrer.uri, fileOffset, 'target',
new InstrumentationValueForMember(interfaceTarget));
}
return inferrer.inferMethodInvocation(
factory, this, null, fileOffset, false, typeContext,
interfaceMember: interfaceTarget,
methodName: name,
arguments: arguments);
}
}
/// Shadow object for [SuperPropertyGet].
class SuperPropertyGetJudgment extends SuperPropertyGet
implements ExpressionJudgment {
DartType inferredType;
SuperPropertyGetJudgment(Name name, [Member interfaceTarget])
: super(name, interfaceTarget);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
if (interfaceTarget != null) {
inferrer.instrumentation?.record(inferrer.uri, fileOffset, 'target',
new InstrumentationValueForMember(interfaceTarget));
}
inferrer.inferPropertyGet(factory, this, null, fileOffset, typeContext,
interfaceMember: interfaceTarget, propertyName: name);
return inferredType;
}
}
/// Concrete shadow object representing a switch case.
class SwitchCaseJudgment extends SwitchCase {
SwitchCaseJudgment(
List<Expression> expressions, List<int> expressionOffsets, Statement body,
{bool isDefault: false})
: super(expressions, expressionOffsets, body, isDefault: isDefault);
SwitchCaseJudgment.defaultCase(Statement body) : super.defaultCase(body);
SwitchCaseJudgment.empty() : super.empty();
List<ExpressionJudgment> get expressionJudgments => expressions.cast();
StatementJudgment get bodyJudgment => body;
}
/// Concrete shadow object representing a switch statement in kernel form.
class SwitchStatementJudgment extends SwitchStatement
implements StatementJudgment {
SwitchStatementJudgment(Expression expression, List<SwitchCase> cases)
: super(expression, cases);
ExpressionJudgment get expressionJudgment => expression;
List<SwitchCaseJudgment> get caseJudgments => cases.cast();
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var expressionJudgment = this.expressionJudgment;
inferrer.inferExpression(
factory, expressionJudgment, const UnknownType(), true);
var expressionType = expressionJudgment.inferredType;
for (var switchCase in caseJudgments) {
for (var caseExpression in switchCase.expressionJudgments) {
inferrer.inferExpression(
factory, caseExpression, expressionType, false);
}
inferrer.inferStatement(factory, switchCase.bodyJudgment);
}
inferrer.listener.switchStatement(this, fileOffset);
}
}
/// Shadow object for [SymbolLiteral].
class ShadowSymbolLiteral extends SymbolLiteral implements ExpressionJudgment {
DartType inferredType;
ShadowSymbolLiteral(String value) : super(value);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
var inferredType = inferrer.coreTypes.symbolClass.rawType;
inferrer.listener.symbolLiteral(this, fileOffset, inferredType);
return inferredType;
}
}
/// Shadow object for expressions that are introduced by the front end as part
/// of desugaring or the handling of error conditions.
///
/// These expressions are removed by type inference and replaced with their
/// desugared equivalents.
class ShadowSyntheticExpression extends Let implements ExpressionJudgment {
DartType inferredType;
ShadowSyntheticExpression(Expression desugared)
: super(new VariableDeclaration('_', initializer: new NullLiteral()),
desugared);
/// The desugared kernel representation of this synthetic expression.
Expression get desugared => body;
void set desugared(Expression value) {
this.body = value;
value.parent = this;
}
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
_replaceWithDesugared();
return const DynamicType();
}
/// Removes this expression from the expression tree, replacing it with
/// [desugared].
void _replaceWithDesugared() {
parent.replaceChild(this, desugared);
parent = null;
}
/// Updates any [Let] nodes in the desugared expression to account for the
/// fact that [expression] has the given [type].
void _storeLetType(
TypeInferrerImpl inferrer, Expression expression, DartType type) {
if (!inferrer.strongMode) return;
Expression desugared = this.desugared;
while (true) {
if (desugared is Let) {
Let desugaredLet = desugared;
var variable = desugaredLet.variable;
if (identical(variable.initializer, expression)) {
variable.type = type;
return;
}
desugared = desugaredLet.body;
} else if (desugared is ConditionalExpression) {
// When a null-aware assignment is desugared, often the "then" or "else"
// branch of the conditional expression often contains "let" nodes that
// need to be updated.
ConditionalExpression desugaredConditionalExpression = desugared;
if (desugaredConditionalExpression.then is Let) {
desugared = desugaredConditionalExpression.then;
} else {
desugared = desugaredConditionalExpression.otherwise;
}
} else {
break;
}
}
}
}
class ThisJudgment extends ThisExpression implements ExpressionJudgment {
DartType inferredType;
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferredType = inferrer.thisType ?? const DynamicType();
inferrer.listener.thisExpression(this, fileOffset, inferredType);
return inferredType;
}
}
class ThrowJudgment extends Throw implements ExpressionJudgment {
DartType inferredType;
ExpressionJudgment get judgment => expression;
ThrowJudgment(Expression expression) : super(expression);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferrer.inferExpression(factory, judgment, const UnknownType(), false);
inferredType = const BottomType();
inferrer.listener.throw_(this, fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a catch clause.
class CatchJudgment extends Catch {
CatchJudgment(VariableDeclaration exception, Statement body,
{DartType guard: const DynamicType(), VariableDeclaration stackTrace})
: super(exception, body, guard: guard, stackTrace: stackTrace);
VariableDeclarationJudgment get exceptionJudgment => exception;
VariableDeclarationJudgment get stackTraceJudgment => stackTrace;
StatementJudgment get bodyJudgment => body;
}
/// Concrete shadow object representing a try-catch block in kernel form.
class TryCatchJudgment extends TryCatch implements StatementJudgment {
TryCatchJudgment(Statement body, List<Catch> catches) : super(body, catches);
StatementJudgment get bodyJudgment => body;
List<CatchJudgment> get catchJudgments => catches.cast();
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
inferrer.inferStatement(factory, bodyJudgment);
for (var catch_ in catchJudgments) {
inferrer.inferStatement(factory, catch_.bodyJudgment);
inferrer.listener.catchStatement(
catch_,
catch_.fileOffset,
catch_.guard,
catch_.exceptionJudgment?.fileOffset,
catch_.exceptionJudgment?.type,
catch_.stackTraceJudgment?.fileOffset,
catch_.stackTraceJudgment?.type);
}
inferrer.listener.tryCatch(this, fileOffset);
}
}
/// Concrete shadow object representing a try-finally block in kernel form.
class ShadowTryFinally extends TryFinally implements StatementJudgment {
ShadowTryFinally(Statement body, Statement finalizer)
: super(body, finalizer);
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
inferrer.inferStatement(factory, body);
inferrer.inferStatement(factory, finalizer);
inferrer.listener.tryFinally(this, fileOffset);
}
}
/// Concrete implementation of [TypeInferenceEngine] specialized to work with
/// kernel objects.
class ShadowTypeInferenceEngine extends TypeInferenceEngine {
ShadowTypeInferenceEngine(Instrumentation instrumentation, bool strongMode)
: super(instrumentation, strongMode);
@override
TypeInferrer createDisabledTypeInferrer() =>
new TypeInferrerDisabled(typeSchemaEnvironment);
@override
ShadowTypeInferrer createLocalTypeInferrer(
Uri uri,
TypeInferenceListener<int, int, Node, int> listener,
InterfaceType thisType,
SourceLibraryBuilder library) {
return new ShadowTypeInferrer._(
this, uri, listener, false, thisType, library);
}
@override
ShadowTypeInferrer createTopLevelTypeInferrer(
TypeInferenceListener<int, int, Node, int> listener,
InterfaceType thisType,
ShadowField field) {
return field._typeInferrer = new ShadowTypeInferrer._(
this, field.fileUri, listener, true, thisType, null);
}
@override
ShadowTypeInferrer getFieldTypeInferrer(ShadowField field) {
return field._typeInferrer;
}
}
/// Concrete implementation of [TypeInferrer] specialized to work with kernel
/// objects.
class ShadowTypeInferrer extends TypeInferrerImpl {
@override
final typePromoter;
ShadowTypeInferrer._(
ShadowTypeInferenceEngine engine,
Uri uri,
TypeInferenceListener<int, int, Node, int> listener,
bool topLevel,
InterfaceType thisType,
SourceLibraryBuilder library)
: typePromoter = new ShadowTypePromoter(engine.typeSchemaEnvironment),
super(engine, uri, listener, topLevel, thisType, library);
@override
Expression getFieldInitializer(ShadowField field) {
return field.initializer;
}
@override
DartType inferExpression<Expression, Statement, Initializer, Type>(
Factory<Expression, Statement, Initializer, Type> factory,
kernel.Expression expression,
DartType typeContext,
bool typeNeeded) {
// `null` should never be used as the type context. An instance of
// `UnknownType` should be used instead.
assert(typeContext != null);
// It isn't safe to do type inference on an expression without a parent,
// because type inference might cause us to have to replace one expression
// with another, and we can only replace a node if it has a parent pointer.
assert(expression.parent != null);
// For full (non-top level) inference, we need access to the
// ExpressionGeneratorHelper so that we can perform error recovery.
assert(isTopLevel || helper != null);
// When doing top level inference, we skip subexpressions whose type isn't
// needed so that we don't induce bogus dependencies on fields mentioned in
// those subexpressions.
if (!typeNeeded && isTopLevel) return null;
if (expression is ExpressionJudgment) {
// Use polymorphic dispatch on [KernelExpression] to perform whatever kind
// of type inference is correct for this kind of statement.
// TODO(paulberry): experiment to see if dynamic dispatch would be better,
// so that the type hierarchy will be simpler (which may speed up "is"
// checks).
return expression.inferredType =
expression.infer(this, factory, typeContext);
} else {
// Encountered an expression type for which type inference is not yet
// implemented, so just infer dynamic for now.
// TODO(paulberry): once the BodyBuilder uses shadow classes for
// everything, this case should no longer be needed.
return typeNeeded ? const DynamicType() : null;
}
}
@override
DartType inferFieldTopLevel<Expression, Statement, Initializer, Type>(
Factory<Expression, Statement, Initializer, Type> factory,
ShadowField field,
bool typeNeeded) {
if (field.initializer == null) return const DynamicType();
return inferExpression(
factory, field.initializer, const UnknownType(), typeNeeded);
}
@override
void inferInitializer<Expression, Statement, Initializer, Type>(
InferenceHelper helper,
Factory<Expression, Statement, Initializer, Type> factory,
kernel.Initializer initializer) {
assert(initializer is InitializerJudgment);
this.helper = helper;
// Use polymorphic dispatch on [KernelInitializer] to perform whatever
// kind of type inference is correct for this kind of initializer.
// TODO(paulberry): experiment to see if dynamic dispatch would be better,
// so that the type hierarchy will be simpler (which may speed up "is"
// checks).
InitializerJudgment kernelInitializer = initializer;
kernelInitializer.infer(this, factory);
this.helper = null;
}
@override
void inferStatement<Expression, Statement, Initializer, Type>(
Factory<Expression, Statement, Initializer, Type> factory,
Statement statement) {
// For full (non-top level) inference, we need access to the
// ExpressionGeneratorHelper so that we can perform error recovery.
if (!isTopLevel) assert(helper != null);
if (statement is StatementJudgment) {
// Use polymorphic dispatch on [KernelStatement] to perform whatever kind
// of type inference is correct for this kind of statement.
// TODO(paulberry): experiment to see if dynamic dispatch would be better,
// so that the type hierarchy will be simpler (which may speed up "is"
// checks).
return statement.infer(this, factory);
} else {
// Encountered a statement type for which type inference is not yet
// implemented, so just skip it for now.
// TODO(paulberry): once the BodyBuilder uses shadow classes for
// everything, this case should no longer be needed.
}
}
}
class TypeLiteralJudgment extends TypeLiteral implements ExpressionJudgment {
DartType inferredType;
TypeLiteralJudgment(DartType type) : super(type);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
inferredType = inferrer.coreTypes.typeClass.rawType;
inferrer.listener.typeLiteral(this, fileOffset, type, inferredType);
return inferredType;
}
}
/// Concrete implementation of [TypePromoter] specialized to work with kernel
/// objects.
class ShadowTypePromoter extends TypePromoterImpl {
ShadowTypePromoter(TypeSchemaEnvironment typeSchemaEnvironment)
: super(typeSchemaEnvironment);
@override
int getVariableFunctionNestingLevel(VariableDeclaration variable) {
if (variable is VariableDeclarationJudgment) {
return variable._functionNestingLevel;
} else {
// Hack to deal with the fact that BodyBuilder still creates raw
// VariableDeclaration objects sometimes.
// TODO(paulberry): get rid of this once the type parameter is
// KernelVariableDeclaration.
return 0;
}
}
@override
bool isPromotionCandidate(VariableDeclaration variable) {
assert(variable is VariableDeclarationJudgment);
VariableDeclarationJudgment kernelVariableDeclaration = variable;
return !kernelVariableDeclaration._isLocalFunction;
}
@override
bool sameExpressions(Expression a, Expression b) {
return identical(a, b);
}
@override
void setVariableMutatedAnywhere(VariableDeclaration variable) {
if (variable is VariableDeclarationJudgment) {
variable._mutatedAnywhere = true;
} else {
// Hack to deal with the fact that BodyBuilder still creates raw
// VariableDeclaration objects sometimes.
// TODO(paulberry): get rid of this once the type parameter is
// KernelVariableDeclaration.
}
}
@override
void setVariableMutatedInClosure(VariableDeclaration variable) {
if (variable is VariableDeclarationJudgment) {
variable._mutatedInClosure = true;
} else {
// Hack to deal with the fact that BodyBuilder still creates raw
// VariableDeclaration objects sometimes.
// TODO(paulberry): get rid of this once the type parameter is
// KernelVariableDeclaration.
}
}
@override
bool wasVariableMutatedAnywhere(VariableDeclaration variable) {
if (variable is VariableDeclarationJudgment) {
return variable._mutatedAnywhere;
} else {
// Hack to deal with the fact that BodyBuilder still creates raw
// VariableDeclaration objects sometimes.
// TODO(paulberry): get rid of this once the type parameter is
// KernelVariableDeclaration.
return true;
}
}
}
class VariableAssignmentJudgment extends ShadowComplexAssignment {
VariableAssignmentJudgment(Expression rhs) : super(rhs);
@override
DartType _getWriteType(ShadowTypeInferrer inferrer) {
VariableSet write = this.write;
return write.variable.type;
}
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
DartType readType;
var read = this.read;
if (read is VariableGet) {
readType = read.promotedType ?? read.variable.type;
}
DartType writeContext = const UnknownType();
var write = this.write;
if (write is VariableSet) {
writeContext = write.variable.type;
if (read != null) {
_storeLetType(inferrer, read, writeContext);
}
}
var inferredResult = _inferRhs(inferrer, factory, readType, writeContext);
inferrer.listener.variableAssign(
this,
write.fileOffset,
writeContext,
write is VariableSet ? write.variable.fileOffset : null,
inferredResult.combiner,
inferredResult.type);
_replaceWithDesugared();
return inferredType = inferredResult.type;
}
}
/// Concrete shadow object representing a variable declaration in kernel form.
class VariableDeclarationJudgment extends VariableDeclaration
implements StatementJudgment {
final bool _implicitlyTyped;
final int _functionNestingLevel;
bool _mutatedInClosure = false;
bool _mutatedAnywhere = false;
final bool _isLocalFunction;
VariableDeclarationJudgment(String name, this._functionNestingLevel,
{Expression initializer,
DartType type,
bool isFinal: false,
bool isConst: false,
bool isFieldFormal: false,
bool isCovariant: false,
bool isLocalFunction: false})
: _implicitlyTyped = type == null,
_isLocalFunction = isLocalFunction,
super(name,
initializer: initializer,
type: type ?? const DynamicType(),
isFinal: isFinal,
isConst: isConst,
isFieldFormal: isFieldFormal,
isCovariant: isCovariant);
VariableDeclarationJudgment.forEffect(
Expression initializer, this._functionNestingLevel)
: _implicitlyTyped = false,
_isLocalFunction = false,
super.forValue(initializer);
VariableDeclarationJudgment.forValue(
Expression initializer, this._functionNestingLevel)
: _implicitlyTyped = true,
_isLocalFunction = false,
super.forValue(initializer);
List<Expression> get annotationJudgments => annotations;
ExpressionJudgment get initializerJudgment => initializer;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
if (annotationJudgments.isNotEmpty) {
inferrer.inferMetadataKeepingHelper(factory, annotationJudgments);
// After the inference was done on the annotations, we may clone them for
// this instance of VariableDeclaration in order to avoid having the same
// annotation node for two VariableDeclaration nodes in a situation like
// the following:
//
// class Foo { const Foo(List<String> list); }
//
// @Foo(const [])
// var x, y;
CloneVisitor cloner = new CloneVisitor();
for (int i = 0; i < annotations.length; ++i) {
kernel.Expression annotation = annotations[i];
if (annotation.parent != this) {
annotations[i] = cloner.clone(annotation);
annotations[i].parent = this;
}
}
}
var initializerJudgment = this.initializerJudgment;
var declaredType = _implicitlyTyped ? const UnknownType() : type;
DartType inferredType;
DartType initializerType;
if (initializerJudgment != null) {
inferrer.inferExpression(factory, initializerJudgment, declaredType,
!inferrer.isTopLevel || _implicitlyTyped);
initializerType = initializerJudgment.inferredType;
inferredType = inferrer.inferDeclarationType(initializerType);
} else {
inferredType = const DynamicType();
}
if (inferrer.strongMode && _implicitlyTyped) {
inferrer.instrumentation?.record(inferrer.uri, fileOffset, 'type',
new InstrumentationValueForType(inferredType));
type = inferredType;
}
if (initializer != null) {
var replacedInitializer = inferrer.ensureAssignable(
type, initializerType, initializer, fileOffset);
if (replacedInitializer != null) {
initializer = replacedInitializer;
}
}
inferrer.listener.variableDeclaration(
this, fileOffset, type, _implicitlyTyped ? inferredType : type);
}
/// Determine whether the given [VariableDeclarationJudgment] had an implicit
/// type.
///
/// This is static to avoid introducing a method that would be visible to
/// the kernel.
static bool isImplicitlyTyped(VariableDeclarationJudgment variable) =>
variable._implicitlyTyped;
/// Determines whether the given [VariableDeclarationJudgment] represents a
/// local function.
///
/// This is static to avoid introducing a method that would be visible to the
/// kernel.
static bool isLocalFunction(VariableDeclarationJudgment variable) =>
variable._isLocalFunction;
}
/// Concrete shadow object representing a read from a variable in kernel form.
class VariableGetJudgment extends VariableGet implements ExpressionJudgment {
DartType inferredType;
final TypePromotionFact _fact;
final TypePromotionScope _scope;
VariableGetJudgment(VariableDeclaration variable, this._fact, this._scope)
: super(variable);
/// Return `true` if the given [variable] declaration occurs in a let
/// expression that is, or is part of, a cascade expression.
bool _isInCascade() {
TreeNode ancestor = variable.parent;
while (ancestor is Let) {
if (ancestor is ShadowCascadeExpression) {
return true;
}
ancestor = ancestor.parent;
}
return false;
}
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
VariableDeclarationJudgment variable = this.variable;
bool mutatedInClosure = variable._mutatedInClosure;
DartType declaredOrInferredType = variable.type;
DartType promotedType = inferrer.typePromoter
.computePromotedType(_fact, _scope, mutatedInClosure);
if (promotedType != null) {
inferrer.instrumentation?.record(inferrer.uri, fileOffset, 'promotedType',
new InstrumentationValueForType(promotedType));
}
this.promotedType = promotedType;
var type = promotedType ?? declaredOrInferredType;
if (variable._isLocalFunction) {
type = inferrer.instantiateTearOff(type, typeContext, this);
}
inferredType = type;
inferrer.listener.variableGet(
this, fileOffset, _isInCascade(), variable.fileOffset, inferredType);
return inferredType;
}
}
/// Concrete shadow object representing a while loop in kernel form.
class WhileJudgment extends WhileStatement implements StatementJudgment {
WhileJudgment(Expression condition, Statement body) : super(condition, body);
ExpressionJudgment get conditionJudgment => condition;
StatementJudgment get bodyJudgment => body;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var conditionJudgment = this.conditionJudgment;
var expectedType = inferrer.coreTypes.boolClass.rawType;
inferrer.inferExpression(
factory, conditionJudgment, expectedType, !inferrer.isTopLevel);
inferrer.ensureAssignable(expectedType, conditionJudgment.inferredType,
condition, condition.fileOffset);
inferrer.inferStatement(factory, bodyJudgment);
inferrer.listener.whileStatement(this, fileOffset);
}
}
/// Concrete shadow object representing a yield statement in kernel form.
class YieldJudgment extends YieldStatement implements StatementJudgment {
YieldJudgment(Expression expression, {bool isYieldStar: false})
: super(expression, isYieldStar: isYieldStar);
ExpressionJudgment get judgment => expression;
@override
void infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory) {
var judgment = this.judgment;
var closureContext = inferrer.closureContext;
if (closureContext.isGenerator) {
var typeContext = closureContext.returnOrYieldContext;
if (isYieldStar && typeContext != null) {
typeContext = inferrer.wrapType(
typeContext,
closureContext.isAsync
? inferrer.coreTypes.streamClass
: inferrer.coreTypes.iterableClass);
}
inferrer.inferExpression(factory, judgment, typeContext, true);
} else {
inferrer.inferExpression(factory, judgment, const UnknownType(), true);
}
closureContext.handleYield(
inferrer, isYieldStar, judgment.inferredType, expression, fileOffset);
inferrer.listener.yieldStatement(this, fileOffset);
}
}
/// Concrete shadow object representing a deferred load library call.
class LoadLibraryJudgment extends LoadLibrary implements ExpressionJudgment {
DartType inferredType;
LoadLibraryJudgment(LibraryDependency import) : super(import);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
return inferredType =
inferrer.typeSchemaEnvironment.futureType(const DynamicType());
}
}
/// Concrete shadow object representing a deferred library-is-loaded check.
class CheckLibraryIsLoadedJudgment extends CheckLibraryIsLoaded
implements ExpressionJudgment {
DartType inferredType;
CheckLibraryIsLoadedJudgment(LibraryDependency import) : super(import);
@override
DartType infer<Expression, Statement, Initializer, Type>(
ShadowTypeInferrer inferrer,
Factory<Expression, Statement, Initializer, Type> factory,
DartType typeContext) {
return inferredType = inferrer.typeSchemaEnvironment.objectType;
}
}
/// Concrete shadow object representing a named expression.
class NamedExpressionJudgment extends NamedExpression {
NamedExpressionJudgment(String name, Expression value) : super(name, value);
ExpressionJudgment get judgment => value;
}
/// The result of inference for a RHS of an assignment.
class _ComplexAssignmentInferenceResult {
/// The resolved combiner [Procedure], e.g. `operator+` for `a += 2`, or
/// `null` if the assignment is not compound.
final Procedure combiner;
/// The inferred type of the assignment expression.
final DartType type;
_ComplexAssignmentInferenceResult(this.combiner, this.type);
}
class _UnfinishedCascade extends Expression {
accept(v) => unsupported("accept", -1, null);
accept1(v, arg) => unsupported("accept1", -1, null);
getStaticType(types) => unsupported("getStaticType", -1, null);
transformChildren(v) => unsupported("transformChildren", -1, null);
visitChildren(v) => unsupported("visitChildren", -1, null);
}