dispatchDeleteNode method

bool dispatchDeleteNode(
  1. FluentDocument document,
  2. FNode node
)

Implementation

bool dispatchDeleteNode(FluentDocument document, FNode node) {
  for (final plugin in plugins) {
    if (plugin.onDeleteNode(document, node)) return true;
  }
  return false;
}