blob: d1ffc333984083d1802b3ab91d374438b48d8738 [file] [log] [blame]
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
library fasta.kernel_formal_parameter_builder;
import 'package:front_end/src/fasta/kernel/kernel_shadow_ast.dart'
show KernelVariableDeclaration;
import 'kernel_builder.dart'
show
FormalParameterBuilder,
KernelLibraryBuilder,
KernelTypeBuilder,
LibraryBuilder,
MetadataBuilder;
class KernelFormalParameterBuilder
extends FormalParameterBuilder<KernelTypeBuilder> {
KernelVariableDeclaration declaration;
final int charOffset;
KernelFormalParameterBuilder(
List<MetadataBuilder> metadata,
int modifiers,
KernelTypeBuilder type,
String name,
bool hasThis,
KernelLibraryBuilder compilationUnit,
this.charOffset)
: super(metadata, modifiers, type, name, hasThis, compilationUnit,
charOffset);
KernelVariableDeclaration get target => declaration;
KernelVariableDeclaration build(LibraryBuilder library) {
return declaration ??= new KernelVariableDeclaration(name, 0,
type: type?.build(library), isFinal: isFinal, isConst: isConst)
..fileOffset = charOffset;
}
}