blob: 23c3836b3edf01fb0ac8dc721b28272269853d28 [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/element.dart';
import 'package:analyzer/src/summary2/scope.dart';
/// Indirection between a name and the corresponding [Element].
///
/// References are organized in a prefix tree.
/// Each reference knows its parent, children, and the [Element].
///
/// Library:
/// URI of library
///
/// Class:
/// Reference of the enclosing library
/// "@class"
/// Name of the class
///
/// Method:
/// Reference of the enclosing class
/// "@method"
/// Name of the method
///
/// There is only one reference object per [Element].
class Reference {
/// The parent of this reference, or `null` if the root.
final Reference? parent;
/// The simple name of the reference in its [parent].
final String name;
/// The corresponding [Element], or `null` if a named container.
Element? element;
/// Temporary index used during serialization and linking.
int? index;
Map<String, Reference>? _children;
/// If this reference is an import prefix, the scope of this prefix.
Scope? prefixScope;
Reference.root() : this._(null, '');
Reference._(this.parent, this.name);
Iterable<Reference> get children {
if (_children != null) {
return _children!.values;
}
return const [];
}
bool get isLibrary => parent != null && parent!.isRoot;
bool get isPrefix => parent != null && parent!.name == '@prefix';
bool get isRoot => parent == null;
bool get isSetter => parent != null && parent!.name == '@setter';
/// Return the child with the given name, or `null` if does not exist.
Reference? operator [](String name) {
return _children != null ? _children![name] : null;
}
/// Return the child with the given name, create if does not exist yet.
Reference getChild(String name) {
var map = _children ??= <String, Reference>{};
return map[name] ??= Reference._(this, name);
}
void removeChild(String name) {
_children!.remove(name);
}
@override
String toString() => parent == null ? 'root' : '$parent::$name';
}