blob: b2c03c34bb548aa5d0cd3cf0b4804181def98fd1 [file] [log] [blame]
// Copyright (c) 2017, 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.dynamic_type_builder;
import 'package:kernel/ast.dart' show DartType;
import 'builder.dart' show LibraryBuilder, BuiltinTypeBuilder;
class DynamicTypeBuilder extends BuiltinTypeBuilder {
DynamicTypeBuilder(
DartType type, LibraryBuilder compilationUnit, int charOffset)
: super("dynamic", type, compilationUnit, charOffset);
String get debugName => "DynamicTypeBuilder";
}