visitSimpleIdentifier method
Implementation
@override
void visitSimpleIdentifier(SimpleIdentifier node) {
if (_currentSymbolId != null && !node.isQualified) {
final targetId = _resolveElementSymbolId(node.staticElement);
if (targetId != null && targetId != _currentSymbolId) {
graph.addDependency(_currentSymbolId!, targetId);
}
}
super.visitSimpleIdentifier(node);
}