blob: b72fca45fd0d42e804bc05df325405e1da26e79f [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.function_type_alias_builder;
import 'builder.dart'
show
FormalParameterBuilder,
LibraryBuilder,
MetadataBuilder,
TypeBuilder,
TypeDeclarationBuilder,
TypeVariableBuilder;
abstract class FunctionTypeAliasBuilder<T extends TypeBuilder, R>
extends TypeDeclarationBuilder<T, R> {
final T returnType;
final List<TypeVariableBuilder> typeVariables;
final List<FormalParameterBuilder> formals;
FunctionTypeAliasBuilder(
List<MetadataBuilder> metadata,
this.returnType,
String name,
this.typeVariables,
this.formals,
LibraryBuilder parent,
int charOffset)
: super(metadata, null, name, parent, charOffset);
LibraryBuilder get parent => super.parent;
}