exprToFilterNode
exprToFilterNode(
expr):FilterNode
Defined in: filtering/tree/filter-node.model.ts:92
Converts a filter Expr into a FilterNode tree.
_&&_ / _||_ calls become branch nodes with flattening of consecutive
same-conjunction nodes (so a && b && c yields one AND branch with three
leaf children rather than a nested binary tree).
Everything else becomes a leaf node.
Parameters
Section titled “Parameters”Expr