blob: 3135ad2e84fd456549b3ff881c2da42b2cd0c9e4 [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.invalid_type_builder;
import 'builder.dart' show Builder, TypeBuilder, TypeDeclarationBuilder;
abstract class InvalidTypeBuilder<T extends TypeBuilder, R>
extends TypeDeclarationBuilder<T, R> {
InvalidTypeBuilder(String name, Builder parent, int charOffset, [Uri fileUri])
: super(null, 0, name, parent, charOffset, fileUri);
}