(exprs ...Expr)
| 642 | } |
| 643 | |
| 644 | func (hv heightVisitor) maxHeight(exprs ...Expr) int { |
| 645 | max := 0 |
| 646 | for _, e := range exprs { |
| 647 | h := hv[e.ID()] |
| 648 | if h > max { |
| 649 | max = h |
| 650 | } |
| 651 | } |
| 652 | return max |
| 653 | } |
| 654 | |
| 655 | func (hv heightVisitor) maxEntryHeight(entries ...EntryExpr) int { |
| 656 | max := 0 |
no test coverage detected