disj builds a DisjunctionNode.
(terms ...ConditionNode)
| 47 | |
| 48 | // disj builds a DisjunctionNode. |
| 49 | func disj(terms ...ConditionNode) *DisjunctionNode { |
| 50 | return &DisjunctionNode{Terms: terms, Multiline: false} |
| 51 | } |
| 52 | |
| 53 | // assertRender asserts that optimising node produces a result that renders to |
| 54 | // the expected string. |
no outgoing calls
no test coverage detected