blob: ffa1d1417eef7d75317a59dba918664080f519b7 [file] [log] [blame]
// Copyright (c) 2019, 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.
import 'package:analyzer/dart/element/type.dart';
/// The builder for a [DartType] represented by a node.
abstract class TypeBuilder implements DartType {
/// Build the type, and set it for the corresponding node.
/// Does nothing if the type has been already built.
///
/// Return the built type.
DartType build();
noSuchMethod(Invocation invocation) {
return super.noSuchMethod(invocation);
}
}