blob: ec003efb7ce51ca77cd3a0e675f7a751191c1ab3 [file] [log] [blame]
// Copyright (c) 2016, 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.
library fasta.body_builder;
import 'package:kernel/ast.dart'
hide InvalidExpression, InvalidInitializer, InvalidStatement;
import 'package:kernel/class_hierarchy.dart' show ClassHierarchy;
import 'package:kernel/clone.dart' show CloneVisitor;
import 'package:kernel/core_types.dart' show CoreTypes;
import 'package:kernel/transformations/flags.dart' show TransformerFlag;
import '../fasta_codes.dart' as fasta;
import '../fasta_codes.dart'
show LocatedMessage, Message, messageNativeClauseShouldBeAnnotation;
import '../messages.dart' as messages show getLocationFromUri;
import '../modifier.dart' show Modifier, constMask, finalMask;
import '../parser.dart'
show
Assert,
FormalParameterKind,
IdentifierContext,
MemberKind,
closeBraceTokenFor,
optional;
import '../parser/formal_parameter_kind.dart'
show isOptionalPositionalFormalParameterKind;
import '../problems.dart'
show internalProblem, unexpected, unhandled, unsupported;
import '../quote.dart'
show
Quote,
analyzeQuote,
unescape,
unescapeFirstStringPart,
unescapeLastStringPart,
unescapeString;
import '../scanner.dart' show Token;
import '../scanner/token.dart' show isBinaryOperator, isMinusOperator;
import '../scope.dart' show ProblemBuilder;
import '../source/scope_listener.dart'
show JumpTargetKind, NullValue, ScopeListener;
import '../type_inference/type_inferrer.dart' show TypeInferrer;
import '../type_inference/type_promotion.dart' show TypePromoter;
import 'frontend_accessors.dart' show buildIsNull, makeBinary;
import 'redirecting_factory_body.dart'
show
RedirectingFactoryBody,
getRedirectingFactoryBody,
getRedirectionTarget;
import 'utils.dart' show offsetForToken;
import '../names.dart';
import 'fasta_accessors.dart';
import 'kernel_builder.dart';
import 'kernel_shadow_ast.dart';
class BodyBuilder extends ScopeListener<JumpTarget> implements BuilderHelper {
@override
final KernelLibraryBuilder library;
final ModifierBuilder member;
final KernelClassBuilder classBuilder;
final ClassHierarchy hierarchy;
final CoreTypes coreTypes;
final bool isInstanceMember;
final Scope enclosingScope;
final bool enableNative;
final bool stringExpectedAfterNative;
/// Whether to ignore an unresolved reference to `main` within the body of
/// `_getMainClosure` when compiling the current library.
///
/// This as a temporary workaround. The standalone VM and flutter have
/// special logic to resolve `main` in `_getMainClosure`, this flag is used to
/// ignore that reference to `main`, but only on libraries where we expect to
/// see it (today that is dart:_builtin and dart:ui).
///
// TODO(ahe,sigmund): remove when the VM gets rid of the special rule, see
// https://github.com/dart-lang/sdk/issues/28989.
final bool ignoreMainInGetMainClosure;
@override
final Uri uri;
final TypeInferrer _typeInferrer;
@override
final TypePromoter typePromoter;
/// Only used when [member] is a constructor. It tracks if an implicit super
/// initializer is needed.
///
/// An implicit super initializer isn't needed
///
/// 1. if the current class is Object,
/// 2. if there is an explicit super initializer,
/// 3. if there is a redirecting (this) initializer, or
/// 4. if a compile-time error prevented us from generating code for an
/// initializer. This avoids cascading errors.
bool needsImplicitSuperInitializer;
Scope formalParameterScope;
/// This is set to true when we start parsing an initializer. We use this to
/// find the correct scope for initializers like in this example:
///
/// class C {
/// final x;
/// C(x) : x = x;
/// }
///
/// When parsing this initializer `x = x`, `x` must be resolved in two
/// different scopes. The first `x` must be resolved in the class' scope, the
/// second in the formal parameter scope.
bool inInitializer = false;
bool inCatchClause = false;
bool inCatchBlock = false;
int functionNestingLevel = 0;
Statement compileTimeErrorInTry;
Statement compileTimeErrorInLoopOrSwitch;
Scope switchScope;
CloneVisitor cloner;
bool constantExpressionRequired = false;
DartType currentLocalVariableType;
// Using non-null value to initialize this field based on performance advice
// from VM engineers. TODO(ahe): Does this still apply?
int currentLocalVariableModifiers = -1;
/// If non-null, records instance fields which have already been initialized
/// and where that was.
Map<String, int> initializedFields;
BodyBuilder(
KernelLibraryBuilder library,
this.member,
Scope scope,
this.formalParameterScope,
this.hierarchy,
this.coreTypes,
this.classBuilder,
this.isInstanceMember,
this.uri,
this._typeInferrer)
: enclosingScope = scope,
library = library,
enableNative =
library.loader.target.backendTarget.enableNative(library.uri),
stringExpectedAfterNative =
library.loader.target.backendTarget.nativeExtensionExpectsString,
ignoreMainInGetMainClosure = library.uri.scheme == 'dart' &&
(library.uri.path == "_builtin" || library.uri.path == "ui"),
needsImplicitSuperInitializer =
coreTypes.objectClass != classBuilder?.cls,
typePromoter = _typeInferrer.typePromoter,
super(scope);
bool get hasParserError => recoverableErrors.isNotEmpty;
bool get inConstructor {
return functionNestingLevel == 0 && member is KernelConstructorBuilder;
}
bool get isInstanceContext {
return isInstanceMember || member is KernelConstructorBuilder;
}
@override
void push(Object node) {
inInitializer = false;
super.push(node);
}
Expression popForValue() => toValue(pop());
Expression popForEffect() => toEffect(pop());
Expression popForValueIfNotNull(Object value) {
return value == null ? null : popForValue();
}
@override
Expression toValue(Object node) {
if (node is FastaAccessor) {
return node.buildSimpleRead();
} else if (node is Expression) {
return node;
} else if (node is PrefixBuilder) {
return deprecated_buildCompileTimeError(
"A library can't be used as an expression.");
} else if (node is ProblemBuilder) {
return buildProblemExpression(node, -1);
} else {
return unhandled("${node.runtimeType}", "toValue", -1, uri);
}
}
Expression toEffect(Object node) {
if (node is FastaAccessor) return node.buildForEffect();
return toValue(node);
}
List<Expression> popListForValue(int n) {
List<Expression> list =
new List<Expression>.filled(n, null, growable: true);
for (int i = n - 1; i >= 0; i--) {
list[i] = popForValue();
}
return list;
}
List<Expression> popListForEffect(int n) {
List<Expression> list =
new List<Expression>.filled(n, null, growable: true);
for (int i = n - 1; i >= 0; i--) {
list[i] = popForEffect();
}
return list;
}
Block popBlock(int count, Token beginToken) {
List<dynamic /*Statement | List<Statement>*/ > statements =
popList(count) ?? <Statement>[];
List<Statement> copy;
for (int i = 0; i < statements.length; i++) {
var statement = statements[i];
if (statement is List) {
copy ??= new List<Statement>.from(statements.getRange(0, i));
// TODO(sigmund): remove this assignment (issue #28651)
Iterable subStatements = statement;
copy.addAll(subStatements);
} else if (copy != null) {
copy.add(statement);
}
}
return new ShadowBlock(copy ?? statements)
..fileOffset = offsetForToken(beginToken);
}
Statement popStatementIfNotNull(Object value) {
return value == null ? null : popStatement();
}
Statement popStatement() {
var statement = pop();
if (statement is List) {
return new Block(new List<Statement>.from(statement));
} else if (statement is VariableDeclaration) {
return new Block(<Statement>[statement]);
} else {
return statement;
}
}
void ignore(Unhandled value) {
pop();
}
void enterSwitchScope() {
push(switchScope ?? NullValue.SwitchScope);
switchScope = scope;
}
void exitSwitchScope() {
Scope outerSwitchScope = pop();
if (switchScope.unclaimedForwardDeclarations != null) {
switchScope.unclaimedForwardDeclarations
.forEach((String name, Builder builder) {
if (outerSwitchScope == null) {
deprecated_addCompileTimeError(-1, "Label not found: '$name'.");
} else {
outerSwitchScope.forwardDeclareLabel(name, builder);
}
});
}
switchScope = outerSwitchScope;
}
void declareVariable(VariableDeclaration variable, Scope scope) {
// ignore: UNUSED_LOCAL_VARIABLE
Statement discardedStatement;
String name = variable.name;
int offset = variable.fileOffset;
if (scope.local[name] != null) {
// This reports an error for duplicated declarations in the same scope:
// `{ var x; var x; }`
discardedStatement = pop(); // TODO(ahe): Issue 29717.
push(deprecated_buildCompileTimeErrorStatement(
"'$name' already declared in this scope.", offset));
return;
}
LocatedMessage error = scope.declare(
variable.name,
new KernelVariableBuilder(
variable, member ?? classBuilder ?? library, uri),
variable.fileOffset,
uri);
if (error != null) {
// This case is different from the above error. In this case, the problem
// is using `x` before it's declared: `{ var x; { print(x); var x;
// }}`. In this case, we want two errors, the `x` in `print(x)` and the
// second (or innermost declaration) of `x`.
discardedStatement = pop(); // TODO(ahe): Issue 29717.
// Reports the error on the last declaration of `x`.
push(deprecated_buildCompileTimeErrorStatement(
"Can't declare '$name' because it was already used in this scope.",
offset));
// Reports the error on `print(x)`.
library.addCompileTimeError(
error.messageObject, error.charOffset, error.uri);
}
}
@override
JumpTarget createJumpTarget(JumpTargetKind kind, int charOffset) {
return new JumpTarget(kind, functionNestingLevel, member, charOffset);
}
@override
void beginMetadata(Token token) {
debugEvent("beginMetadata");
super.push(constantExpressionRequired);
constantExpressionRequired = true;
}
@override
void endMetadata(Token beginToken, Token periodBeforeName, Token endToken) {
debugEvent("Metadata");
var arguments = pop();
pushQualifiedReference(beginToken.next, periodBeforeName);
if (arguments != null) {
push(arguments);
endNewExpression(beginToken);
push(popForValue());
} else {
String name = pop();
pop(); // Type arguments (ignored, already reported by parser).
var expression = pop();
if (expression is Identifier) {
Identifier identifier = expression;
expression = new UnresolvedAccessor(
this, new Name(identifier.name, library.library), identifier.token);
}
if (name?.isNotEmpty ?? false) {
Token period = periodBeforeName ?? beginToken.next;
FastaAccessor accessor = expression;
expression = accessor.buildPropertyAccess(
new IncompletePropertyAccessor(
this, period.next, new Name(name, library.library)),
period.next.offset,
false);
}
bool savedConstantExpressionRequired = pop();
if (expression is! StaticAccessor) {
push(wrapInCompileTimeError(
toValue(expression), fasta.messageExpressionNotMetadata));
} else {
push(toValue(expression));
}
constantExpressionRequired = savedConstantExpressionRequired;
}
}
@override
void endMetadataStar(int count) {
debugEvent("MetadataStar");
push(popList(count) ?? NullValue.Metadata);
}
@override
void endTopLevelFields(int count, Token beginToken, Token endToken) {
debugEvent("TopLevelFields");
push(count);
}
@override
void endFields(int count, Token beginToken, Token endToken) {
debugEvent("Fields");
push(count);
}
@override
void finishFields() {
debugEvent("finishFields");
int count = pop();
List<FieldBuilder> fields = <FieldBuilder>[];
for (int i = 0; i < count; i++) {
Expression initializer = pop();
Identifier identifier = pop();
String name = identifier.name;
FieldBuilder field;
if (classBuilder != null) {
field = classBuilder[name];
} else {
field = library[name];
}
fields.add(field);
if (initializer != null) {
if (field.next != null) {
// TODO(ahe): This can happen, for example, if a final field is
// combined with a setter.
unhandled("field with more than one declaration", field.name,
field.charOffset, field.fileUri);
}
field.initializer = initializer;
_typeInferrer.inferFieldInitializer(
field.hasImplicitType ? null : field.builtType, initializer);
}
}
pop(); // Type.
pop(); // Modifiers.
List annotations = pop();
if (annotations != null) {
_typeInferrer.inferMetadata(annotations);
Field field = fields.first.target;
// The first (and often only field) will not get a clone.
annotations.forEach(field.addAnnotation);
for (int i = 1; i < fields.length; i++) {
// We have to clone the annotations on the remaining fields.
field = fields[i].target;
cloner ??= new CloneVisitor();
for (Expression annotation in annotations) {
field.addAnnotation(cloner.clone(annotation));
}
}
}
}
@override
void endMember() {
debugEvent("Member");
}
@override
void endBlockFunctionBody(int count, Token beginToken, Token endToken) {
debugEvent("BlockFunctionBody");
if (beginToken == null) {
assert(count == 0);
push(NullValue.Block);
} else {
Block block = popBlock(count, beginToken);
exitLocalScope();
push(block);
}
}
void prepareInitializers() {
ProcedureBuilder member = this.member;
scope = member.computeFormalParameterInitializerScope(scope);
if (member is KernelConstructorBuilder) {
if (member.isConst &&
(classBuilder.cls.superclass?.isMixinApplication ?? false)) {
deprecated_addCompileTimeError(member.charOffset,
"Can't extend a mixin application and be 'const'.");
}
if (member.formals != null) {
for (KernelFormalParameterBuilder formal in member.formals) {
if (formal.hasThis) {
Initializer initializer;
if (member.isExternal) {
initializer = buildInvalidInitializer(
deprecated_buildCompileTimeError(
"An external constructor can't initialize fields.",
formal.charOffset),
formal.charOffset);
} else {
initializer = buildFieldInitializer(true, formal.name,
formal.charOffset, new VariableGet(formal.declaration));
}
member.addInitializer(initializer, _typeInferrer);
}
}
}
}
}
@override
void handleNoInitializers() {
debugEvent("NoInitializers");
if (functionNestingLevel == 0) {
prepareInitializers();
scope = formalParameterScope;
}
}
@override
void beginInitializers(Token token) {
debugEvent("beginInitializers");
if (functionNestingLevel == 0) {
prepareInitializers();
}
}
@override
void endInitializers(int count, Token beginToken, Token endToken) {
debugEvent("Initializers");
if (functionNestingLevel == 0) {
scope = formalParameterScope;
}
}
@override
void beginInitializer(Token token) {
debugEvent("beginInitializer");
inInitializer = true;
}
@override
void endInitializer(Token token) {
debugEvent("endInitializer");
assert(!inInitializer);
final member = this.member;
var node = pop();
Initializer initializer;
if (node is Initializer) {
initializer = node;
} else if (node is FastaAccessor) {
initializer = node.buildFieldInitializer(initializedFields);
} else if (node is ConstructorInvocation) {
initializer = buildSuperInitializer(
false, node.target, node.arguments, token.charOffset);
} else {
Expression value = toValue(node);
if (node is! Throw) {
value =
wrapInCompileTimeError(value, fasta.messageExpectedAnInitializer);
}
initializer = buildInvalidInitializer(node, token.charOffset);
}
_typeInferrer.inferInitializer(initializer);
if (member is KernelConstructorBuilder && !member.isExternal) {
member.addInitializer(initializer, _typeInferrer);
} else {
deprecated_addCompileTimeError(
token.charOffset, "Can't have initializers: ${member.name}");
}
}
DartType _computeReturnTypeContext(MemberBuilder member) {
if (member is KernelProcedureBuilder) {
return member.target.function.returnType;
} else {
assert(member is KernelConstructorBuilder);
return null;
}
}
@override
void finishFunction(List annotations, FormalParameters formals,
AsyncMarker asyncModifier, Statement body) {
debugEvent("finishFunction");
typePromoter.finished();
_typeInferrer.inferFunctionBody(
_computeReturnTypeContext(member), asyncModifier, body);
KernelFunctionBuilder builder = member;
builder.body = body;
Member target = builder.target;
_typeInferrer.inferMetadata(annotations);
for (Expression annotation in annotations ?? const []) {
target.addAnnotation(annotation);
}
if (formals?.optional != null) {
Iterator<FormalParameterBuilder> formalBuilders =
builder.formals.skip(formals.required.length).iterator;
for (VariableDeclaration parameter in formals.optional.formals) {
bool hasMore = formalBuilders.moveNext();
assert(hasMore);
VariableDeclaration realParameter = formalBuilders.current.target;
Expression initializer =
parameter.initializer ?? new ShadowNullLiteral();
_typeInferrer.inferParameterInitializer(
initializer, realParameter.type);
realParameter.initializer = initializer..parent = realParameter;
}
}
if (builder is KernelConstructorBuilder) {
finishConstructor(builder, asyncModifier);
} else if (builder is KernelProcedureBuilder) {
builder.asyncModifier = asyncModifier;
} else {
unhandled("${builder.runtimeType}", "finishFunction", builder.charOffset,
builder.fileUri);
}
}
@override
List<Expression> finishMetadata() {
List<Expression> expressions = pop();
_typeInferrer.inferMetadata(expressions);
return expressions;
}
void finishConstructor(
KernelConstructorBuilder builder, AsyncMarker asyncModifier) {
/// Quotes below are from [Dart Programming Language Specification, 4th
/// Edition](
/// https://ecma-international.org/publications/files/ECMA-ST/ECMA-408.pdf).
assert(builder == member);
Constructor constructor = builder.constructor;
if (asyncModifier != AsyncMarker.Sync) {
// TODO(ahe): Change this to a null check.
int offset = builder.body?.fileOffset ?? builder.charOffset;
constructor.initializers.add(buildInvalidInitializer(
deprecated_buildCompileTimeError(
"A constructor can't be '${asyncModifier}'.", offset),
offset));
}
if (needsImplicitSuperInitializer) {
/// >If no superinitializer is provided, an implicit superinitializer
/// >of the form super() is added at the end of k’s initializer list,
/// >unless the enclosing class is class Object.
Constructor superTarget = lookupConstructor(emptyName, isSuper: true);
Initializer initializer;
Arguments arguments = new Arguments.empty();
if (superTarget == null ||
!checkArguments(
superTarget.function, arguments, const <TypeParameter>[])) {
String superclass = classBuilder.supertype.fullNameForErrors;
String message = superTarget == null
? "'$superclass' doesn't have an unnamed constructor."
: "The unnamed constructor in '$superclass' requires arguments.";
initializer = buildInvalidInitializer(
deprecated_buildCompileTimeError(message, builder.charOffset),
builder.charOffset);
} else {
initializer = buildSuperInitializer(
true, superTarget, arguments, builder.charOffset);
}
constructor.initializers.add(initializer);
}
setParents(constructor.initializers, constructor);
if (constructor.function.body == null) {
/// >If a generative constructor c is not a redirecting constructor
/// >and no body is provided, then c implicitly has an empty body {}.
/// We use an empty statement instead.
constructor.function.body = new EmptyStatement();
constructor.function.body.parent = constructor.function;
}
}
@override
void endExpressionStatement(Token token) {
debugEvent("ExpressionStatement");
push(new ShadowExpressionStatement(popForEffect()));
}
@override
void endArguments(int count, Token beginToken, Token endToken) {
debugEvent("Arguments");
List arguments = popList(count) ?? <Expression>[];
int firstNamedArgumentIndex = arguments.length;
for (int i = 0; i < arguments.length; i++) {
var node = arguments[i];
if (node is NamedExpression) {
firstNamedArgumentIndex =
i < firstNamedArgumentIndex ? i : firstNamedArgumentIndex;
} else {
arguments[i] = toValue(node);
if (i > firstNamedArgumentIndex) {
arguments[i] = new NamedExpression(
"#$i",
deprecated_buildCompileTimeError(
"Expected named argument.", arguments[i].fileOffset))
..fileOffset = beginToken.charOffset;
}
}
}
if (firstNamedArgumentIndex < arguments.length) {
List<Expression> positional = new List<Expression>.from(
arguments.getRange(0, firstNamedArgumentIndex));
List<NamedExpression> named = new List<NamedExpression>.from(
arguments.getRange(firstNamedArgumentIndex, arguments.length));
if (named.length == 2) {
if (named[0].name == named[1].name) {
named = <NamedExpression>[
new NamedExpression(
named[1].name,
deprecated_buildCompileTimeError(
"Duplicated named argument '${named[1].name}'.",
named[1].fileOffset))
];
}
} else if (named.length > 2) {
Map<String, NamedExpression> seenNames = <String, NamedExpression>{};
bool hasProblem = false;
for (NamedExpression expression in named) {
if (seenNames.containsKey(expression.name)) {
hasProblem = true;
seenNames[expression.name].value = deprecated_buildCompileTimeError(
"Duplicated named argument '${expression.name}'.",
expression.fileOffset);
} else {
seenNames[expression.name] = expression;
}
}
if (hasProblem) {
named = new List<NamedExpression>.from(seenNames.values);
}
}
push(new ShadowArguments(positional, named: named)
..fileOffset = beginToken.charOffset);
} else {
push(new ShadowArguments(arguments)..fileOffset = beginToken.charOffset);
}
}
@override
void handleParenthesizedExpression(Token token) {
debugEvent("ParenthesizedExpression");
push(new ParenthesizedExpression(
this, popForValue(), closeBraceTokenFor(token)));
}
@override
void handleSend(Token beginToken, Token endToken) {
debugEvent("Send");
Arguments arguments = pop();
List<DartType> typeArguments = pop();
Object receiver = pop();
if (arguments != null && typeArguments != null) {
assert(arguments.types.isEmpty);
ShadowArguments.setExplicitArgumentTypes(arguments, typeArguments);
} else {
assert(typeArguments == null);
}
if (receiver is Identifier) {
Name name = new Name(receiver.name, library.library);
if (arguments == null) {
push(new IncompletePropertyAccessor(this, beginToken, name));
} else {
push(new SendAccessor(this, beginToken, name, arguments));
}
} else if (arguments == null) {
push(receiver);
} else {
push(finishSend(receiver, arguments, beginToken.charOffset));
}
}
@override
finishSend(Object receiver, Arguments arguments, int charOffset) {
if (receiver is FastaAccessor) {
return receiver.doInvocation(charOffset, arguments);
} else {
return buildMethodInvocation(
toValue(receiver), callName, arguments, charOffset,
isImplicitCall: true);
}
}
@override
void beginCascade(Token token) {
debugEvent("beginCascade");
Expression expression = popForValue();
if (expression is ShadowCascadeExpression) {
push(expression);
push(new VariableAccessor(this, token, expression.variable));
expression.extend();
} else {
VariableDeclaration variable = new ShadowVariableDeclaration.forValue(
expression, functionNestingLevel);
push(new ShadowCascadeExpression(variable));
push(new VariableAccessor(this, token, variable));
}
}
@override
void endCascade() {
debugEvent("endCascade");
Expression expression = popForEffect();
ShadowCascadeExpression cascadeReceiver = pop();
cascadeReceiver.finalize(expression);
push(cascadeReceiver);
}
@override
void beginCaseExpression(Token caseKeyword) {
debugEvent("beginCaseExpression");
super.push(constantExpressionRequired);
constantExpressionRequired = true;
}
@override
void endCaseExpression(Token colon) {
debugEvent("endCaseExpression");
Expression expression = popForValue();
constantExpressionRequired = pop();
super.push(expression);
}
@override
void beginBinaryExpression(Token token) {
if (optional("&&", token) || optional("||", token)) {
Expression lhs = popForValue();
typePromoter.enterLogicalExpression(lhs, token.stringValue);
push(lhs);
}
}
@override
void endBinaryExpression(Token token) {
debugEvent("BinaryExpression");
if (optional(".", token) || optional("..", token)) {
return doDotOrCascadeExpression(token);
}
if (optional("&&", token) || optional("||", token)) {
return doLogicalExpression(token);
}
if (optional("??", token)) return doIfNull(token);
if (optional("?.", token)) return doIfNotNull(token);
Expression argument = popForValue();
var receiver = pop();
bool isSuper = false;
if (receiver is ThisAccessor && receiver.isSuper) {
ThisAccessor thisAccessorReceiver = receiver;
isSuper = true;
receiver = new ShadowThisExpression()
..fileOffset = offsetForToken(thisAccessorReceiver.token);
}
push(buildBinaryOperator(toValue(receiver), token, argument, isSuper));
}
Expression buildBinaryOperator(
Expression a, Token token, Expression b, bool isSuper) {
bool negate = false;
String operator = token.stringValue;
if (identical("!=", operator)) {
operator = "==";
negate = true;
}
if (!isBinaryOperator(operator) && !isMinusOperator(operator)) {
return deprecated_buildCompileTimeError(
"Not an operator: '$operator'.", token.charOffset);
} else {
Expression result =
makeBinary(a, new Name(operator), null, b, offset: token.charOffset);
if (isSuper) {
result = toSuperMethodInvocation(result);
}
return negate ? new ShadowNot(result) : result;
}
}
void doLogicalExpression(Token token) {
typePromoter.exitLogicalExpression();
Expression argument = popForValue();
Expression receiver = popForValue();
push(new ShadowLogicalExpression(receiver, token.stringValue, argument));
}
/// Handle `a ?? b`.
void doIfNull(Token token) {
Expression b = popForValue();
Expression a = popForValue();
VariableDeclaration variable = new VariableDeclaration.forValue(a);
push(new ShadowIfNullExpression(
variable,
new ConditionalExpression(
buildIsNull(new VariableGet(variable), offsetForToken(token)),
b,
new VariableGet(variable),
null)));
}
/// Handle `a?.b(...)`.
void doIfNotNull(Token token) {
IncompleteSend send = pop();
push(send.withReceiver(pop(), token.charOffset, isNullAware: true));
}
void doDotOrCascadeExpression(Token token) {
// TODO(ahe): Handle null-aware.
var send = pop();
if (send is IncompleteSend) {
Object receiver = optional(".", token) ? pop() : popForValue();
push(send.withReceiver(receiver, token.charOffset));
} else {
pop();
Message message =
fasta.templateExpectedIdentifier.withArguments(token.next);
push(buildCompileTimeError(message, token.next.charOffset));
}
}
@override
Expression toSuperMethodInvocation(MethodInvocation node) {
Member target = lookupSuperMember(node.name);
if (target == null || (target is Procedure && !target.isAccessor)) {
if (target == null) {
warnUnresolvedMethod(node.name, node.fileOffset, isSuper: true);
} else if (!areArgumentsCompatible(target.function, node.arguments)) {
target = null;
warning(
fasta.templateSuperclassMethodArgumentMismatch
.withArguments(node.name.name),
node.fileOffset);
}
Expression result;
if (target != null) {
result = new ShadowDirectMethodInvocation(
new ShadowThisExpression()..fileOffset = node.fileOffset,
target,
node.arguments);
}
// TODO(ahe): Use [DirectMethodInvocation] when possible, that is,
// make the next line conditional:
result =
new ShadowSuperMethodInvocation(node.name, node.arguments, target);
return result..fileOffset = node.fileOffset;
}
Expression receiver = new ShadowDirectPropertyGet(
new ShadowThisExpression()..fileOffset = node.fileOffset, target)
..fileOffset = node.fileOffset;
// TODO(ahe): Use [DirectPropertyGet] when possible, that is, make the next
// line conditional:
receiver = new ShadowSuperPropertyGet(node.name, target)
..fileOffset = node.fileOffset;
return buildMethodInvocation(
receiver, callName, node.arguments, node.arguments.fileOffset,
isImplicitCall: true);
}
bool areArgumentsCompatible(FunctionNode function, Arguments arguments) {
// TODO(ahe): Implement this.
return true;
}
@override
Expression throwNoSuchMethodError(
Expression receiver, String name, Arguments arguments, int charOffset,
{bool isSuper: false,
bool isGetter: false,
bool isSetter: false,
bool isStatic: false}) {
Message message;
Name kernelName = new Name(name, library.library);
if (isGetter) {
message = warnUnresolvedGet(kernelName, charOffset,
isSuper: isSuper, reportWarning: !constantExpressionRequired);
} else if (isSetter) {
message = warnUnresolvedSet(kernelName, charOffset,
isSuper: isSuper, reportWarning: !constantExpressionRequired);
} else {
message = warnUnresolvedMethod(kernelName, charOffset,
isSuper: isSuper, reportWarning: !constantExpressionRequired);
}
if (constantExpressionRequired) {
// TODO(ahe): Use [error] below instead of building a compile-time error,
// should be:
// return library.loader.throwCompileConstantError(error, charOffset);
return buildCompileTimeError(message, charOffset);
} else {
Expression error = library.loader.instantiateNoSuchMethodError(
receiver, name, arguments, charOffset,
isMethod: !isGetter && !isSetter,
isGetter: isGetter,
isSetter: isSetter,
isStatic: isStatic,
isTopLevel: !isStatic && !isSuper);
return new ShadowSyntheticExpression(new Throw(error));
}
}
@override
Message warnUnresolvedGet(Name name, int charOffset,
{bool isSuper: false, bool reportWarning: true}) {
Message message = isSuper
? fasta.templateSuperclassHasNoGetter.withArguments(name.name)
: fasta.templateGetterNotFound.withArguments(name.name);
if (reportWarning) {
warning(message, charOffset);
}
return message;
}
@override
Message warnUnresolvedSet(Name name, int charOffset,
{bool isSuper: false, bool reportWarning: true}) {
Message message = isSuper
? fasta.templateSuperclassHasNoSetter.withArguments(name.name)
: fasta.templateSetterNotFound.withArguments(name.name);
if (reportWarning) {
warning(message, charOffset);
}
return message;
}
@override
Message warnUnresolvedMethod(Name name, int charOffset,
{bool isSuper: false, bool reportWarning: true}) {
Message message = isSuper
? fasta.templateSuperclassHasNoMethod.withArguments(name.name)
: fasta.templateMethodNotFound.withArguments(name.name);
if (reportWarning) {
warning(message, charOffset);
}
return message;
}
@override
void warnTypeArgumentsMismatch(String name, int expected, int charOffset) {
warning(
fasta.templateTypeArgumentMismatch.withArguments(name, '${expected}'),
charOffset);
}
@override
Member lookupSuperMember(Name name, {bool isSetter: false}) {
Class superclass = classBuilder.cls.superclass;
return superclass == null
? null
: hierarchy.getDispatchTarget(superclass, name, setter: isSetter);
}
@override
Constructor lookupConstructor(Name name, {bool isSuper}) {
Class cls = classBuilder.cls;
if (isSuper) {
cls = cls.superclass;
while (cls.isMixinApplication) {
cls = cls.superclass;
}
}
if (cls != null) {
for (Constructor constructor in cls.constructors) {
if (constructor.name == name) return constructor;
}
}
return null;
}
@override
void handleIdentifier(Token token, IdentifierContext context) {
debugEvent("handleIdentifier");
String name = token.lexeme;
if (context.isScopeReference) {
assert(!inInitializer ||
this.scope == enclosingScope ||
this.scope.parent == enclosingScope);
// This deals with this kind of initializer: `C(a) : a = a;`
Scope scope = inInitializer ? enclosingScope : this.scope;
push(scopeLookup(scope, name, token));
return;
} else if (context.inDeclaration) {
if (context == IdentifierContext.topLevelVariableDeclaration ||
context == IdentifierContext.fieldDeclaration) {
constantExpressionRequired = member.isConst;
}
} else if (constantExpressionRequired &&
!context.allowedInConstantExpression) {
deprecated_addCompileTimeError(
token.charOffset, "Not a constant expression: $context");
}
push(new Identifier(token));
}
/// Look up [name] in [scope] using [token] as location information (both to
/// report problems and as the file offset in the generated kernel code).
/// [isQualified] should be true if [name] is a qualified access
/// (which implies that it shouldn't be turned into a [ThisPropertyAccessor]
/// if the name doesn't resolve in the scope).
@override
scopeLookup(Scope scope, String name, Token token,
{bool isQualified: false, PrefixBuilder prefix}) {
Builder builder = scope.lookup(name, offsetForToken(token), uri);
if (builder != null && member.isField && builder.isInstanceMember) {
return new IncompleteError(this, token,
fasta.templateThisAccessInFieldInitializer.withArguments(name));
}
if (builder == null || (!isInstanceContext && builder.isInstanceMember)) {
Name n = new Name(name, library.library);
if (prefix != null &&
prefix.deferred &&
builder == null &&
"loadLibrary" == name) {
int offset = offsetForToken(token);
const String message = "Deferred loading isn't implemented yet.";
// We report the error twice, the first time silently and marking it as
// unhandled. This ensures that the compile-time error is reported
// eagerly by kernel-service, thus preventing any attempts from running
// a program that uses deferred loading. Obviously, this is a temporary
// solution until we can fully implement deferred loading.
deprecated_addCompileTimeError(offset, message,
wasHandled: false, silent: true);
return deprecated_buildCompileTimeError(message, offset);
} else if (!isQualified && isInstanceContext) {
assert(builder == null);
if (constantExpressionRequired || member.isField) {
return new UnresolvedAccessor(this, n, token);
}
return new ThisPropertyAccessor(this, token, n, null, null);
} else if (ignoreMainInGetMainClosure &&
name == "main" &&
member?.name == "_getMainClosure") {
return new ShadowNullLiteral()..fileOffset = offsetForToken(token);
} else {
return new UnresolvedAccessor(this, n, token);
}
} else if (builder.isTypeDeclaration) {
if (constantExpressionRequired &&
builder.isTypeVariable &&
!member.isConstructor) {
deprecated_addCompileTimeError(
offsetForToken(token), "Not a constant expression.");
}
return new TypeDeclarationAccessor(this, builder, name, token);
} else if (builder.isLocal) {
if (constantExpressionRequired &&
!builder.isConst &&
!member.isConstructor) {
deprecated_addCompileTimeError(
offsetForToken(token), "Not a constant expression.");
}
// An initializing formal parameter might be final without its
// VariableDeclaration being final. See
// [ProcedureBuilder.computeFormalParameterInitializerScope]. If that
// wasn't the case, we could always use VariableAccessor.
if (builder.isFinal) {
var fact =
typePromoter.getFactForAccess(builder.target, functionNestingLevel);
var scope = typePromoter.currentScope;
return new ReadOnlyAccessor(
this,
new ShadowVariableGet(builder.target, fact, scope)
..fileOffset = offsetForToken(token),
name,
token);
} else {
return new VariableAccessor(this, token, builder.target);
}
} else if (builder.isInstanceMember) {
if (constantExpressionRequired &&
!inInitializer &&
// TODO(ahe): This is a hack because Fasta sets up the scope
// "this.field" parameters according to old semantics. Under the new
// semantics, such parameters introduces a new parameter with that
// name that should be resolved here.
!member.isConstructor) {
deprecated_addCompileTimeError(
offsetForToken(token), "Not a constant expression.");
}
return new ThisPropertyAccessor(
this, token, new Name(name, library.library), null, null);
} else if (builder.isRegularMethod) {
assert(builder.isStatic || builder.isTopLevel);
return new StaticAccessor(this, token, builder.target, null);
} else if (builder is PrefixBuilder) {
if (constantExpressionRequired && builder.deferred) {
deprecated_addCompileTimeError(
offsetForToken(token),
"'$name' can't be used in a constant expression because it's "
"marked as 'deferred' which means it isn't available until "
"loaded.\n"
"You might try moving the constant to the deferred library, "
"or removing 'deferred' from the import.");
}
return builder;
} else {
if (builder.hasProblem && builder is! AccessErrorBuilder) return builder;
Builder setter;
if (builder.isSetter) {
setter = builder;
} else if (builder.isGetter) {
setter = scope.lookupSetter(name, offsetForToken(token), uri);
} else if (builder.isField && !builder.isFinal) {
setter = builder;
}
StaticAccessor accessor =
new StaticAccessor.fromBuilder(this, builder, token, setter);
if (constantExpressionRequired) {
Member readTarget = accessor.readTarget;
if (!(readTarget is Field && readTarget.isConst ||
// Static tear-offs are also compile time constants.
readTarget is Procedure)) {
deprecated_addCompileTimeError(
offsetForToken(token), "Not a constant expression.");
}
}
return accessor;
}
}
@override
void handleQualified(Token period) {
debugEvent("Qualified");
Identifier name = pop();
var receiver = pop();
push([receiver, name]);
}
@override
void beginLiteralString(Token token) {
debugEvent("beginLiteralString");
push(token);
}
@override
void handleStringPart(Token token) {
debugEvent("StringPart");
push(token);
}
@override
void endLiteralString(int interpolationCount, Token endToken) {
debugEvent("endLiteralString");
if (interpolationCount == 0) {
Token token = pop();
String value = unescapeString(token.lexeme);
push(new ShadowStringLiteral(value)..fileOffset = offsetForToken(token));
} else {
List parts = popList(1 + interpolationCount * 2);
Token first = parts.first;
Token last = parts.last;
Quote quote = analyzeQuote(first.lexeme);
List<Expression> expressions = <Expression>[];
// Contains more than just \' or \".
if (first.lexeme.length > 1) {
String value = unescapeFirstStringPart(first.lexeme, quote);
expressions.add(
new ShadowStringLiteral(value)..fileOffset = offsetForToken(first));
}
for (int i = 1; i < parts.length - 1; i++) {
var part = parts[i];
if (part is Token) {
if (part.lexeme.length != 0) {
String value = unescape(part.lexeme, quote);
expressions.add(new ShadowStringLiteral(value)
..fileOffset = offsetForToken(part));
}
} else {
expressions.add(toValue(part));
}
}
// Contains more than just \' or \".
if (last.lexeme.length > 1) {
String value = unescapeLastStringPart(last.lexeme, quote);
expressions.add(
new ShadowStringLiteral(value)..fileOffset = offsetForToken(last));
}
push(new ShadowStringConcatenation(expressions)
..fileOffset = offsetForToken(endToken));
}
}
@override
void handleNativeClause(Token nativeToken, bool hasName) {
debugEvent("NativeClause");
if (hasName) {
var ignoredNativeName = pop();
assert(ignoredNativeName is ShadowStringLiteral);
}
}
@override
void handleScript(Token token) {
debugEvent("Script");
}
@override
void handleStringJuxtaposition(int literalCount) {
debugEvent("StringJuxtaposition");
List<Expression> parts = popListForValue(literalCount);
List<Expression> expressions;
// Flatten string juxtapositions of string interpolation.
for (int i = 0; i < parts.length; i++) {
Expression part = parts[i];
if (part is StringConcatenation) {
if (expressions == null) {
expressions = parts.sublist(0, i);
}
expressions.addAll(part.expressions);
} else {
if (expressions != null) {
expressions.add(part);
}
}
}
push(new ShadowStringConcatenation(expressions ?? parts));
}
@override
void handleLiteralInt(Token token) {
debugEvent("LiteralInt");
int value = int.parse(token.lexeme, onError: (_) => null);
if (value == null) {
push(buildCompileTimeError(
fasta.templateIntegerLiteralIsOutOfRange.withArguments(token),
token.charOffset));
} else {
push(new ShadowIntLiteral(value)..fileOffset = offsetForToken(token));
}
}
@override
void handleEmptyFunctionBody(Token semicolon) {
debugEvent("ExpressionFunctionBody");
endBlockFunctionBody(0, null, semicolon);
}
@override
void handleExpressionFunctionBody(Token arrowToken, Token endToken) {
debugEvent("ExpressionFunctionBody");
endReturnStatement(true, arrowToken.next, endToken);
}
@override
void endReturnStatement(
bool hasExpression, Token beginToken, Token endToken) {
debugEvent("ReturnStatement");
Expression expression = hasExpression ? popForValue() : null;
if (expression != null && inConstructor) {
push(deprecated_buildCompileTimeErrorStatement(
"Can't return from a constructor.", beginToken.charOffset));
} else {
push(new ShadowReturnStatement(expression)
..fileOffset = beginToken.charOffset);
}
}
@override
void beginThenStatement(Token token) {
Expression condition = popForValue();
typePromoter.enterThen(condition);
push(condition);
super.beginThenStatement(token);
}
@override
void endThenStatement(Token token) {
typePromoter.enterElse();
super.endThenStatement(token);
}
@override
void endIfStatement(Token ifToken, Token elseToken) {
Statement elsePart = popStatementIfNotNull(elseToken);
Statement thenPart = popStatement();
Expression condition = popForValue();
typePromoter.exitConditional();
push(new ShadowIfStatement(condition, thenPart, elsePart)
..fileOffset = ifToken.charOffset);
}
@override
void endVariableInitializer(Token assignmentOperator) {
debugEvent("VariableInitializer");
assert(assignmentOperator.stringValue == "=");
pushNewLocalVariable(popForValue(), equalsToken: assignmentOperator);
}
@override
void handleNoVariableInitializer(Token token) {
debugEvent("NoVariableInitializer");
bool isConst = (currentLocalVariableModifiers & constMask) != 0;
bool isFinal = (currentLocalVariableModifiers & finalMask) != 0;
Expression initializer;
if (!optional("in", token)) {
// A for-in loop-variable can't have an initializer. So let's remain
// silent if the next token is `in`. Since a for-in loop can only have
// one variable it must be followed by `in`.
if (isConst) {
initializer = deprecated_buildCompileTimeError(
"A 'const' variable must be initialized.", token.charOffset);
} else if (isFinal) {
initializer = deprecated_buildCompileTimeError(
"A 'final' variable must be initialized.", token.charOffset);
}
}
pushNewLocalVariable(initializer);
}
void pushNewLocalVariable(Expression initializer, {Token equalsToken}) {
Identifier identifier = pop();
assert(currentLocalVariableModifiers != -1);
bool isConst = (currentLocalVariableModifiers & constMask) != 0;
bool isFinal = (currentLocalVariableModifiers & finalMask) != 0;
assert(isConst == constantExpressionRequired);
push(new ShadowVariableDeclaration(identifier.name, functionNestingLevel,
initializer: initializer,
type: currentLocalVariableType,
isFinal: isFinal,
isConst: isConst)
..fileOffset = offsetForToken(identifier.token)
..fileEqualsOffset = offsetForToken(equalsToken));
}
@override
void endFieldInitializer(Token assignmentOperator, Token token) {
debugEvent("FieldInitializer");
assert(assignmentOperator.stringValue == "=");
push(popForValue());
}
@override
void handleNoFieldInitializer(Token token) {
debugEvent("NoFieldInitializer");
if (constantExpressionRequired) {
// Creating a null value to prevent the Dart VM from crashing.
push(new ShadowNullLiteral()..fileOffset = offsetForToken(token));
} else {
push(NullValue.FieldInitializer);
}
}
@override
void endInitializedIdentifier(Token nameToken) {
// TODO(ahe): Use [InitializedIdentifier] here?
debugEvent("InitializedIdentifier");
VariableDeclaration variable = pop();
variable.fileOffset = nameToken.charOffset;
push(variable);
declareVariable(variable, scope);
}
@override
void beginVariablesDeclaration(Token token) {
debugEvent("beginVariablesDeclaration");
DartType type = pop();
int modifiers = Modifier.validate(pop());
super.push(currentLocalVariableModifiers);
super.push(currentLocalVariableType ?? NullValue.Type);
currentLocalVariableType = type;
currentLocalVariableModifiers = modifiers;
super.push(constantExpressionRequired);
constantExpressionRequired = (modifiers & constMask) != 0;
}
@override
void endVariablesDeclaration(int count, Token endToken) {
debugEvent("VariablesDeclaration");
List<VariableDeclaration> variables = popList(count);
constantExpressionRequired = pop();
currentLocalVariableType = pop();
currentLocalVariableModifiers = pop();
pop(); // Metadata.
if (variables.length != 1) {
push(variables);
} else {
push(variables.single);
}
}
@override
void endBlock(int count, Token beginToken, Token endToken) {
debugEvent("Block");
Block block = popBlock(count, beginToken);
exitLocalScope();
push(block);
}
@override
void handleAssignmentExpression(Token token) {
debugEvent("AssignmentExpression");
Expression value = popForValue();
var accessor = pop();
if (accessor is! FastaAccessor) {
push(buildCompileTimeError(fasta.messageNotAnLvalue, token.charOffset));
} else {
push(new DelayedAssignment(
this, token, accessor, value, token.stringValue));
}
}
@override
void enterLoop(int charOffset) {
if (peek() is LabelTarget) {
LabelTarget target = peek();
enterBreakTarget(charOffset, target.breakTarget);
enterContinueTarget(charOffset, target.continueTarget);
} else {
enterBreakTarget(charOffset);
enterContinueTarget(charOffset);
}
}
void exitLoopOrSwitch(Statement statement) {
if (compileTimeErrorInLoopOrSwitch != null) {
push(compileTimeErrorInLoopOrSwitch);
compileTimeErrorInLoopOrSwitch = null;
} else {
push(statement);
}
}
@override
void endForStatement(Token forKeyword, Token leftParen, Token leftSeparator,
int updateExpressionCount, Token endToken) {
debugEvent("ForStatement");
Statement body = popStatement();
List<Expression> updates = popListForEffect(updateExpressionCount);
Statement conditionStatement = popStatement();
Expression condition = null;
if (conditionStatement is ExpressionStatement) {
condition = conditionStatement.expression;
} else {
assert(conditionStatement is EmptyStatement);
}
List<VariableDeclaration> variables = <VariableDeclaration>[];
dynamic variableOrExpression = pop();
Statement begin;
if (variableOrExpression is FastaAccessor) {
variableOrExpression = variableOrExpression.buildForEffect();
}
if (variableOrExpression is VariableDeclaration) {
variables.add(variableOrExpression);
} else if (variableOrExpression is List) {
// TODO(sigmund): remove this assignment (see issue #28651)
Iterable vars = variableOrExpression;
variables.addAll(vars);
} else if (variableOrExpression == null) {
// Do nothing.
} else if (variableOrExpression is Expression) {
begin = new ShadowExpressionStatement(variableOrExpression);
} else {
return unhandled("${variableOrExpression.runtimeType}", "endForStatement",
forKeyword.charOffset, uri);
}
exitLocalScope();
JumpTarget continueTarget = exitContinueTarget();
JumpTarget breakTarget = exitBreakTarget();
if (continueTarget.hasUsers) {
body = new ShadowLabeledStatement(body);
continueTarget.resolveContinues(body);
}
Statement result =
new ShadowForStatement(variables, condition, updates, body)
..fileOffset = forKeyword.charOffset;
if (begin != null) {
result = new ShadowBlock(<Statement>[begin, result]);
}
if (breakTarget.hasUsers) {
result = new ShadowLabeledStatement(result);
breakTarget.resolveBreaks(result);
}
exitLoopOrSwitch(result);
}
@override
void endAwaitExpression(Token keyword, Token endToken) {
debugEvent("AwaitExpression");
push(new ShadowAwaitExpression(popForValue())
..fileOffset = offsetForToken(keyword));
}
@override
void handleAsyncModifier(Token asyncToken, Token starToken) {
debugEvent("AsyncModifier");
push(asyncMarkerFromTokens(asyncToken, starToken));
}
@override
void handleLiteralList(
int count, Token beginToken, Token constKeyword, Token endToken) {
debugEvent("LiteralList");
List<Expression> expressions = popListForValue(count);
List<DartType> typeArguments = pop();
DartType typeArgument;
if (typeArguments != null) {
typeArgument = typeArguments.first;
if (typeArguments.length > 1) {
typeArgument = null;
warningNotError(fasta.messageListLiteralTooManyTypeArguments,
beginToken.charOffset);
}
}
push(new ShadowListLiteral(expressions,
typeArgument: typeArgument, isConst: constKeyword != null)
..fileOffset = offsetForToken(constKeyword ?? beginToken));
}
@override
void handleLiteralBool(Token token) {
debugEvent("LiteralBool");
bool value = optional("true", token);
assert(value || optional("false", token));
push(new ShadowBoolLiteral(value)..fileOffset = offsetForToken(token));
}
@override
void handleLiteralDouble(Token token) {
debugEvent("LiteralDouble");
push(new ShadowDoubleLiteral(double.parse(token.lexeme))
..fileOffset = offsetForToken(token));
}
@override
void handleLiteralNull(Token token) {
debugEvent("LiteralNull");
push(new ShadowNullLiteral()..fileOffset = offsetForToken(token));
}
@override
void handleLiteralMap(
int count, Token beginToken, Token constKeyword, Token endToken) {
debugEvent("LiteralMap");
List<MapEntry> entries = popList(count) ?? <MapEntry>[];
List<DartType> typeArguments = pop();
DartType keyType;
DartType valueType;
if (typeArguments != null) {
if (typeArguments.length != 2) {
keyType = null;
valueType = null;
warningNotError(fasta.messageListLiteralTypeArgumentMismatch,
beginToken.charOffset);
} else {
keyType = typeArguments[0];
valueType = typeArguments[1];
}
}
push(new ShadowMapLiteral(entries,
keyType: keyType, valueType: valueType, isConst: constKeyword != null)
..fileOffset = constKeyword?.charOffset ?? offsetForToken(beginToken));
}
@override
void endLiteralMapEntry(Token colon, Token endToken) {
debugEvent("LiteralMapEntry");
Expression value = popForValue();
Expression key = popForValue();
push(new MapEntry(key, value));
}
String symbolPartToString(name) {
if (name is Identifier) {
return name.name;
} else if (name is Operator) {
return name.name;
} else {
return unhandled("${name.runtimeType}", "symbolPartToString", -1, uri);
}
}
@override
void endLiteralSymbol(Token hashToken, int identifierCount) {
debugEvent("LiteralSymbol");
String value;
if (identifierCount == 1) {
value = symbolPartToString(pop());
} else {
List parts = popList(identifierCount);
value = symbolPartToString(parts.first);
for (int i = 1; i < parts.length; i++) {
value += ".${symbolPartToString(parts[i])}";
}
}
push(
new ShadowSymbolLiteral(value)..fileOffset = offsetForToken(hashToken));
}
@override
void handleType(Token beginToken, Token endToken) {
// TODO(ahe): The scope is wrong for return types of generic functions.
debugEvent("Type");
List<DartType> arguments = pop();
dynamic name = pop();
if (name is List) {
if (name.length != 2) {
unexpected("${name.length}", "2", beginToken.charOffset, uri);
}
var prefix = name[0];
Identifier suffix = name[1];
if (prefix is PrefixBuilder) {
name = scopeLookup(prefix.exportScope, suffix.name, beginToken,
isQualified: true, prefix: prefix);
} else {
String displayName = debugName(getNodeName(prefix), suffix.name);
warningNotError(fasta.templateNotAType.withArguments(displayName),
beginToken.charOffset);
push(const InvalidType());
return;
}
}
if (name is TypeDeclarationAccessor) {
push(name.buildType(arguments));
} else if (name is FastaAccessor) {
warningNotError(fasta.templateNotAType.withArguments(beginToken.lexeme),
beginToken.charOffset);
push(const InvalidType());
} else if (name is TypeBuilder) {
push(name.build(library));
} else if (name is PrefixBuilder) {
warningNotError(fasta.templateNotAType.withArguments(name.name),
beginToken.charOffset);
push(const InvalidType());
} else {
unhandled(
"${name.runtimeType}", "handleType", beginToken.charOffset, uri);
}
// TODO(ahe): Unused code fasta.messageNonInstanceTypeVariableUse.
}
@override
void beginFunctionType(Token beginToken) {
debugEvent("beginFunctionType");
enterFunctionTypeScope();
}
void enterFunctionTypeScope() {
debugEvent("enterFunctionTypeScope");
List typeVariables = pop();
enterLocalScope(null,
scope.createNestedScope("function-type scope", isModifiable: false));
push(typeVariables ?? NullValue.TypeVariables);
if (typeVariables != null) {
ScopeBuilder scopeBuilder = new ScopeBuilder(scope);
for (KernelTypeVariableBuilder builder in typeVariables) {
String name = builder.name;
KernelTypeVariableBuilder existing = scopeBuilder[name];
if (existing == null) {
scopeBuilder.addMember(name, builder);
} else {
deprecated_addCompileTimeError(
builder.charOffset, "'$name' already declared in this scope.");
deprecated_addCompileTimeError(
existing.charOffset, "Previous definition of '$name'.");
}
}
}
}
@override
void endFunctionType(Token functionToken, Token endToken) {
debugEvent("FunctionType");
FormalParameters formals = pop();
DartType returnType = pop();
List<TypeParameter> typeVariables = typeVariableBuildersToKernel(pop());
FunctionType type = formals.toFunctionType(returnType, typeVariables);
exitLocalScope();
push(type);
}
@override
void handleVoidKeyword(Token token) {
debugEvent("VoidKeyword");
push(const VoidType());
}
@override
void handleAsOperator(Token operator, Token endToken) {
debugEvent("AsOperator");
DartType type = pop();
Expression expression = popForValue();
if (constantExpressionRequired) {
push(deprecated_buildCompileTimeError(
"Not a constant expression.", operator.charOffset));
} else {
push(new ShadowAsExpression(expression, type)
..fileOffset = offsetForToken(operator));
}
}
@override
void handleIsOperator(Token operator, Token not, Token endToken) {
debugEvent("IsOperator");
DartType type = pop();
Expression operand = popForValue();
bool isInverted = not != null;
var offset = offsetForToken(operator);
Expression isExpression = isInverted
? new ShadowIsNotExpression(operand, type, offset)
: new ShadowIsExpression(operand, type)
..fileOffset = offset;
if (operand is VariableGet) {
typePromoter.handleIsCheck(isExpression, isInverted, operand.variable,
type, functionNestingLevel);
}
if (constantExpressionRequired) {
push(deprecated_buildCompileTimeError(
"Not a constant expression.", operator.charOffset));
} else {
push(isExpression);
}
}
@override
void handleConditionalExpression(Token question, Token colon) {
debugEvent("ConditionalExpression");
Expression elseExpression = popForValue();
Expression thenExpression = popForValue();
Expression condition = popForValue();
push(new ShadowConditionalExpression(
condition, thenExpression, elseExpression));
}
@override
void handleThrowExpression(Token throwToken, Token endToken) {
debugEvent("ThrowExpression");
Expression expression = popForValue();
if (constantExpressionRequired) {
push(deprecated_buildCompileTimeError(
"Not a constant expression.", throwToken.charOffset));
} else {
push(
new ShadowThrow(expression)..fileOffset = offsetForToken(throwToken));
}
}
@override
void endFormalParameter(Token thisKeyword, Token nameToken,
FormalParameterKind kind, MemberKind memberKind) {
debugEvent("FormalParameter");
if (thisKeyword != null) {
if (!inConstructor) {
deprecated_addCompileTimeError(thisKeyword.charOffset,
"'this' parameters can only be used on constructors.");
thisKeyword = null;
}
}
Identifier name = pop();
DartType type = pop();
int modifiers = Modifier.validate(pop());
if (inCatchClause) {
modifiers |= finalMask;
}
bool isConst = (modifiers & constMask) != 0;
bool isFinal = (modifiers & finalMask) != 0;
ignore(Unhandled.Metadata);
VariableDeclaration variable;
if (!inCatchClause &&
functionNestingLevel == 0 &&
memberKind != MemberKind.GeneralizedFunctionType) {
ProcedureBuilder member = this.member;
KernelFormalParameterBuilder formal = member.getFormal(name.name);
if (formal == null) {
internalProblem(
fasta.templateInternalProblemNotFoundIn
.withArguments(name.name, "formals"),
member.charOffset,
member.fileUri);
} else {
variable = formal.build(library);
variable.initializer = name.initializer;
}
} else {
variable = new ShadowVariableDeclaration(name?.name, functionNestingLevel,
type: type,
initializer: name?.initializer,
isFinal: isFinal,
isConst: isConst);
if (name != null) {
// TODO(ahe): Need an offset when name is null.
variable.fileOffset = offsetForToken(name.token);
}
}
push(variable);
}
@override
void endOptionalFormalParameters(
int count, Token beginToken, Token endToken) {
debugEvent("OptionalFormalParameters");
FormalParameterKind kind = optional("{", beginToken)
? FormalParameterKind.optionalNamed
: FormalParameterKind.optionalPositional;
push(new OptionalFormals(kind, popList(count) ?? []));
}
@override
void beginFunctionTypedFormalParameter(Token token) {
debugEvent("beginFunctionTypedFormalParameter");
functionNestingLevel++;
enterFunctionTypeScope();
}
@override
void endFunctionTypedFormalParameter() {
debugEvent("FunctionTypedFormalParameter");
if (inCatchClause || functionNestingLevel != 0) {
exitLocalScope();
}
FormalParameters formals = pop();
DartType returnType = pop();
List<TypeParameter> typeVariables = typeVariableBuildersToKernel(pop());
FunctionType type = formals.toFunctionType(returnType, typeVariables);
exitLocalScope();
push(type);
functionNestingLevel--;
}
@override
void handleValuedFormalParameter(Token equals, Token token) {
debugEvent("ValuedFormalParameter");
Expression initializer = popForValue();
Identifier name = pop();
push(new InitializedIdentifier(name.token, initializer));
}
@override
void handleFormalParameterWithoutValue(Token token) {
debugEvent("FormalParameterWithoutValue");
}
@override
void beginFormalParameters(Token token, MemberKind kind) {
super.push(constantExpressionRequired);
constantExpressionRequired = false;
}
@override
void endFormalParameters(
int count, Token beginToken, Token endToken, MemberKind kind) {
debugEvent("FormalParameters");
OptionalFormals optional;
if (count > 0 && peek() is OptionalFormals) {
optional = pop();
count--;
}
FormalParameters formals = new FormalParameters(
popList(count) ?? <VariableDeclaration>[],
optional,
beginToken.charOffset);
constantExpressionRequired = pop();
push(formals);
if ((inCatchClause || functionNestingLevel != 0) &&
kind != MemberKind.GeneralizedFunctionType) {
enterLocalScope(
null,
formals.computeFormalParameterScope(
scope, member ?? classBuilder ?? library, this));
}
}
@override
void beginCatchClause(Token token) {
debugEvent("beginCatchClause");
inCatchClause = true;
}
@override
void endCatchClause(Token token) {
debugEvent("CatchClause");
inCatchClause = false;
push(inCatchBlock);
inCatchBlock = true;
}
@override
void handleCatchBlock(Token onKeyword, Token catchKeyword, Token comma) {
debugEvent("CatchBlock");
Block body = pop();
inCatchBlock = pop();
if (catchKeyword != null) {
exitLocalScope();
}
FormalParameters catchParameters = popIfNotNull(catchKeyword);
DartType type = popIfNotNull(onKeyword) ?? const DynamicType();
VariableDeclaration exception;
VariableDeclaration stackTrace;
if (catchParameters != null) {
if (catchParameters.required.length > 0) {
exception = catchParameters.required[0];
exception.type = type;
}
if (catchParameters.required.length > 1) {
stackTrace = catchParameters.required[1];
stackTrace.type = coreTypes.stackTraceClass.rawType;
}
if (catchParameters.required.length > 2 ||
catchParameters.optional != null) {
body = new Block(<Statement>[
compileTimeErrorInTry ??= deprecated_buildCompileTimeErrorStatement(
"Invalid catch arguments.", catchKeyword.next.charOffset)
]);
}
}
push(new Catch(exception, body, guard: type, stackTrace: stackTrace));
}
@override
void endTryStatement(int catchCount, Token tryKeyword, Token finallyKeyword) {
Statement finallyBlock = popStatementIfNotNull(finallyKeyword);
List<Catch> catches = popList(catchCount);
Statement tryBlock = popStatement();
if (compileTimeErrorInTry == null) {
if (catches != null) {
tryBlock = new ShadowTryCatch(tryBlock, catches);
}
if (finallyBlock != null) {
tryBlock = new ShadowTryFinally(tryBlock, finallyBlock);
}
push(tryBlock);
} else {
push(compileTimeErrorInTry);
compileTimeErrorInTry = null;
}
}
@override
void handleNoExpression(Token token) {
debugEvent("NoExpression");
push(NullValue.Expression);
}
@override
void handleIndexedExpression(
Token openSquareBracket, Token closeSquareBracket) {
debugEvent("IndexedExpression");
Expression index = popForValue();
var receiver = pop();
if (receiver is ThisAccessor && receiver.isSuper) {
push(new SuperIndexAccessor(this, openSquareBracket, index,
lookupSuperMember(indexGetName), lookupSuperMember(indexSetName)));
} else {
push(IndexAccessor.make(
this, openSquareBracket, toValue(receiver), index, null, null));
}
}
@override
void handleUnaryPrefixExpression(Token token) {
debugEvent("UnaryPrefixExpression");
var receiver = pop();
if (optional("!", token)) {
push(
new ShadowNot(toValue(receiver))..fileOffset = offsetForToken(token));
} else {
String operator = token.stringValue;
if (optional("-", token)) {
operator = "unary-";
}
if (receiver is ThisAccessor && receiver.isSuper) {
push(toSuperMethodInvocation(buildMethodInvocation(
new ShadowThisExpression()
..fileOffset = offsetForToken(receiver.token),
new Name(operator),
new Arguments.empty(),
token.charOffset)));
} else {
push(buildMethodInvocation(toValue(receiver), new Name(operator),
new Arguments.empty(), token.charOffset,
// This *could* be a constant expression, we can't know without
// evaluating [receiver].
isConstantExpression: true));
}
}
}
Name incrementOperator(Token token) {
if (optional("++", token)) return plusName;
if (optional("--", token)) return minusName;
return unhandled(token.lexeme, "incrementOperator", token.charOffset, uri);
}
@override
void handleUnaryPrefixAssignmentExpression(Token token) {
debugEvent("UnaryPrefixAssignmentExpression");
var accessor = pop();
if (accessor is FastaAccessor) {
push(accessor.buildPrefixIncrement(incrementOperator(token),
offset: token.charOffset));
} else {
push(wrapInCompileTimeError(toValue(accessor), fasta.messageNotAnLvalue));
}
}
@override
void handleUnaryPostfixAssignmentExpression(Token token) {
debugEvent("UnaryPostfixAssignmentExpression");
var accessor = pop();
if (accessor is FastaAccessor) {
push(new DelayedPostfixIncrement(
this, token, accessor, incrementOperator(token), null));
} else {
push(wrapInCompileTimeError(toValue(accessor), fasta.messageNotAnLvalue));
}
}
@override
void endConstructorReference(
Token start, Token periodBeforeName, Token endToken) {
debugEvent("ConstructorReference");
pushQualifiedReference(start, periodBeforeName);
}
/// A qualfied reference is something that matches one of:
///
/// identifier
/// identifier typeArguments? '.' identifier
/// identifier '.' identifier typeArguments? '.' identifier
///
/// That is, one to three identifiers separated by periods and optionally one
/// list of type arguments.
///
/// A qualified reference can be used to represent both a reference to
/// compile-time constant variable (metadata) or a constructor reference
/// (used by metadata, new/const expression, and redirecting factories).
///
/// Note that the parser will report errors if metadata includes type
/// arguments, but will other preserve them for error recovery.
///
/// A constructor reference can contain up to three identifiers:
///
/// a) type typeArguments?
/// b) type typeArguments? '.' name
/// c) prefix '.' type typeArguments?
/// d) prefix '.' type typeArguments? '.' name
///
/// This isn't a legal constructor reference:
///
/// type '.' name typeArguments?
///
/// But the parser can't tell this from type c) above.
///
/// This method pops 2 (or 3 if `periodBeforeName != null`) values from the
/// stack and pushes 3 values: an accessor (the type in a constructor
/// reference, or an expression in metadata), a list of type arguments, and a
/// name.
void pushQualifiedReference(Token start, Token periodBeforeName) {
Identifier suffix = popIfNotNull(periodBeforeName);
Identifier identifier;
List<DartType> typeArguments = pop();
dynamic type = pop();
if (type is List) {
var prefix = type[0];
identifier = type[1];
if (prefix is PrefixBuilder) {
type = scopeLookup(prefix.exportScope, identifier.name, start,
isQualified: true, prefix: prefix);
identifier = null;
} else if (prefix is TypeDeclarationAccessor) {
type = prefix;
} else {
type = new Identifier(start);
}
}
String name;
if (identifier != null && suffix != null) {
name = "${identifier.name}.${suffix.name}";
} else if (identifier != null) {
name = identifier.name;
} else if (suffix != null) {
name = suffix.name;
} else {
name = "";
}
push(type);
push(typeArguments ?? NullValue.TypeArguments);
push(name);
}
@override
Expression buildStaticInvocation(Member target, Arguments arguments,
{bool isConst: false, int charOffset: -1, Member initialTarget}) {
initialTarget ??= target;
List<TypeParameter> typeParameters = target.function.typeParameters;
if (target is Constructor) {
assert(!target.enclosingClass.isAbstract);
typeParameters = target.enclosingClass.typeParameters;
}
if (!checkArguments(target.function, arguments, typeParameters)) {
return throwNoSuchMethodError(new NullLiteral()..fileOffset = charOffset,
target.name.name, arguments, charOffset);
}
if (target is Constructor) {
if (isConst && !target.isConst) {
return deprecated_buildCompileTimeError(
"Not a const constructor.", charOffset);
}
return new ShadowConstructorInvocation(target, initialTarget, arguments,
isConst: isConst)
..fileOffset = charOffset;
} else {
Procedure procedure = target;
if (isConst && !procedure.isConst) {
return deprecated_buildCompileTimeError(
"Not a const factory.", charOffset);
} else if (procedure.isFactory) {
return new ShadowFactoryConstructorInvocation(
target, initialTarget, arguments,
isConst: isConst)
..fileOffset = charOffset;
} else {
return new ShadowStaticInvocation(target, arguments, isConst: isConst)
..fileOffset = charOffset;
}
}
}
@override
bool checkArguments(FunctionNode function, Arguments arguments,
List<TypeParameter> typeParameters) {
if (arguments.positional.length < function.requiredParameterCount ||
arguments.positional.length > function.positionalParameters.length) {
return false;
}
Map<String, VariableDeclaration> names;
if (function.namedParameters.isNotEmpty) {
names = <String, VariableDeclaration>{};
for (VariableDeclaration parameter in function.namedParameters) {
names[parameter.name] = parameter;
}
}
if (arguments.named.isNotEmpty) {
if (names == null) return false;
for (NamedExpression argument in arguments.named) {
VariableDeclaration parameter = names.remove(argument.name);
if (parameter == null) {
return false;
}
}
}
if (typeParameters.length != arguments.types.length) {
arguments.types.clear();
for (int i = 0; i < typeParameters.length; i++) {
arguments.types.add(const DynamicType());
}
}
return true;
}
@override
void beginNewExpression(Token token) {
debugEvent("beginNewExpression");
super.push(constantExpressionRequired);
if (constantExpressionRequired) {
deprecated_addCompileTimeError(
token.charOffset, "Not a constant expression.");
}
constantExpressionRequired = false;
}
@override
void beginConstExpression(Token token) {
debugEvent("beginConstExpression");
super.push(constantExpressionRequired);
constantExpressionRequired = true;
}
@override
void beginConstLiteral(Token token) {
debugEvent("beginConstLiteral");
super.push(constantExpressionRequired);
constantExpressionRequired = true;
}
@override
void endConstLiteral(Token token) {
debugEvent("endConstLiteral");
var literal = pop();
constantExpressionRequired = pop();
push(literal);
}
@override
void endNewExpression(Token token) {
debugEvent("NewExpression");
Token nameToken = token.next;
ShadowArguments arguments = pop();
String name = pop();
List<DartType> typeArguments = pop();
var type = pop();
if (type is TypeDeclarationAccessor) {
TypeDeclarationAccessor accessor = type;
type = accessor.declaration;
}
bool savedConstantExpressionRequired = pop();
() {
if (arguments == null) {
push(deprecated_buildCompileTimeError(
"No arguments.", nameToken.charOffset));
return;
}
if (typeArguments != null) {
assert(arguments.types.isEmpty);
ShadowArguments.setExplicitArgumentTypes(arguments, typeArguments);
}
String errorName;
if (type is ClassBuilder) {
if (type is EnumBuilder) {
push(deprecated_buildCompileTimeError(
"An enum class can't be instantiated.", nameToken.charOffset));
return;
}
Builder b =
type.findConstructorOrFactory(name, token.charOffset, uri, library);
Member target;
Member initialTarget;
if (b == null) {
// Not found. Reported below.
} else if (b.isConstructor) {
initialTarget = b.target;
if (type.isAbstract) {
push(new ShadowSyntheticExpression(evaluateArgumentsBefore(
arguments,
buildAbstractClassInstantiationError(
type.name, nameToken.charOffset))));
return;
} else {
target = initialTarget;
}
} else if (b.isFactory) {
initialTarget = b.target;
target = getRedirectionTarget(initialTarget);
if (target == null) {
push(deprecated_buildCompileTimeError(
"Cyclic definition of factory '${name}'.",
nameToken.charOffset));
return;
}
RedirectingFactoryBody body = getRedirectingFactoryBody(target);
if (body != null) {
// If the redirection target is itself a redirecting factory, it
// means that it is unresolved. So we set target to null so we
// can generate a no-such-method error below.
assert(body.isUnresolved);
target = null;
errorName = body.unresolvedName;
}
}
if (target is Constructor ||
(target is Procedure && target.kind == ProcedureKind.Factory)) {
push(buildStaticInvocation(target, arguments,
isConst: optional("const", token) || optional("@", token),
charOffset: nameToken.charOffset,
initialTarget: initialTarget));
return;
} else {
errorName ??= debugName(type.name, name);
}
} else {
errorName = debugName(getNodeName(type), name);
}
errorName ??= name;
push(throwNoSuchMethodError(
new NullLiteral()..fileOffset = token.charOffset,
errorName,
arguments,
nameToken.charOffset));
}();
constantExpressionRequired = savedConstantExpressionRequired;
}
@override
void endConstExpression(Token token) {
debugEvent("endConstExpression");
endNewExpression(token);
}
@override
void endTypeArguments(int count, Token beginToken, Token endToken) {
debugEvent("TypeArguments");
push(popList(count));
}
@override
void handleThisExpression(Token token, IdentifierContext context) {
debugEvent("ThisExpression");
if (context.isScopeReference && isInstanceContext) {
push(new ThisAccessor(this, token, inInitializer));
} else {
push(new IncompleteError(this, token, fasta.messageThisAsIdentifier));
}
}
@override
void handleSuperExpression(Token token, IdentifierContext context) {
debugEvent("SuperExpression");
if (context.isScopeReference && isInstanceContext) {
Member member = this.member.target;
member.transformerFlags |= TransformerFlag.superCalls;
push(new ThisAccessor(this, token, inInitializer, isSuper: true));
} else {
push(new IncompleteError(this, token, fasta.messageSuperAsIdentifier));
}
}
@override
void handleNamedArgument(Token colon) {
debugEvent("NamedArgument");
Expression value = popForValue();
Identifier identifier = pop();
push(new NamedExpression(identifier.name, value)
..fileOffset = offsetForToken(identifier.token));
}
@override
void endFunctionName(Token beginToken, Token token) {
debugEvent("FunctionName");
Identifier name = pop();
VariableDeclaration variable = new ShadowVariableDeclaration(
name.name, functionNestingLevel,
isFinal: true, isLocalFunction: true)
..fileOffset = offsetForToken(name.token);
if (scope.local[variable.name] != null) {
deprecated_addCompileTimeError(offsetForToken(name.token),
"'${variable.name}' already declared in this scope.");
}
push(new ShadowFunctionDeclaration(
variable,
// The function node is created later.
null)
..fileOffset = beginToken.charOffset);
declareVariable(variable, scope.parent);
}
void enterFunction() {
debugEvent("enterFunction");
enterFunctionTypeScope();
functionNestingLevel++;
push(switchScope ?? NullValue.SwitchScope);
switchScope = null;
push(inCatchBlock);
inCatchBlock = false;
}
void exitFunction() {
debugEvent("exitFunction");
functionNestingLevel--;
inCatchBlock = pop();
switchScope = pop();
List typeVariables = pop();
exitLocalScope();
push(typeVariables ?? NullValue.TypeVariables);
}
@override
void beginLocalFunctionDeclaration(Token token) {
debugEvent("beginLocalFunctionDeclaration");
enterFunction();
}
@override
void beginNamedFunctionExpression(Token token) {
debugEvent("beginNamedFunctionExpression");
List typeVariables = pop();
// Create an additional scope in which the named function expression is
// declared.
enterLocalScope("named function");
push(typeVariables ?? NullValue.TypeVariables);
enterFunction();
}
@override
void beginFunctionExpression(Token token) {
debugEvent("beginFunctionExpression");
enterFunction();
}
void pushNamedFunction(Token token, bool isFunctionExpression) {
Statement body = popStatement();
AsyncMarker asyncModifier = pop();
exitLocalScope();
FormalParameters formals = pop();
var declaration = pop();
var returnType = pop();
var hasImplicitReturnType = returnType == null;
returnType ??= const DynamicType();
pop(); // Modifiers.
exitFunction();
List<TypeParameter> typeParameters = typeVariableBuildersToKernel(pop());
FunctionNode function = formals.addToFunction(new FunctionNode(body,
typeParameters: typeParameters,
asyncMarker: asyncModifier,
returnType: returnType)
..fileOffset = formals.charOffset
..fileEndOffset = token.charOffset);
if (declaration is FunctionDeclaration) {
VariableDeclaration variable = declaration.variable;
ShadowFunctionDeclaration.setHasImplicitReturnType(
declaration, hasImplicitReturnType);
variable.type = function.functionType;
if (isFunctionExpression) {
variable.initializer = new ShadowFunctionExpression(function)
..parent = variable
..fileOffset = formals.charOffset;
exitLocalScope();
push(new ShadowNamedFunctionExpression(variable));
} else {
declaration.function = function;
function.parent = declaration;
push(declaration);
}
} else if (declaration is ExpressionStatement) {
// If [declaration] isn't a [FunctionDeclaration], it must be because
// there was a compile-time error.
assert(library.hasCompileTimeErrors);
// TODO(paulberry,ahe): ensure that when integrating with analyzer, type
// inference is still performed for the dropped declaration.
if (isFunctionExpression) {
push(declaration.expression);
} else {
push(declaration);
}
} else {
return unhandled("${declaration.runtimeType}", "pushNamedFunction",
token.charOffset, uri);
}
}
@override
void endNamedFunctionExpression(Token endToken) {
debugEvent("NamedFunctionExpression");
pushNamedFunction(endToken, true);
}
@override
void endLocalFunctionDeclaration(Token token) {
debugEvent("LocalFunctionDeclaration");
pushNamedFunction(token, false);
}
@override
void endFunctionExpression(Token beginToken, Token token) {
debugEvent("FunctionExpression");
Statement body = popStatement();
AsyncMarker asyncModifier = pop();
exitLocalScope();
FormalParameters formals = pop();
exitFunction();
List<TypeParameter> typeParameters = typeVariableBuildersToKernel(pop());
FunctionNode function = formals.addToFunction(new FunctionNode(body,
typeParameters: typeParameters, asyncMarker: asyncModifier)
..fileOffset = beginToken.charOffset
..fileEndOffset = token.charOffset);
if (constantExpressionRequired) {
push(deprecated_buildCompileTimeError(
"Not a constant expression.", formals.charOffset));
} else {
push(new ShadowFunctionExpression(function)
..fileOffset = offsetForToken(beginToken));
}
}
@override
void endDoWhileStatement(
Token doKeyword, Token whileKeyword, Token endToken) {
debugEvent("DoWhileStatement");
Expression condition = popForValue();
Statement body = popStatement();
JumpTarget continueTarget = exitContinueTarget();
JumpTarget breakTarget = exitBreakTarget();
if (continueTarget.hasUsers) {
body = new ShadowLabeledStatement(body);
continueTarget.resolveContinues(body);
}
Statement result = new ShadowDoStatement(body, condition)
..fileOffset = doKeyword.charOffset;
if (breakTarget.hasUsers) {
result = new ShadowLabeledStatement(result);
breakTarget.resolveBreaks(result);
}
exitLoopOrSwitch(result);
}
@override
void beginForInExpression(Token token) {
enterLocalScope(null, scope.parent);
}
@override
void endForInExpression(Token token) {
debugEvent("ForInExpression");
Expression expression = popForValue();
exitLocalScope();
push(expression ?? NullValue.Expression);
}
@override
void endForIn(Token awaitToken, Token forToken, Token leftParenthesis,
Token inKeyword, Token endToken) {
debugEvent("ForIn");
Statement body = popStatement();
Expression expression = popForValue();
var lvalue = pop();
exitLocalScope();
JumpTarget continueTarget = exitContinueTarget();
JumpTarget breakTarget = exitBreakTarget();
if (continueTarget.hasUsers) {
body = new ShadowLabeledStatement(body);
continueTarget.resolveContinues(body);
}
VariableDeclaration variable;
bool declaresVariable = false;
if (lvalue is VariableDeclaration) {
declaresVariable = true;
variable = lvalue;
if (variable.isConst) {
deprecated_addCompileTimeError(
variable.fileOffset, "A for-in loop-variable can't be 'const'.");
}
} else if (lvalue is FastaAccessor) {
/// We are in this case, where `lvalue` isn't a [VariableDeclaration]:
///
/// for (lvalue in expression) body
///
/// This is normalized to:
///
/// for (final #t in expression) {
/// lvalue = #t;
/// body;
/// }
variable = new VariableDeclaration.forValue(null);
body = combineStatements(
new ShadowSyntheticStatement(new ExpressionStatement(lvalue
.buildAssignment(new VariableGet(variable), voidContext: true))),
body);
} else {
variable = new VariableDeclaration.forValue(
deprecated_buildCompileTimeError("Expected lvalue, but got ${lvalue}",
forToken.next.next.charOffset));
}
Statement result = new ShadowForInStatement(
variable, expression, body, declaresVariable,
isAsync: awaitToken != null)
..fileOffset = forToken.charOffset
..bodyOffset = body.fileOffset;
if (breakTarget.hasUsers) {
result = new ShadowLabeledStatement(result);
breakTarget.resolveBreaks(result);
}
exitLoopOrSwitch(result);
}
@override
void handleLabel(Token token) {
debugEvent("Label");
Identifier identifier = pop();
push(new Label(identifier.name));
}
@override
void beginLabeledStatement(Token token, int labelCount) {
debugEvent("beginLabeledStatement");
List<Label> labels = popList(labelCount);
enterLocalScope(null, scope.createNestedLabelScope());
LabelTarget target =
new LabelTarget(member, functionNestingLevel, token.charOffset);
for (Label label in labels) {
scope.declareLabel(label.name, target);
}
push(target);
}
@override
void endLabeledStatement(int labelCount) {
debugEvent("LabeledStatement");
Statement statement = popStatement();
LabelTarget target = pop();
exitLocalScope();
if (target.breakTarget.hasUsers) {
if (statement is! LabeledStatement) {
statement = new ShadowLabeledStatement(statement);
}
target.breakTarget.resolveBreaks(statement);
}
if (target.continueTarget.hasUsers) {
if (statement is! LabeledStatement) {
statement = new ShadowLabeledStatement(statement);
}
target.continueTarget.resolveContinues(statement);
}
push(statement);
}
@override
void endRethrowStatement(Token rethrowToken, Token endToken) {
debugEvent("RethrowStatement");
if (inCatchBlock) {
push(new ShadowExpressionStatement(
new ShadowRethrow()..fileOffset = offsetForToken(rethrowToken)));
} else {
push(deprecated_buildCompileTimeErrorStatement(
"'rethrow' can only be used in catch clauses.",
rethrowToken.charOffset));
}
}
@override
void handleFinallyBlock(Token finallyKeyword) {
debugEvent("FinallyBlock");
// Do nothing, handled by [endTryStatement].
}
@override
void endWhileStatement(Token whileKeyword, Token endToken) {
debugEvent("WhileStatement");
Statement body = popStatement();
Expression condition = popForValue();
JumpTarget continueTarget = exitContinueTarget();
JumpTarget breakTarget = exitBreakTarget();
if (continueTarget.hasUsers) {
body = new ShadowLabeledStatement(body);
continueTarget.resolveContinues(body);
}
Statement result = new ShadowWhileStatement(condition, body)
..fileOffset = whileKeyword.charOffset;
if (breakTarget.hasUsers) {
result = new ShadowLabeledStatement(result);
breakTarget.resolveBreaks(result);
}
exitLoopOrSwitch(result);
}
@override
void handleEmptyStatement(Token token) {
debugEvent("EmptyStatement");
push(new EmptyStatement());
}
@override
void beginAssert(Token assertKeyword, Assert kind) {
debugEvent("beginAssert");
// If in an assert initializer, make sure [inInitializer] is false so we
// use the formal parameter scope. If this is any other kind of assert,
// inInitializer should be false anyway.
inInitializer = false;
}
@override
void endAssert(Token assertKeyword, Assert kind, Token leftParenthesis,
Token commaToken, Token semicolonToken) {
debugEvent("Assert");
Expression message = popForValueIfNotNull(commaToken);
Expression condition = popForValue();
AssertStatement statement = new ShadowAssertStatement(condition,
conditionStartOffset: leftParenthesis.offset + 1,
conditionEndOffset: leftParenthesis.endGroup.offset,
message: message);
switch (kind) {
case Assert.Statement:
push(statement);
break;
case Assert.Expression:
push(deprecated_buildCompileTimeError(
"`assert` can't be used as an expression."));
break;
case Assert.Initializer:
push(buildAssertInitializer(statement));
break;
}
}
Initializer buildAssertInitializer(AssertStatement statement) {
// Since kernel only has asserts in statment form, we convert it to an
// expression by wrapping it in an anonymous function which we call
// immediately.
//
// Additionally, kernel has no initializer that evaluates an expression,
// but it does have `LocalInitializer` which requires a variable declartion.
//
// So we produce an initializer like this:
//
// var #t0 = (() { statement; }) ()
return new ShadowAssertInitializer(
new VariableDeclaration.forValue(buildMethodInvocation(
new FunctionExpression(new FunctionNode(statement)),
callName,
new Arguments.empty(),
statement.fileOffset,
isConstantExpression: true,
isImplicitCall: true)),
statement);
}
@override
void endYieldStatement(Token yieldToken, Token starToken, Token endToken) {
debugEvent("YieldStatement");
push(new ShadowYieldStatement(popForValue(), isYieldStar: starToken != null)
..fileOffset = yieldToken.charOffset);
}
@override
void beginSwitchBlock(Token token) {
debugEvent("beginSwitchBlock");
enterLocalScope("switch block");
enterSwitchScope();
enterBreakTarget(token.charOffset);
}
@override
void beginSwitchCase(int labelCount, int expressionCount, Token firstToken) {
debugEvent("beginSwitchCase");
List labelsAndExpressions = popList(labelCount + expressionCount);
List<Label> labels = <Label>[];
List<Expression> expressions = <Expression>[];
if (labelsAndExpressions != null) {
for (var labelOrExpression in labelsAndExpressions) {
if (labelOrExpression is Label) {
labels.add(labelOrExpression);
} else {
expressions.add(labelOrExpression);
}
}
}
assert(scope == switchScope);
for (Label label in labels) {
if (scope.hasLocalLabel(label.name)) {
// TODO(ahe): Should validate this is a goto target and not duplicated.
scope.claimLabel(label.name);
} else {
scope.declareLabel(label.name, createGotoTarget(firstToken.charOffset));
}
}
push(expressions);
push(labels);
enterLocalScope("switch case");
}
@override
void endSwitchCase(int labelCount, int expressionCount, Token defaultKeyword,
int statementCount, Token firstToken, Token endToken) {
debugEvent("SwitchCase");
// We always create a block here so that we later know that there's always
// one synthetic block when we finish compiling the switch statement and
// check this switch case to see if it falls through to the next case.
Block block = popBlock(statementCount, firstToken);
exitLocalScope();
List<Label> labels = pop();
List<Expression> expressions = pop();
List<int> expressionOffsets = <int>[];
for (Expression expression in expressions) {
expressionOffsets.add(expression.fileOffset);
}
push(new SwitchCase(expressions, expressionOffsets, block,
isDefault: defaultKeyword != null)
..fileOffset = firstToken.charOffset);
push(labels);
}
@override
void endSwitchStatement(Token switchKeyword, Token endToken) {
debugEvent("SwitchStatement");
List<SwitchCase> cases = pop();
JumpTarget target = exitBreakTarget();
exitSwitchScope();
exitLocalScope();
Expression expression = popForValue();
Statement result = new ShadowSwitchStatement(expression, cases)
..fileOffset = switchKeyword.charOffset;
if (target.hasUsers) {
result = new ShadowLabeledStatement(result);
target.resolveBreaks(result);
}
exitLoopOrSwitch(result);
}
@override
void endSwitchBlock(int caseCount, Token beginToken, Token endToken) {
debugEvent("SwitchBlock");
List<SwitchCase> cases =
new List<SwitchCase>.filled(caseCount, null, growable: true);
for (int i = caseCount - 1; i >= 0; i--) {
List<Label> labels = pop();
SwitchCase current = cases[i] = pop();
for (Label label in labels) {
JumpTarget target = switchScope.lookupLabel(label.name);
if (target != null) {
target.resolveGotos(current);
}
}
}
// Check all but the last case for the following:
// 1. That it isn't a default case (which should be last).
// 2. That it doesn't fall through to the next case.
for (int i = 0; i < caseCount - 1; i++) {
SwitchCase current = cases[i];
if (current.isDefault) {
deprecated_addCompileTimeError(current.fileOffset,
"'default' switch case should be the last case.");
continue;
}
Block block = current.body;
// [block] is a synthetic block that is added to handle variable
// declarations in the switch case.
TreeNode lastNode =
block.statements.isEmpty ? null : block.statements.last;
if (lastNode is Block) {
// This is a non-synthetic block.
Block block = lastNode;
lastNode = block.statements.isEmpty ? null : block.statements.last;
}
if (lastNode is ExpressionStatement) {
ExpressionStatement statement = lastNode;
lastNode = statement.expression;
}
if (lastNode is! BreakStatement &&
lastNode is! ContinueSwitchStatement &&
lastNode is! Rethrow &&
lastNode is! ReturnStatement &&
lastNode is! Throw) {
block.addStatement(
new ExpressionStatement(buildFallThroughError(current.fileOffset)));
}
}
push(cases);
}
@override
void handleCaseMatch(Token caseKeyword, Token colon) {
debugEvent("CaseMatch");
// Do nothing. Handled by [handleSwitchCase].
}
@override
void handleBreakStatement(
bool hasTarget, Token breakKeyword, Token endToken) {
debugEvent("BreakStatement");
var target = breakTarget;
String name;
if (hasTarget) {
Identifier identifier = pop();
name = identifier.name;
target = scope.lookupLabel(identifier.name);
}
if (target == null && name == null) {
push(compileTimeErrorInLoopOrSwitch =
deprecated_buildCompileTimeErrorStatement(
"No target of break.", breakKeyword.charOffset));
} else if (target == null ||
target is! JumpTarget ||
!target.isBreakTarget) {
push(compileTimeErrorInLoopOrSwitch =
deprecated_buildCompileTimeErrorStatement(
"Can't break to '$name'.", breakKeyword.next.charOffset));
} else if (target.functionNestingLevel != functionNestingLevel) {
push(compileTimeErrorInLoopOrSwitch =
deprecated_buildCompileTimeErrorStatement(
"Can't break to '$name' in a different function.",
breakKeyword.next.charOffset));
} else {
BreakStatement statement = new ShadowBreakStatement(null)
..fileOffset = breakKeyword.charOffset;
target.addBreak(statement);
push(statement);
}
}
@override
void handleContinueStatement(
bool hasTarget, Token continueKeyword, Token endToken) {
debugEvent("ContinueStatement");
var target = continueTarget;
String name;
if (hasTarget) {
Identifier identifier = pop();
name = identifier.name;
target = scope.lookupLabel(identifier.name);
if (target != null && target is! JumpTarget) {
push(compileTimeErrorInLoopOrSwitch =
deprecated_buildCompileTimeErrorStatement(
"Target of continue must be a label.",
continueKeyword.charOffset));
return;
}
if (target == null) {
if (switchScope == null) {
push(deprecated_buildCompileTimeErrorStatement(
"Can't find label '$name'.", continueKeyword.next.charOffset));
return;
}
switchScope.forwardDeclareLabel(identifier.name,
target = createGotoTarget(offsetForToken(identifier.token)));
}
if (target.isGotoTarget &&
target.functionNestingLevel == functionNestingLevel) {
ContinueSwitchStatement statement =
new ShadowContinueSwitchStatement(null)
..fileOffset = continueKeyword.charOffset;
target.addGoto(statement);
push(statement);
return;
}
}
if (target == null) {
push(compileTimeErrorInLoopOrSwitch =
deprecated_buildCompileTimeErrorStatement(
"No target of continue.", continueKeyword.charOffset));
} else if (!target.isContinueTarget) {
push(compileTimeErrorInLoopOrSwitch =
deprecated_buildCompileTimeErrorStatement(
"Can't continue at '$name'.", continueKeyword.next.charOffset));
} else if (target.functionNestingLevel != functionNestingLevel) {
push(compileTimeErrorInLoopOrSwitch =
deprecated_buildCompileTimeErrorStatement(
"Can't continue at '$name' in a different function.",
continueKeyword.next.charOffset));
} else {
BreakStatement statement = new ShadowBreakStatement(null)
..fileOffset = continueKeyword.charOffset;
target.addContinue(statement);
push(statement);
}
}
@override
void endTypeVariable(Token token, Token extendsOrSuper) {
debugEvent("TypeVariable");
DartType bound = pop();
if (bound != null) {
// TODO(ahe): To handle F-bounded types, this needs to be a TypeBuilder.
warningNotError(
fasta.templateInternalProblemUnimplemented
.withArguments("bounds on type variables"),
offsetForToken(extendsOrSuper.next));
}
Identifier name = pop();
// TODO(ahe): Do not discard metadata.
pop(); // Metadata.
push(new KernelTypeVariableBuilder(
name.name, library, offsetForToken(name.token), null)
..finish(library, library.loader.coreLibrary["Object"]));
}
@override
void endTypeVariables(int count, Token beginToken, Token endToken) {
debugEvent("TypeVariables");
push(popList(count) ?? NullValue.TypeVariables);
}
List<TypeParameter> typeVariableBuildersToKernel(List typeVariableBuilders) {
if (typeVariableBuilders == null) return null;
List<TypeParameter> typeParameters = new List<TypeParameter>.filled(
typeVariableBuilders.length, null,
growable: true);
int i = 0;
for (KernelTypeVariableBuilder builder in typeVariableBuilders) {
typeParameters[i++] = builder.target;
}
return typeParameters;
}
@override
void handleModifier(Token token) {
debugEvent("Modifier");
// TODO(ahe): Copied from outline_builder.dart.
push(new Modifier.fromString(token.stringValue));
}
@override
void handleModifiers(int count) {
debugEvent("Modifiers");
// TODO(ahe): Copied from outline_builder.dart.
push(popList(count) ?? NullValue.Modifiers);
}
@override
void handleRecoverableError(Token token, Message message) {
/// TODO(danrubel): Ignore this error until we deprecate `native` support.
if (message == messageNativeClauseShouldBeAnnotation) {
return;
}
bool silent = hasParserError ||
message.code == fasta.codeFinalFieldWithoutInitializer ||
message.code == fasta.codeConstFieldWithoutInitializer;
deprecated_addCompileTimeError(offsetForToken(token), message.message,
silent: silent);
}
@override
Token handleUnrecoverableError(Token token, Message message) {
if (message.code == fasta.codeExpectedButGot) {
String expected = message.arguments["string"];
const List<String> trailing = const <String>[")", "}", ";", ","];
if (trailing.contains(token.stringValue) && trailing.contains(expected)) {
handleRecoverableError(token, message);
return newSyntheticToken(token);
}
}
return super.handleUnrecoverableError(token, message);
}
@override
Expression deprecated_buildCompileTimeError(String error,
[int charOffset = -1]) {
return buildCompileTimeError(
fasta.templateUnspecified.withArguments(error), charOffset);
}
@override
Expression buildCompileTimeError(Message message, int charOffset) {
// TODO(ahe): This method should be passed the erroneous expression, wrap
// it in a class (TBD) from which the erroneous expression can be easily
// extracted. Similar for statements and initializers. See also [issue
// 29717](https://github.com/dart-lang/sdk/issues/29717)
library.addCompileTimeError(message, charOffset, uri, wasHandled: true);
return new ShadowSyntheticExpression(library.loader
.throwCompileConstantError(
library.loader.buildCompileTimeError(message, charOffset, uri)));
}
Expression wrapInCompileTimeError(Expression expression, Message message) {
return new Let(
new VariableDeclaration.forValue(expression)
..fileOffset = expression.fileOffset,
buildCompileTimeError(message, expression.fileOffset))
..fileOffset = expression.fileOffset;
}
Expression buildFallThroughError(int charOffset) {
warningNotError(fasta.messageSwitchCaseFallThrough, charOffset);
Location location = messages.getLocationFromUri(uri, charOffset);
return new Throw(buildStaticInvocation(
library.loader.coreTypes.fallThroughErrorUrlAndLineConstructor,
new Arguments(<Expression>[
new StringLiteral(location?.file ?? uri.toString()),
new IntLiteral(location?.line ?? 0)
]),
charOffset: charOffset));
}
Expression buildAbstractClassInstantiationError(String className,
[int charOffset = -1]) {
warning(fasta.templateAbstractClassInstantiation.withArguments(className),
charOffset);
Builder constructor = library.loader.getAbstractClassInstantiationError();
return new Throw(buildStaticInvocation(constructor.target,
new ShadowArguments(<Expression>[new StringLiteral(className)])));
}
Statement deprecated_buildCompileTimeErrorStatement(error,
[int charOffset = -1]) {
return new ShadowExpressionStatement(
deprecated_buildCompileTimeError(error, charOffset));
}
@override
Initializer buildInvalidInitializer(Expression expression,
[int charOffset = -1]) {
needsImplicitSuperInitializer = false;
return new ShadowInvalidInitializer(
new VariableDeclaration.forValue(expression))
..fileOffset = charOffset;
}
Initializer buildDuplicatedInitializer(
String name, int offset, int previousInitializerOffset) {
Initializer initializer = buildInvalidInitializer(
deprecated_buildCompileTimeError(
"'$name' has already been initialized.", offset),
offset);
deprecated_addCompileTimeError(
initializedFields[name], "'$name' was initialized here.");
return initializer;
}
@override
Initializer buildFieldInitializer(
bool isSynthetic, String name, int offset, Expression expression) {
Builder builder = classBuilder.scope.local[name];
if (builder is KernelFieldBuilder && builder.isInstanceMember) {
initializedFields ??= <String, int>{};
if (initializedFields.containsKey(name)) {
return buildDuplicatedInitializer(
name, offset, initializedFields[name]);
}
initializedFields[name] = offset;
if (builder.isFinal && builder.hasInitializer) {
// TODO(ahe): If CL 2843733002 is landed, this becomes a compile-time
// error. Also, this is a compile-time error in strong mode.
warningNotError(
fasta.templateFinalInstanceVariableAlreadyInitialized
.withArguments(name),
offset);
warningNotError(
fasta.templateFinalInstanceVariableAlreadyInitializedCause
.withArguments(name),
builder.charOffset);
Builder constructor =
library.loader.getDuplicatedFieldInitializerError();
return buildInvalidInitializer(
new Throw(buildStaticInvocation(constructor.target,
new Arguments(<Expression>[new StringLiteral(name)]),
charOffset: offset)),
offset);
} else {
return new ShadowFieldInitializer(builder.field, expression)
..fileOffset = offset
..isSynthetic = isSynthetic;
}
} else {
return buildInvalidInitializer(
deprecated_buildCompileTimeError(
"'$name' isn't an instance field of this class.", offset),
offset);
}
}
@override
Initializer buildSuperInitializer(
bool isSynthetic, Constructor constructor, Arguments arguments,
[int charOffset = -1]) {
if (member.isConst && !constructor.isConst) {
return buildInvalidInitializer(
deprecated_buildCompileTimeError(
"Super constructor isn't const.", charOffset),
charOffset);
}
needsImplicitSuperInitializer = false;
return new ShadowSuperInitializer(constructor, arguments)
..fileOffset = charOffset
..isSynthetic = isSynthetic;
}
@override
Initializer buildRedirectingInitializer(
Constructor constructor, Arguments arguments,
[int charOffset = -1]) {
needsImplicitSuperInitializer = false;
return new ShadowRedirectingInitializer(constructor, arguments)
..fileOffset = charOffset;
}
@override
Expression buildProblemExpression(ProblemBuilder builder, int charOffset) {
return buildCompileTimeError(builder.message, charOffset);
}
@override
void handleOperator(Token token) {
debugEvent("Operator");
push(new Operator(token.stringValue, token.charOffset));
}
@override
void handleSymbolVoid(Token token) {
debugEvent("SymbolVoid");
push(new Identifier(token));
}
@override
dynamic deprecated_addCompileTimeError(int charOffset, String message,
{bool silent: false, bool wasHandled: false}) {
// TODO(ahe): If constantExpressionRequired is set, set it to false to
// avoid a long list of errors.
return library.addCompileTimeError(
fasta.templateUnspecified.withArguments(message), charOffset, uri,
silent: silent, wasHandled: wasHandled);
}
@override
void handleInvalidFunctionBody(Token token) {
if (member.isNative) {
push(NullValue.FunctionBody);
} else {
push(new Block(<Statement>[
deprecated_buildCompileTimeErrorStatement(
"Expected '{'.", token.charOffset)
]));
}
}
void warningNotError(Message message, int charOffset) {
super.warning(message, charOffset);
}
@override
DartType validatedTypeVariableUse(
TypeParameterType type, int offset, bool nonInstanceAccessIsError) {
if (!isInstanceContext && type.parameter.parent is Class) {
Message message = fasta.messageTypeVariableInStaticContext;
if (nonInstanceAccessIsError) {
addCompileTimeError(message, offset);
} else {
warning(message, offset);
}
return const InvalidType();
} else if (constantExpressionRequired) {
deprecated_addCompileTimeError(
offset,
"Type variable '${type.parameter.name}' can't be used as a constant "
"expression $type.");
}
return type;
}
Expression evaluateArgumentsBefore(
Arguments arguments, Expression expression) {
if (arguments == null) return expression;
List<Expression> expressions =
new List<Expression>.from(arguments.positional);
for (NamedExpression named in arguments.named) {
expressions.add(named.value);
}
for (Expression argument in expressions.reversed) {
expression = new Let(
new VariableDeclaration.forValue(argument, isFinal: true),
expression);
}
return expression;
}
@override
bool isIdentical(Member member) => member == coreTypes.identicalProcedure;
@override
Expression buildMethodInvocation(
Expression receiver, Name name, Arguments arguments, int offset,
{bool isConstantExpression: false,
bool isNullAware: false,
bool isImplicitCall: false}) {
if (constantExpressionRequired && !isConstantExpression) {
return deprecated_buildCompileTimeError(
"Not a constant expression.", offset);
}
if (isNullAware) {
VariableDeclaration variable = new VariableDeclaration.forValue(receiver);
return new ShadowNullAwareMethodInvocation(
variable,
new ConditionalExpression(
buildIsNull(new VariableGet(variable), offset),
new NullLiteral(),
new MethodInvocation(new VariableGet(variable), name, arguments)
..fileOffset = offset,
null)
..fileOffset = offset)
..fileOffset = offset;
} else {
return new ShadowMethodInvocation(receiver, name, arguments,
isImplicitCall: isImplicitCall)
..fileOffset = offset;
}
}
@override
void addCompileTimeError(Message message, int charOffset) {
library.addCompileTimeError(message, charOffset, uri);
}
@override
void debugEvent(String name) {
// printEvent('BodyBuilder: $name');
}
@override
StaticGet makeStaticGet(Member readTarget, Token token) {
return new ShadowStaticGet(readTarget)..fileOffset = offsetForToken(token);
}
}
class Identifier {
final Token token;
String get name => token.lexeme;
Identifier(this.token);
Expression get initializer => null;
String toString() => "identifier($name)";
}
class Operator {
final String name;
final int charOffset;
Operator(this.name, this.charOffset);
String toString() => "operator($name)";
}
class InitializedIdentifier extends Identifier {
final Expression initializer;
InitializedIdentifier(Token token, this.initializer) : super(token);
String toString() => "initialized-identifier($name, $initializer)";
}
class Label {
String name;
Label(this.name);
String toString() => "label($name)";
}
abstract class ContextAccessor extends FastaAccessor {
final BuilderHelper helper;
final FastaAccessor accessor;
final Token token;
ContextAccessor(this.helper, this.token, this.accessor);
String get plainNameForRead {
return unsupported("plainNameForRead", token.charOffset, helper.uri);
}
Expression doInvocation(int charOffset, Arguments arguments) {
return unhandled("${runtimeType}", "doInvocation", charOffset, uri);
}
Expression buildSimpleRead();
Expression buildForEffect();
Expression buildAssignment(Expression value, {bool voidContext: false}) {
return makeInvalidWrite(value);
}
Expression buildNullAwareAssignment(
Expression value, DartType type, int offset,
{bool voidContext: false}) {
return makeInvalidWrite(value);
}
Expression buildCompoundAssignment(Name binaryOperator, Expression value,
{int offset: TreeNode.noOffset,
bool voidContext: false,
Procedure interfaceTarget,
bool isPreIncDec: false}) {
return makeInvalidWrite(value);
}
Expression buildPrefixIncrement(Name binaryOperator,
{int offset: TreeNode.noOffset,
bool voidContext: false,
Procedure interfaceTarget}) {
return makeInvalidWrite(null);
}
Expression buildPostfixIncrement(Name binaryOperator,
{int offset: TreeNode.noOffset,
bool voidContext: false,
Procedure interfaceTarget}) {
return makeInvalidWrite(null);
}
makeInvalidRead() {
return unsupported("makeInvalidRead", token.charOffset, helper.uri);
}
Expression makeInvalidWrite(Expression value) {
return helper.deprecated_buildCompileTimeError(
"Can't be used as left-hand side of assignment.",
offsetForToken(token));
}
}
class DelayedAssignment extends ContextAccessor {
final Expression value;
final String assignmentOperator;
DelayedAssignment(BuilderHelper helper, Token token, FastaAccessor accessor,
this.value, this.assignmentOperator)
: super(helper, token, accessor);
Expression buildSimpleRead() {
return handleAssignment(false);
}
Expression buildForEffect() {
return handleAssignment(true);
}
Expression handleAssignment(bool voidContext) {
if (helper.constantExpressionRequired) {
return helper.deprecated_buildCompileTimeError(
"Not a constant expression.", offsetForToken(token));
}
if (identical("=", assignmentOperator)) {
return accessor.buildAssignment(value, voidContext: voidContext);
} else if (identical("+=", assignmentOperator)) {
return accessor.buildCompoundAssignment(plusName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical("-=", assignmentOperator)) {
return accessor.buildCompoundAssignment(minusName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical("*=", assignmentOperator)) {
return accessor.buildCompoundAssignment(multiplyName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical("%=", assignmentOperator)) {
return accessor.buildCompoundAssignment(percentName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical("&=", assignmentOperator)) {
return accessor.buildCompoundAssignment(ampersandName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical("/=", assignmentOperator)) {
return accessor.buildCompoundAssignment(divisionName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical("<<=", assignmentOperator)) {
return accessor.buildCompoundAssignment(leftShiftName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical(">>=", assignmentOperator)) {
return accessor.buildCompoundAssignment(rightShiftName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical("??=", assignmentOperator)) {
return accessor.buildNullAwareAssignment(
value, const DynamicType(), offsetForToken(token),
voidContext: voidContext);
} else if (identical("^=", assignmentOperator)) {
return accessor.buildCompoundAssignment(caretName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical("|=", assignmentOperator)) {
return accessor.buildCompoundAssignment(barName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else if (identical("~/=", assignmentOperator)) {
return accessor.buildCompoundAssignment(mustacheName, value,
offset: offsetForToken(token), voidContext: voidContext);
} else {
return unhandled(
assignmentOperator, "handleAssignment", token.charOffset, helper.uri);
}
}
@override
Initializer buildFieldInitializer(Map<String, int> initializedFields) {
if (!identical("=", assignmentOperator) ||
!accessor.isThisPropertyAccessor) {
return accessor.buildFieldInitializer(initializedFields);
}
return helper.buildFieldInitializer(
false, accessor.plainNameForRead, offsetForToken(token), value);
}
}
class DelayedPostfixIncrement extends ContextAccessor {
final Name binaryOperator;
final Procedure interfaceTarget;
DelayedPostfixIncrement(BuilderHelper helper, Token token,
FastaAccessor accessor, this.binaryOperator, this.interfaceTarget)
: super(helper, token, accessor);
Expression buildSimpleRead() {
return accessor.buildPostfixIncrement(binaryOperator,
offset: offsetForToken(token),
voidContext: false,
interfaceTarget: interfaceTarget);
}
Expression buildForEffect() {
return accessor.buildPostfixIncrement(binaryOperator,
offset: offsetForToken(token),
voidContext: true,
interfaceTarget: interfaceTarget);
}
}
class JumpTarget extends Builder {
final List<Statement> users = <Statement>[];
final JumpTargetKind kind;
final int functionNestingLevel;
JumpTarget(this.kind, this.functionNestingLevel, MemberBuilder member,
int charOffset)
: super(member, charOffset, member.fileUri);
bool get isBreakTarget => kind == JumpTargetKind.Break;
bool get isContinueTarget => kind == JumpTargetKind.Continue;
bool get isGotoTarget => kind == JumpTargetKind.Goto;
bool get hasUsers => users.isNotEmpty;
void addBreak(BreakStatement statement) {
assert(isBreakTarget);
users.add(statement);
}
void addContinue(BreakStatement statement) {
assert(isContinueTarget);
users.add(statement);
}
void addGoto(ContinueSwitchStatement statement) {
assert(isGotoTarget);
users.add(statement);
}
void resolveBreaks(LabeledStatement target) {
assert(isBreakTarget);
for (BreakStatement user in users) {
user.target = target;
}
users.clear();
}
void resolveContinues(LabeledStatement target) {
assert(isContinueTarget);
for (BreakStatement user in users) {
user.target = target;
}
users.clear();
}
void resolveGotos(SwitchCase target) {
assert(isGotoTarget);
for (ContinueSwitchStatement user in users) {
user.target = target;
}
users.clear();
}
@override
String get fullNameForErrors => "<jump-target>";
}
class LabelTarget extends Builder implements JumpTarget {
final JumpTarget breakTarget;
final JumpTarget continueTarget;
final int functionNestingLevel;
LabelTarget(MemberBuilder member, this.functionNestingLevel, int charOffset)
: breakTarget = new JumpTarget(
JumpTargetKind.Break, functionNestingLevel, member, charOffset),
continueTarget = new JumpTarget(
JumpTargetKind.Continue, functionNestingLevel, member, charOffset),
super(member, charOffset, member.fileUri);
bool get hasUsers => breakTarget.hasUsers || continueTarget.hasUsers;
List<Statement> get users => unsupported("users", charOffset, fileUri);
JumpTargetKind get kind => unsupported("kind", charOffset, fileUri);
bool get isBreakTarget => true;
bool get isContinueTarget => true;
bool get isGotoTarget => false;
void addBreak(BreakStatement statement) {
breakTarget.addBreak(statement);
}
void addContinue(BreakStatement statement) {
continueTarget.addContinue(statement);
}
void addGoto(ContinueSwitchStatement statement) {
unsupported("addGoto", charOffset, fileUri);
}
void resolveBreaks(LabeledStatement target) {
breakTarget.resolveBreaks(target);
}
void resolveContinues(LabeledStatement target) {
continueTarget.resolveContinues(target);
}
void resolveGotos(SwitchCase target) {
unsupported("resolveGotos", charOffset, fileUri);
}
@override
String get fullNameForErrors => "<label-target>";
}
class OptionalFormals {
final FormalParameterKind kind;
final List<VariableDeclaration> formals;
OptionalFormals(this.kind, this.formals);
}
class FormalParameters {
final List<VariableDeclaration> required;
final OptionalFormals optional;
final int charOffset;
FormalParameters(this.required, this.optional, this.charOffset);
FunctionNode addToFunction(FunctionNode function) {
function.requiredParameterCount = required.length;
function.positionalParameters.addAll(required);
if (optional != null) {
if (isOptionalPositionalFormalParameterKind(optional.kind)) {
function.positionalParameters.addAll(optional.formals);
} else {
function.namedParameters.addAll(optional.formals);
setParents(function.namedParameters, function);
}
}
setParents(function.positionalParameters, function);
return function;
}
FunctionType toFunctionType(DartType returnType,
[List<TypeParameter> typeParameters]) {
returnType ??= const DynamicType();
typeParameters ??= const <TypeParameter>[];
int requiredParameterCount = required.length;
List<DartType> positionalParameters = <DartType>[];
List<NamedType> namedParameters = const <NamedType>[];
for (VariableDeclaration parameter in required) {
positionalParameters.add(parameter.type);
}
if (optional != null) {
if (isOptionalPositionalFormalParameterKind(optional.kind)) {
for (VariableDeclaration parameter in optional.formals) {
positionalParameters.add(parameter.type);
}
} else {
namedParameters = <NamedType>[];
for (VariableDeclaration parameter in optional.formals) {
namedParameters.add(new NamedType(parameter.name, parameter.type));
}
namedParameters.sort();
}
}
return new FunctionType(positionalParameters, returnType,
namedParameters: namedParameters,
requiredParameterCount: requiredParameterCount,
typeParameters: typeParameters);
}
Scope computeFormalParameterScope(
Scope parent, Builder builder, BuilderHelper helper) {
if (required.length == 0 && optional == null) return parent;
Map<String, Builder> local = <String, Builder>{};
for (VariableDeclaration parameter in required) {
if (local[parameter.name] != null) {
helper.deprecated_addCompileTimeError(
parameter.fileOffset, "Duplicated name.");
}
local[parameter.name] =
new KernelVariableBuilder(parameter, builder, builder.fileUri);
}
if (optional != null) {
for (VariableDeclaration parameter in optional.formals) {
if (local[parameter.name] != null) {
helper.deprecated_addCompileTimeError(
parameter.fileOffset, "Duplicated name.");
}
local[parameter.name] =
new KernelVariableBuilder(parameter, builder, builder.fileUri);
}
}
return new Scope(local, null, parent, "formals", isModifiable: false);
}
}
/// Returns a block like this:
///
/// {
/// statement;
/// body;
/// }
///
/// If [body] is a [Block], it's returned with [statement] prepended to it.
Block combineStatements(Statement statement, Statement body) {
if (body is Block) {
body.statements.insert(0, statement);
statement.parent = body;
return body;
} else {
return new Block(<Statement>[statement, body]);
}
}
String debugName(String className, String name, [String prefix]) {
String result = name.isEmpty ? className : "$className.$name";
return prefix == null ? result : "$prefix.result";
}
String getNodeName(Object node) {
if (node is Identifier) {
return node.name;
} else if (node is Builder) {
return node.fullNameForErrors;
} else if (node is ThisAccessor) {
return node.isSuper ? "super" : "this";
} else if (node is FastaAccessor) {
return node.plainNameForRead;
} else {
return unhandled("${node.runtimeType}", "getNodeName", -1, null);
}
}
AsyncMarker asyncMarkerFromTokens(Token asyncToken, Token starToken) {
if (asyncToken == null || identical(asyncToken.stringValue, "sync")) {
if (starToken == null) {
return AsyncMarker.Sync;
} else {
assert(identical(starToken.stringValue, "*"));
return AsyncMarker.SyncStar;
}
} else if (identical(asyncToken.stringValue, "async")) {
if (starToken == null) {
return AsyncMarker.Async;
} else {
assert(identical(starToken.stringValue, "*"));
return AsyncMarker.AsyncStar;
}
} else {
return unhandled(asyncToken.lexeme, "asyncMarkerFromTokens",
asyncToken.charOffset, null);
}
}