blob: 9a931247f500cd6470dca3b8f3d3f2e1a4eeedca [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.name_iterator;
import 'builder.dart' show Declaration;
abstract class NameIterator implements Iterator<Declaration> {
String get name;
}