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