| // 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 'dart:core' hide MapEntry; |
| |
| import '../constant_context.dart' show ConstantContext; |
| |
| import '../fasta_codes.dart' as fasta; |
| |
| import '../fasta_codes.dart' show LocatedMessage, Message, noLength, Template; |
| |
| import '../messages.dart' as messages show getLocationFromUri; |
| |
| import '../modifier.dart' show Modifier, constMask, finalMask; |
| |
| import '../parser.dart' |
| show |
| Assert, |
| FormalParameterKind, |
| IdentifierContext, |
| MemberKind, |
| closeBraceTokenFor, |
| lengthForToken, |
| lengthOfSpan, |
| offsetForToken, |
| optional; |
| |
| import '../parser/class_member_parser.dart' show ClassMemberParser; |
| |
| 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/outline_builder.dart' show OutlineBuilder; |
| |
| 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 'constness.dart' show Constness; |
| |
| import 'fangorn.dart' show Fangorn; |
| |
| import 'forest.dart' show Forest; |
| |
| import 'frontend_accessors.dart' show buildIsNull; |
| |
| import 'redirecting_factory_body.dart' |
| show |
| RedirectingFactoryBody, |
| RedirectionTarget, |
| getRedirectingFactoryBody, |
| getRedirectionTarget; |
| |
| import '../names.dart'; |
| |
| import 'fasta_accessors.dart'; |
| |
| import 'kernel_api.dart'; |
| |
| import 'kernel_ast_api.dart'; |
| |
| import 'kernel_builder.dart'; |
| |
| final Forest _forest = new Fangorn(); |
| |
| // TODO(ahe): Remove this and ensure all nodes have a location. |
| const noLocation = null; |
| |
| class BodyBuilder<Arguments> extends ScopeListener<JumpTarget> |
| implements BuilderHelper<Arguments> { |
| @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; |
| |
| ConstantContext constantContext = ConstantContext.none; |
| |
| 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); |
| |
| @override |
| Forest<Expression, Statement, Token, Arguments> get forest => _forest; |
| |
| 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 SuperInitializer) { |
| return buildCompileTimeError( |
| fasta.messageSuperAsExpression, node.fileOffset, noLength); |
| } else if (node is ProblemBuilder) { |
| return buildProblemExpression(node, -1, noLength); |
| } 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.length, 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(constantContext); |
| constantContext = ConstantContext.inferred; |
| } |
| |
| @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); |
| } |
| |
| ConstantContext savedConstantContext = pop(); |
| if (expression is! StaticAccessor) { |
| push(wrapInCompileTimeError( |
| toValue(expression), fasta.messageExpressionNotMetadata)); |
| } else { |
| push(toValue(expression)); |
| } |
| constantContext = savedConstantContext; |
| } |
| } |
| |
| @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( |
| this, |
| field.hasTypeInferredFromInitializer ? null : field.builtType, |
| initializer); |
| } |
| } |
| pop(); // Type. |
| pop(); // Modifiers. |
| List annotations = pop(); |
| if (annotations != null) { |
| _typeInferrer.inferMetadata(this, annotations); |
| Field field = fields.first.target; |
| // The first (and often only field) will not get a clone. |
| annotations.forEach((annotation) => field.addAnnotation(annotation)); |
| 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 |
| as dynamic, // TODO(ahe): Remove this cast when buildSuperInitializer is moved to [Forest]. |
| token.charOffset); |
| } else { |
| Expression value = toValue(node); |
| if (node is! Throw) { |
| value = |
| wrapInCompileTimeError(value, fasta.messageExpectedAnInitializer); |
| } |
| initializer = buildInvalidInitializer(node, token.charOffset); |
| } |
| _typeInferrer.inferInitializer(this, 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.procedure.function.returnType; |
| } else { |
| assert(member is KernelConstructorBuilder); |
| return const DynamicType(); |
| } |
| } |
| |
| @override |
| void finishFunction(List annotations, FormalParameters formals, |
| AsyncMarker asyncModifier, Statement body) { |
| debugEvent("finishFunction"); |
| typePromoter.finished(); |
| |
| KernelFunctionBuilder builder = member; |
| 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 ?? forest.literalNull( |
| // TODO(ahe): Should store: realParameter.fileOffset |
| // https://github.com/dart-lang/sdk/issues/32289 |
| null); |
| realParameter.initializer = initializer..parent = realParameter; |
| _typeInferrer.inferParameterInitializer( |
| this, initializer, realParameter.type); |
| } |
| } |
| |
| _typeInferrer.inferFunctionBody( |
| this, _computeReturnTypeContext(member), asyncModifier, body); |
| if (builder.kind == ProcedureKind.Setter) { |
| bool oneParameter = formals != null && |
| formals.required.length == 1 && |
| (formals.optional == null || formals.optional.formals.length == 0); |
| if (!oneParameter) { |
| int charOffset = formals?.charOffset ?? |
| body?.fileOffset ?? |
| builder.target.fileOffset; |
| if (body == null) { |
| body = new EmptyStatement()..fileOffset = charOffset; |
| } |
| if (builder.formals != null) { |
| // Illegal parameters were removed by the function builder. |
| // Add them as local variable to put them in scope of the body. |
| List<Statement> statements = <Statement>[]; |
| for (KernelFormalParameterBuilder parameter in builder.formals) { |
| statements.add(parameter.target); |
| } |
| statements.add(body); |
| body = new Block(statements)..fileOffset = charOffset; |
| } |
| body = wrapInCompileTimeErrorStatement( |
| body, fasta.messageSetterWithWrongNumberOfFormals); |
| } |
| } |
| if (!builder.isExternal) { |
| builder.body = body; |
| } else { |
| if (body != null) { |
| builder.body = wrapInCompileTimeErrorStatement( |
| body, fasta.messageExternalMethodWithBody); |
| } |
| } |
| Member target = builder.target; |
| _typeInferrer.inferMetadata(this, annotations); |
| for (Expression annotation in annotations ?? const []) { |
| target.addAnnotation(annotation); |
| } |
| 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(this, 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 = forest.argumentsEmpty(noLocation); |
| if (superTarget == null || |
| checkArguments( |
| new FunctionTypeAccessor.fromNode(superTarget.function), |
| arguments, |
| CalleeDesignation.Constructor, |
| builder.charOffset, const <TypeParameter>[]) != |
| null) { |
| 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; |
| var prevNamedExpression = seenNames[expression.name]; |
| prevNamedExpression.value = deprecated_buildCompileTimeError( |
| "Duplicated named argument '${expression.name}'.", |
| expression.fileOffset) |
| ..parent = prevNamedExpression; |
| } else { |
| seenNames[expression.name] = expression; |
| } |
| } |
| if (hasProblem) { |
| named = new List<NamedExpression>.from(seenNames.values); |
| } |
| } |
| push(forest.arguments(positional, beginToken, named: named)); |
| } else { |
| push(forest.arguments(arguments, beginToken)); |
| } |
| } |
| |
| @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(forest.argumentsTypeArguments(arguments).isEmpty); |
| forest.argumentsSetTypeArguments(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(constantContext); |
| constantContext = ConstantContext.inferred; |
| } |
| |
| @override |
| void endCaseExpression(Token colon) { |
| debugEvent("endCaseExpression"); |
| Expression expression = popForValue(); |
| constantContext = 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 = buildMethodInvocation(a, new Name(operator), |
| forest.arguments(<Expression>[b], noLocation), token.charOffset, |
| // This *could* be a constant expression, we can't know without |
| // evaluating [a] and [b]. |
| isConstantExpression: !isSuper, |
| isSuper: isSuper); |
| return negate ? new ShadowNot(result) : result; |
| } |
| } |
| |
| void doLogicalExpression(Token token) { |
| Expression argument = popForValue(); |
| Expression receiver = pop(); |
| var logicalExpression = |
| new ShadowLogicalExpression(receiver, token.stringValue, argument) |
| ..fileOffset = offsetForToken(token); |
| typePromoter.exitLogicalExpression(argument, logicalExpression); |
| push(logicalExpression); |
| } |
| |
| /// 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)) |
| ..fileOffset = offsetForToken(token)); |
| } |
| |
| /// Handle `a?.b(...)`. |
| void doIfNotNull(Token token) { |
| var send = pop(); |
| if (send is IncompleteSend) { |
| push(send.withReceiver(pop(), token.charOffset, isNullAware: true)); |
| } else { |
| pop(); |
| token = token.next; |
| Message message = fasta.templateExpectedIdentifier.withArguments(token); |
| push(buildCompileTimeError( |
| message, offsetForToken(token), lengthForToken(token))); |
| } |
| } |
| |
| void doDotOrCascadeExpression(Token token) { |
| var send = pop(); |
| if (send is IncompleteSend) { |
| Object receiver = optional(".", token) ? pop() : popForValue(); |
| push(send.withReceiver(receiver, token.charOffset)); |
| } else { |
| pop(); |
| token = token.next; |
| Message message = fasta.templateExpectedIdentifier.withArguments(token); |
| push(buildCompileTimeError( |
| message, offsetForToken(token), lengthForToken(token))); |
| } |
| } |
| |
| bool areArgumentsCompatible(FunctionNode function, Arguments arguments) { |
| // TODO(ahe): Implement this. |
| return true; |
| } |
| |
| @override |
| Expression throwNoSuchMethodError( |
| Expression receiver, String name, Arguments arguments, int charOffset, |
| {Member candidate, |
| bool isSuper: false, |
| bool isGetter: false, |
| bool isSetter: false, |
| bool isStatic: false, |
| LocatedMessage argMessage}) { |
| Message message; |
| Name kernelName = new Name(name, library.library); |
| LocatedMessage context; |
| if (candidate != null) { |
| Uri uri = candidate.location.file; |
| int offset = candidate.fileOffset; |
| Message message; |
| int length = noLength; |
| if (offset == -1 && candidate is Constructor) { |
| offset = candidate.enclosingClass.fileOffset; |
| message = fasta.templateCandidateFoundIsDefaultConstructor |
| .withArguments(candidate.enclosingClass.name); |
| } else { |
| length = name.length; |
| message = fasta.messageCandidateFound; |
| } |
| context = message.withLocation(uri, offset, length); |
| } |
| |
| if (isGetter) { |
| message = warnUnresolvedGet(kernelName, charOffset, |
| isSuper: isSuper, |
| reportWarning: constantContext == ConstantContext.none, |
| context: context); |
| } else if (isSetter) { |
| message = warnUnresolvedSet(kernelName, charOffset, |
| isSuper: isSuper, |
| reportWarning: constantContext == ConstantContext.none, |
| context: context); |
| } else { |
| if (argMessage != null) { |
| message = argMessage.messageObject; |
| charOffset = argMessage.charOffset; |
| addProblemErrorIfConst(message, charOffset, argMessage.length, |
| context: context); |
| } else { |
| message = warnUnresolvedMethod(kernelName, charOffset, |
| isSuper: isSuper, |
| reportWarning: constantContext == ConstantContext.none, |
| context: context); |
| } |
| } |
| if (constantContext != ConstantContext.none) { |
| // TODO(ahe): Use [error] below instead of building a compile-time error, |
| // should be: |
| // return library.loader.throwCompileConstantError(error, charOffset); |
| return buildCompileTimeError(message, charOffset, noLength, |
| context: context); |
| } else { |
| Expression error = library.loader.instantiateNoSuchMethodError( |
| receiver, name, forest.castArguments(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, LocatedMessage context}) { |
| Message message = isSuper |
| ? fasta.templateSuperclassHasNoGetter.withArguments(name.name) |
| : fasta.templateGetterNotFound.withArguments(name.name); |
| if (reportWarning) { |
| addProblemErrorIfConst(message, charOffset, name.name.length, |
| context: context); |
| } |
| return message; |
| } |
| |
| @override |
| Message warnUnresolvedSet(Name name, int charOffset, |
| {bool isSuper: false, bool reportWarning: true, LocatedMessage context}) { |
| Message message = isSuper |
| ? fasta.templateSuperclassHasNoSetter.withArguments(name.name) |
| : fasta.templateSetterNotFound.withArguments(name.name); |
| if (reportWarning) { |
| addProblemErrorIfConst(message, charOffset, name.name.length, |
| context: context); |
| } |
| return message; |
| } |
| |
| @override |
| Message warnUnresolvedMethod(Name name, int charOffset, |
| {bool isSuper: false, bool reportWarning: true, LocatedMessage context}) { |
| String plainName = name.name; |
| int dotIndex = plainName.lastIndexOf("."); |
| if (dotIndex != -1) { |
| plainName = plainName.substring(dotIndex + 1); |
| } |
| // TODO(ahe): This is rather brittle. We would probably be better off with |
| // more precise location information in this case. |
| int length = plainName.length; |
| if (plainName.startsWith("[")) { |
| length = 1; |
| } |
| Message message = isSuper |
| ? fasta.templateSuperclassHasNoMethod.withArguments(name.name) |
| : fasta.templateMethodNotFound.withArguments(name.name); |
| if (reportWarning) { |
| addProblemErrorIfConst(message, charOffset, length, context: context); |
| } |
| return message; |
| } |
| |
| @override |
| void warnTypeArgumentsMismatch(String name, int expected, int charOffset) { |
| addProblemErrorIfConst( |
| fasta.templateTypeArgumentMismatch.withArguments(name, '${expected}'), |
| charOffset, |
| name.length); |
| } |
| |
| @override |
| Member lookupInstanceMember(Name name, |
| {bool isSetter: false, bool isSuper: false}) { |
| Class cls = classBuilder.cls; |
| if (classBuilder.isPatch) { |
| if (isSuper) { |
| // The super class is only correctly found through the origin class. |
| cls = classBuilder.origin.cls; |
| } else { |
| Member member = |
| hierarchy.getInterfaceMember(cls, name, setter: isSetter); |
| if (member?.parent == cls) { |
| // Only if the member is found in the patch can we use it. |
| return member; |
| } else { |
| // Otherwise, we need to keep searching in the origin class. |
| cls = classBuilder.origin.cls; |
| } |
| } |
| } |
| |
| if (isSuper) { |
| cls = cls.superclass; |
| if (cls == null) return null; |
| } |
| Member target = isSuper |
| ? hierarchy.getDispatchTarget(cls, name, setter: isSetter) |
| : hierarchy.getInterfaceMember(cls, name, setter: isSetter); |
| if (isSuper && |
| target == null && |
| library.loader.target.backendTarget.enableSuperMixins && |
| classBuilder.isAbstract) { |
| target = hierarchy.getInterfaceMember(cls, name, setter: isSetter); |
| } |
| return target; |
| } |
| |
| @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; |
| } |
| } |
| |
| /// Performs a similar lookup to [lookupConstructor], but using a slower |
| /// implementation. |
| Constructor lookupConstructorWithPatches(Name name, bool isSuper) { |
| ClassBuilder builder = classBuilder.origin; |
| |
| ClassBuilder getSuperclass(ClassBuilder builder) { |
| // This way of computing the superclass is slower than using the kernel |
| // objects directly. |
| var supertype = builder.supertype; |
| if (supertype is NamedTypeBuilder) { |
| var builder = supertype.builder; |
| if (builder is ClassBuilder) return builder; |
| } |
| return null; |
| } |
| |
| if (isSuper) { |
| builder = getSuperclass(builder)?.origin; |
| while (builder?.isMixinApplication ?? false) { |
| builder = getSuperclass(builder)?.origin; |
| } |
| } |
| if (builder != null) { |
| Class target = builder.target; |
| for (Constructor constructor in target.constructors) { |
| if (constructor.name == name) return constructor; |
| } |
| } |
| return null; |
| } |
| |
| return lookupConstructorWithPatches(name, isSuper); |
| } |
| |
| @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) { |
| constantContext = |
| member.isConst ? ConstantContext.inferred : ConstantContext.none; |
| } |
| } else if (constantContext != ConstantContext.none && |
| !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}) { |
| int charOffset = offsetForToken(token); |
| Builder builder = scope.lookup(name, charOffset, uri); |
| if (builder == null && prefix == null && (classBuilder?.isPatch ?? false)) { |
| // The scope of a patched method includes the origin class. |
| builder = |
| classBuilder.origin.findStaticBuilder(name, charOffset, uri, library); |
| } |
| 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 (!isQualified && isInstanceContext) { |
| assert(builder == null); |
| if (constantContext != ConstantContext.none || member.isField) { |
| return new UnresolvedAccessor(this, n, token); |
| } |
| return new ThisPropertyAccessor(this, token, n, lookupInstanceMember(n), |
| lookupInstanceMember(n, isSetter: true)); |
| } else if (ignoreMainInGetMainClosure && |
| name == "main" && |
| member?.name == "_getMainClosure") { |
| return storeOffset(forest.literalNull(null), charOffset); |
| } else { |
| return new UnresolvedAccessor(this, n, token); |
| } |
| } else if (builder.isTypeDeclaration) { |
| if (constantContext != ConstantContext.none && |
| builder.isTypeVariable && |
| !member.isConstructor) { |
| deprecated_addCompileTimeError( |
| charOffset, "Not a constant expression."); |
| } |
| TypeDeclarationAccessor accessor = new TypeDeclarationAccessor( |
| this, prefix, charOffset, builder, name, token); |
| return (prefix?.deferred == true) |
| ? new DeferredAccessor(this, token, prefix, accessor) |
| : accessor; |
| } else if (builder.isLocal) { |
| if (constantContext != ConstantContext.none && |
| !builder.isConst && |
| !member.isConstructor) { |
| deprecated_addCompileTimeError( |
| charOffset, "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 = charOffset, |
| name, |
| token); |
| } else { |
| return new VariableAccessor(this, token, builder.target); |
| } |
| } else if (builder.isInstanceMember) { |
| if (constantContext != ConstantContext.none && |
| !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( |
| charOffset, "Not a constant expression."); |
| } |
| Name n = new Name(name, library.library); |
| Member getter; |
| Member setter; |
| if (builder is AccessErrorBuilder) { |
| setter = builder.parent.target; |
| getter = lookupInstanceMember(n); |
| } else { |
| getter = builder.target; |
| setter = lookupInstanceMember(n, isSetter: true); |
| } |
| return new ThisPropertyAccessor(this, token, n, getter, setter); |
| } else if (builder.isRegularMethod) { |
| assert(builder.isStatic || builder.isTopLevel); |
| StaticAccessor accessor = |
| new StaticAccessor(this, token, builder.target, null); |
| return (prefix?.deferred == true) |
| ? new DeferredAccessor(this, token, prefix, accessor) |
| : accessor; |
| } else if (builder is PrefixBuilder) { |
| if (constantContext != ConstantContext.none && builder.deferred) { |
| deprecated_addCompileTimeError( |
| charOffset, |
| "'$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 is LoadLibraryBuilder) { |
| return new LoadLibraryAccessor(this, token, 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, charOffset, uri); |
| } else if (builder.isField && !builder.isFinal) { |
| setter = builder; |
| } |
| StaticAccessor accessor = |
| new StaticAccessor.fromBuilder(this, builder, token, setter); |
| if (constantContext != ConstantContext.none) { |
| Member readTarget = accessor.readTarget; |
| if (!(readTarget is Field && readTarget.isConst || |
| // Static tear-offs are also compile time constants. |
| readTarget is Procedure)) { |
| deprecated_addCompileTimeError( |
| charOffset, "Not a constant expression."); |
| } |
| } |
| return (prefix?.deferred == true) |
| ? new DeferredAccessor(this, token, prefix, accessor) |
| : 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(forest.literalString(value, 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); |
| if (value.isNotEmpty) { |
| expressions.add(forest.literalString(value, 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(forest.literalString(value, part)); |
| } |
| } else { |
| expressions.add(toValue(part)); |
| } |
| } |
| // Contains more than just \' or \". |
| if (last.lexeme.length > 1) { |
| String value = unescapeLastStringPart(last.lexeme, quote); |
| if (value.isNotEmpty) { |
| expressions.add(forest.literalString(value, last)); |
| } |
| } |
| push(new ShadowStringConcatenation(expressions) |
| ..fileOffset = offsetForToken(endToken)); |
| } |
| } |
| |
| @override |
| void handleNativeClause(Token nativeToken, bool hasName) { |
| debugEvent("NativeClause"); |
| if (hasName) { |
| forest.asLiteralString(pop()); |
| } |
| } |
| |
| @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(new LargeIntAccessor(this, token)); |
| } else { |
| push(forest.literalInt(value, 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 = pop(); |
| 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 == (constantContext == ConstantContext.inferred)); |
| 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 (constantContext != ConstantContext.none) { |
| // Creating a null value to prevent the Dart VM from crashing. |
| push(forest.literalNull(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, Token varFinalOrConst) { |
| debugEvent("beginVariablesDeclaration"); |
| DartType type = pop(); |
| int modifiers = Modifier.validateVarFinalOrConst(varFinalOrConst?.lexeme); |
| super.push(currentLocalVariableModifiers); |
| super.push(currentLocalVariableType ?? NullValue.Type); |
| currentLocalVariableType = type; |
| currentLocalVariableModifiers = modifiers; |
| super.push(constantContext); |
| constantContext = ((modifiers & constMask) != 0) |
| ? ConstantContext.inferred |
| : ConstantContext.none; |
| } |
| |
| @override |
| void endVariablesDeclaration(int count, Token endToken) { |
| debugEvent("VariablesDeclaration"); |
| List<VariableDeclaration> variables = popList(count); |
| constantContext = 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); |
| } |
| |
| void handleInvalidTopLevelBlock(Token token) { |
| // TODO(danrubel): Consider improved recovery by adding this block |
| // as part of a synthetic top level function. |
| pop(); // block |
| } |
| |
| @override |
| void handleAssignmentExpression(Token token) { |
| debugEvent("AssignmentExpression"); |
| Expression value = popForValue(); |
| var accessor = pop(); |
| if (accessor is! FastaAccessor) { |
| push(buildCompileTimeError(fasta.messageNotAnLvalue, |
| offsetForToken(token), lengthForToken(token))); |
| } 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); |
| } |
| } |
| |
| List<VariableDeclaration> buildVariableDeclarations(variableOrExpression) { |
| if (variableOrExpression is FastaAccessor) { |
| variableOrExpression = variableOrExpression.buildForEffect(); |
| } |
| if (variableOrExpression is VariableDeclaration) { |
| return <VariableDeclaration>[variableOrExpression]; |
| } else if (variableOrExpression is List) { |
| List<VariableDeclaration> variables = <VariableDeclaration>[]; |
| for (var v in variableOrExpression) { |
| variables.addAll(buildVariableDeclarations(v)); |
| } |
| return variables; |
| } else if (variableOrExpression == null) { |
| return <VariableDeclaration>[]; |
| } else if (variableOrExpression is Expression) { |
| VariableDeclaration variable = new ShadowVariableDeclaration.forEffect( |
| variableOrExpression, functionNestingLevel); |
| return <VariableDeclaration>[variable]; |
| } else if (variableOrExpression is ExpressionStatement) { |
| VariableDeclaration variable = new ShadowVariableDeclaration.forEffect( |
| variableOrExpression.expression, functionNestingLevel); |
| return <VariableDeclaration>[variable]; |
| } |
| return null; |
| } |
| |
| @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); |
| } |
| dynamic variableOrExpression = pop(); |
| List<VariableDeclaration> variables = |
| buildVariableDeclarations(variableOrExpression); |
| if (variables == null) { |
| 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 (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; |
| addProblem( |
| fasta.messageListLiteralTooManyTypeArguments, |
| offsetForToken(beginToken), |
| lengthOfSpan(beginToken, closeBraceTokenFor(beginToken))); |
| } else if (library.loader.target.strongMode) { |
| typeArgument = instantiateToBounds(typeArgument, coreTypes.objectClass); |
| } |
| } |
| push(forest.literalList( |
| typeArgument, |
| expressions, |
| constKeyword != null || constantContext == ConstantContext.inferred, |
| constKeyword ?? beginToken)); |
| } |
| |
| @override |
| void handleLiteralBool(Token token) { |
| debugEvent("LiteralBool"); |
| bool value = optional("true", token); |
| assert(value || optional("false", token)); |
| push(forest.literalBool(value, token)); |
| } |
| |
| @override |
| void handleLiteralDouble(Token token) { |
| debugEvent("LiteralDouble"); |
| push(forest.literalDouble(double.parse(token.lexeme), token)); |
| } |
| |
| @override |
| void handleLiteralNull(Token token) { |
| debugEvent("LiteralNull"); |
| push(forest.literalNull(token)); |
| } |
| |
| @override |
| void handleLiteralMap( |
| int count, Token beginToken, Token constKeyword, Token endToken) { |
| debugEvent("LiteralMap"); |
| List entries = forest.mapEntryList(count); |
| popList(count, entries); |
| List<DartType> typeArguments = pop(); |
| DartType keyType; |
| DartType valueType; |
| if (typeArguments != null) { |
| if (typeArguments.length != 2) { |
| keyType = null; |
| valueType = null; |
| addProblem( |
| fasta.messageListLiteralTypeArgumentMismatch, |
| offsetForToken(beginToken), |
| lengthOfSpan(beginToken, closeBraceTokenFor(beginToken))); |
| } else { |
| if (library.loader.target.strongMode) { |
| keyType = |
| instantiateToBounds(typeArguments[0], coreTypes.objectClass); |
| valueType = |
| instantiateToBounds(typeArguments[1], coreTypes.objectClass); |
| } else { |
| keyType = typeArguments[0]; |
| valueType = typeArguments[1]; |
| } |
| } |
| } |
| |
| push(forest.literalMap( |
| keyType, |
| valueType, |
| entries, |
| constKeyword != null || constantContext == ConstantContext.inferred, |
| constKeyword ?? beginToken)); |
| } |
| |
| @override |
| void endLiteralMapEntry(Token colon, Token endToken) { |
| debugEvent("LiteralMapEntry"); |
| Expression value = popForValue(); |
| Expression key = popForValue(); |
| push(forest.mapEntry(key, value, colon)); |
| } |
| |
| 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(forest.literalSymbol(value, 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 if (prefix is ErrorAccessor) { |
| push(prefix.buildErroneousTypeNotAPrefix(suffix)); |
| return; |
| } else { |
| String displayName = debugName(getNodeName(prefix), suffix.name); |
| addProblem(fasta.templateNotAType.withArguments(displayName), |
| offsetForToken(beginToken), lengthOfSpan(beginToken, suffix.token)); |
| push(const InvalidType()); |
| return; |
| } |
| } |
| if (name is FastaAccessor) { |
| push(name.buildTypeWithBuiltArguments(arguments)); |
| } else if (name is TypeBuilder) { |
| push(name.build(library)); |
| } else if (name is PrefixBuilder) { |
| addProblem(fasta.templateNotAType.withArguments(name.name), |
| offsetForToken(beginToken), lengthForToken(beginToken)); |
| push(const InvalidType()); |
| } else { |
| unhandled( |
| "${name.runtimeType}", "handleType", beginToken.charOffset, uri); |
| } |
| // TODO(ahe): Unused code fasta.messageNonInstanceTypeVariableUse. |
| } |
| |
| @override |
| void beginFunctionType(Token beginToken) { |
| debugEvent("beginFunctionType"); |
| } |
| |
| void enterFunctionTypeScope(List typeVariables) { |
| debugEvent("enterFunctionTypeScope"); |
| enterLocalScope(null, |
| scope.createNestedScope("function-type scope", isModifiable: true)); |
| 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 (constantContext != ConstantContext.none) { |
| 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 (constantContext != ConstantContext.none) { |
| push(deprecated_buildCompileTimeError( |
| "Not a constant expression.", operator.charOffset)); |
| } else { |
| push(isExpression); |
| } |
| } |
| |
| @override |
| void beginConditionalExpression(Token question) { |
| Expression condition = popForValue(); |
| typePromoter.enterThen(condition); |
| push(condition); |
| super.beginConditionalExpression(question); |
| } |
| |
| @override |
| void handleConditionalExpressionColon() { |
| Expression then = popForValue(); |
| typePromoter.enterElse(); |
| push(then); |
| super.handleConditionalExpressionColon(); |
| } |
| |
| @override |
| void endConditionalExpression(Token question, Token colon) { |
| debugEvent("ConditionalExpression"); |
| Expression elseExpression = popForValue(); |
| Expression thenExpression = pop(); |
| Expression condition = pop(); |
| typePromoter.exitConditional(); |
| push(new ShadowConditionalExpression( |
| condition, thenExpression, elseExpression) |
| ..fileOffset = question.offset); |
| } |
| |
| @override |
| void handleThrowExpression(Token throwToken, Token endToken) { |
| debugEvent("ThrowExpression"); |
| Expression expression = popForValue(); |
| if (constantContext != ConstantContext.none) { |
| push(deprecated_buildCompileTimeError( |
| "Not a constant expression.", throwToken.charOffset)); |
| } else { |
| push( |
| new ShadowThrow(expression)..fileOffset = offsetForToken(throwToken)); |
| } |
| } |
| |
| @override |
| void endFormalParameter(Token thisKeyword, Token periodAfterThis, |
| 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++; |
| } |
| |
| @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(constantContext); |
| constantContext = ConstantContext.none; |
| } |
| |
| @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); |
| constantContext = 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) |
| ..fileOffset = offsetForToken(onKeyword ?? catchKeyword)); |
| } |
| |
| @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, |
| lookupInstanceMember(indexGetName, isSuper: true), |
| lookupInstanceMember(indexSetName, isSuper: true))); |
| } 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 LargeIntAccessor) { |
| int value = |
| int.parse("-" + receiver.token.lexeme, onError: (_) => null); |
| if (value != null) { |
| push(forest.literalInt(value, token)); |
| return; |
| } |
| } |
| } |
| bool isSuper = false; |
| Expression receiverValue; |
| if (receiver is ThisAccessor && receiver.isSuper) { |
| isSuper = true; |
| receiverValue = new ShadowThisExpression() |
| ..fileOffset = offsetForToken(receiver.token); |
| } else { |
| receiverValue = toValue(receiver); |
| } |
| push(buildMethodInvocation(receiverValue, new Name(operator), |
| forest.argumentsEmpty(noLocation), token.charOffset, |
| // This *could* be a constant expression, we can't know without |
| // evaluating [receiver]. |
| isConstantExpression: !isSuper, |
| isSuper: isSuper)); |
| } |
| } |
| |
| 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, identifier.token, |
| isQualified: true, prefix: prefix); |
| identifier = null; |
| } else if (prefix is TypeDeclarationAccessor) { |
| type = prefix; |
| } else if (prefix is FastaAccessor) { |
| String name = suffix == null |
| ? "${prefix.plainNameForRead}.${identifier.name}" |
| : "${prefix.plainNameForRead}.${identifier.name}.$suffix"; |
| type = new UnresolvedAccessor( |
| this, new Name(name, library.library), prefix.token); |
| } else { |
| unhandled("${prefix.runtimeType}", "pushQualifiedReference", |
| start.charOffset, uri); |
| } |
| } |
| 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, |
| {Constness constness: Constness.implicit, |
| int charOffset: -1, |
| Member initialTarget, |
| List<DartType> targetTypeArguments}) { |
| bool isConst = constness == Constness.explicitConst; |
| initialTarget ??= target; |
| List<TypeParameter> typeParameters = target.function.typeParameters; |
| if (target is Constructor) { |
| assert(!target.enclosingClass.isAbstract); |
| typeParameters = target.enclosingClass.typeParameters; |
| } |
| CalleeDesignation calleeKind = target is Constructor |
| ? CalleeDesignation.Constructor |
| : CalleeDesignation.Method; |
| LocatedMessage argMessage = checkArguments( |
| new FunctionTypeAccessor.fromNode(target.function), |
| arguments, |
| calleeKind, |
| charOffset, |
| typeParameters); |
| if (argMessage != null) { |
| return throwNoSuchMethodError( |
| storeOffset(forest.literalNull(null), charOffset), |
| target.name.name, |
| arguments, |
| charOffset, |
| candidate: target, |
| argMessage: argMessage); |
| } |
| if (target is Constructor) { |
| isConst = |
| isConst || constantContext != ConstantContext.none && target.isConst; |
| if (constness == Constness.implicit && |
| target.isConst && |
| constantContext != ConstantContext.inferred) { |
| return buildCompileTimeError( |
| fasta.messageCantDetermineConstness, charOffset, noLength); |
| } else if (isConst && !target.isConst) { |
| return deprecated_buildCompileTimeError( |
| "Not a const constructor.", charOffset); |
| } |
| return new ShadowConstructorInvocation(target, targetTypeArguments, |
| initialTarget, forest.castArguments(arguments), |
| isConst: isConst) |
| ..fileOffset = charOffset; |
| } else { |
| Procedure procedure = target; |
| isConst = isConst || |
| constantContext != ConstantContext.none && procedure.isConst; |
| if (constness == Constness.implicit && |
| procedure.isConst && |
| constantContext != ConstantContext.inferred) { |
| return buildCompileTimeError( |
| fasta.messageCantDetermineConstness, charOffset, noLength); |
| } else if (isConst && !procedure.isConst) { |
| return deprecated_buildCompileTimeError( |
| "Not a const factory.", charOffset); |
| } else if (procedure.isFactory) { |
| return new ShadowFactoryConstructorInvocation(target, |
| targetTypeArguments, initialTarget, forest.castArguments(arguments), |
| isConst: isConst) |
| ..fileOffset = charOffset; |
| } else { |
| return new ShadowStaticInvocation( |
| target, forest.castArguments(arguments), |
| isConst: isConst) |
| ..fileOffset = charOffset; |
| } |
| } |
| } |
| |
| @override |
| LocatedMessage checkArguments(FunctionTypeAccessor function, |
| Arguments arguments, CalleeDesignation calleeKind, int offset, |
| [List<TypeParameter> typeParameters]) { |
| if (forest.argumentsPositional(arguments).length < |
| function.requiredParameterCount) { |
| Template<Message Function(int count, int count2)> template; |
| switch (calleeKind) { |
| case CalleeDesignation.Function: |
| template = fasta.templateTooFewArgumentsToFunction; |
| break; |
| case CalleeDesignation.Method: |
| template = fasta.templateTooFewArgumentsToMethod; |
| break; |
| case CalleeDesignation.Constructor: |
| template = fasta.templateTooFewArgumentsToConstructor; |
| break; |
| } |
| return template |
| .withArguments(function.requiredParameterCount, |
| forest.argumentsPositional(arguments).length) |
| .withLocation(uri, offset, noLength); |
| } |
| if (forest.argumentsPositional(arguments).length > |
| function.positionalParameterCount) { |
| Template<Message Function(int count, int count2)> template; |
| switch (calleeKind) { |
| case CalleeDesignation.Function: |
| template = fasta.templateTooManyArgumentsToFunction; |
| break; |
| case CalleeDesignation.Method: |
| template = fasta.templateTooManyArgumentsToMethod; |
| break; |
| case CalleeDesignation.Constructor: |
| template = fasta.templateTooManyArgumentsToConstructor; |
| break; |
| } |
| return template |
| .withArguments(function.positionalParameterCount, |
| forest.argumentsPositional(arguments).length) |
| .withLocation(uri, offset, noLength); |
| } |
| List named = forest.argumentsNamed(arguments); |
| if (named.isNotEmpty) { |
| Set<String> names = function.namedParameterNames; |
| for (NamedExpression argument in named) { |
| if (!names.remove(argument.name)) { |
| Template<Message Function(String name)> template; |
| switch (calleeKind) { |
| case CalleeDesignation.Function: |
| template = fasta.templateFunctionHasNoSuchNamedParameter; |
| break; |
| case CalleeDesignation.Method: |
| template = fasta.templateMethodHasNoSuchNamedParameter; |
| break; |
| case CalleeDesignation.Constructor: |
| template = fasta.templateConstructorHasNoSuchNamedParameter; |
| break; |
| } |
| return template |
| .withArguments(argument.name) |
| .withLocation(uri, argument.fileOffset, argument.name.length); |
| } |
| } |
| } |
| |
| List types = forest.argumentsTypeArguments(arguments); |
| if (typeParameters != null && typeParameters.length != types.length) { |
| // TODO(paulberry): Report error in this case as well, |
| // after https://github.com/dart-lang/sdk/issues/32130 is fixed. |
| types.clear(); |
| for (int i = 0; i < typeParameters.length; i++) { |
| types.add(const DynamicType()); |
| } |
| } |
| |
| return null; |
| } |
| |
| @override |
| void beginNewExpression(Token token) { |
| debugEvent("beginNewExpression"); |
| super.push(constantContext); |
| if (constantContext != ConstantContext.none) { |
| deprecated_addCompileTimeError( |
| token.charOffset, "Not a constant expression."); |
| } |
| constantContext = ConstantContext.none; |
| } |
| |
| @override |
| void beginConstExpression(Token token) { |
| debugEvent("beginConstExpression"); |
| super.push(constantContext); |
| constantContext = ConstantContext.inferred; |
| } |
| |
| @override |
| void beginConstLiteral(Token token) { |
| debugEvent("beginConstLiteral"); |
| super.push(constantContext); |
| constantContext = ConstantContext.inferred; |
| } |
| |
| @override |
| void endConstLiteral(Token token) { |
| debugEvent("endConstLiteral"); |
| var literal = pop(); |
| constantContext = pop(); |
| push(literal); |
| } |
| |
| @override |
| void endNewExpression(Token token) { |
| debugEvent("NewExpression"); |
| Token nameToken = token.next; |
| Arguments arguments = pop(); |
| String name = pop(); |
| List<DartType> typeArguments = pop(); |
| |
| var type = pop(); |
| PrefixBuilder deferredPrefix; |
| int checkOffset; |
| if (type is DeferredAccessor) { |
| DeferredAccessor accessor = type; |
| type = accessor.accessor; |
| deferredPrefix = accessor.builder; |
| checkOffset = accessor.token.charOffset; |
| } |
| |
| if (type is TypeDeclarationAccessor) { |
| TypeDeclarationAccessor accessor = type; |
| if (accessor.prefix != null) { |
| nameToken = nameToken.next.next; |
| } |
| type = accessor.declaration; |
| } |
| |
| ConstantContext savedConstantContext = pop(); |
| if (type is TypeDeclarationBuilder) { |
| Expression expression = buildConstructorInvocation( |
| type, |
| nameToken, |
| arguments, |
| name, |
| typeArguments, |
| token.charOffset, |
| optional("const", token) || optional("@", token) |
| ? Constness.explicitConst |
| : Constness.explicitNew); |
| push(deferredPrefix != null |
| ? wrapInDeferredCheck(expression, deferredPrefix, checkOffset) |
| : expression); |
| } else if (type is ErrorAccessor) { |
| push(type.buildError(arguments)); |
| } else { |
| push(throwNoSuchMethodError(forest.literalNull(token), |
| debugName(getNodeName(type), name), arguments, nameToken.charOffset)); |
| } |
| constantContext = savedConstantContext; |
| } |
| |
| @override |
| Expression buildConstructorInvocation( |
| TypeDeclarationBuilder type, |
| Token nameToken, |
| Arguments arguments, |
| String name, |
| List<DartType> typeArguments, |
| int charOffset, |
| Constness constness) { |
| if (arguments == null) { |
| return deprecated_buildCompileTimeError( |
| "No arguments.", nameToken.charOffset); |
| } |
| |
| if (typeArguments != null) { |
| assert(forest.argumentsTypeArguments(arguments).isEmpty); |
| forest.argumentsSetTypeArguments(arguments, typeArguments); |
| } |
| |
| String errorName; |
| if (type is ClassBuilder) { |
| if (type is EnumBuilder) { |
| return deprecated_buildCompileTimeError( |
| "An enum class can't be instantiated.", nameToken.charOffset); |
| } |
| Builder b = type.findConstructorOrFactory(name, charOffset, uri, library); |
| Member target; |
| Member initialTarget; |
| List<DartType> targetTypeArguments; |
| if (b == null) { |
| // Not found. Reported below. |
| } else if (b.isConstructor) { |
| initialTarget = b.target; |
| if (type.isAbstract) { |
| return new ShadowSyntheticExpression(evaluateArgumentsBefore( |
| arguments, |
| buildAbstractClassInstantiationError( |
| fasta.templateAbstractClassInstantiation |
| .withArguments(type.name), |
| type.name, |
| nameToken.charOffset))); |
| } else { |
| target = initialTarget; |
| } |
| } else if (b.isFactory) { |
| initialTarget = b.target; |
| RedirectionTarget redirectionTarget = getRedirectionTarget( |
| initialTarget, |
| strongMode: library.loader.target.strongMode); |
| target = redirectionTarget?.target; |
| targetTypeArguments = redirectionTarget?.typeArguments; |
| if (target == null) { |
| return deprecated_buildCompileTimeError( |
| "Cyclic definition of factory '${name}'.", nameToken.charOffset); |
| } |
| if (target is Constructor && target.enclosingClass.isAbstract) { |
| return new ShadowSyntheticExpression(evaluateArgumentsBefore( |
| arguments, |
| buildAbstractClassInstantiationError( |
| fasta.templateAbstractRedirectedClassInstantiation |
| .withArguments(target.enclosingClass.name), |
| target.enclosingClass.name, |
| nameToken.charOffset))); |
| } |
| 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)) { |
| return buildStaticInvocation(target, arguments, |
| constness: constness, |
| charOffset: nameToken.charOffset, |
| initialTarget: initialTarget, |
| targetTypeArguments: targetTypeArguments); |
| } else { |
| errorName ??= debugName(type.name, name); |
| } |
| } else { |
| errorName = debugName(getNodeName(type), name); |
| } |
| errorName ??= name; |
| return throwNoSuchMethodError( |
| storeOffset(forest.literalNull(null), charOffset), |
| errorName, |
| arguments, |
| nameToken.charOffset); |
| } |
| |
| @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"); |
| 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. |
| // TODO(askesc): Be more specific about the error code when we have |
| // errors represented as explicit invalid nodes. |
| assert(library.loader.handledErrors.isNotEmpty); |
| |
| // TODO(paulberry,ahe): ensure that when integrating with analyzer, type |
| // inference is still performed for the dropped declaration. |
| if ( |