void addNext(BrokerQueryCommand next)

Source

void addNext(BrokerQueryCommand next) {
  super.addNext(next);
  List rows = [];
  _dict.forEach((String path, _ListingNode listing) {
    if (listing._selfMatch) {
      rows.add([listing.node, '+']);
    }
  });
  next.updateFromBase(rows);
}