(exprs ...Expr)
| 650 | } |
| 651 | |
| 652 | func (hv heightVisitor) maxHeight(exprs ...Expr) int { |
| 653 | max := 0 |
| 654 | for _, e := range exprs { |
| 655 | h := hv[e.ID()] |
| 656 | if h > max { |
| 657 | max = h |
| 658 | } |
| 659 | } |
| 660 | return max |
| 661 | } |
| 662 | |
| 663 | func (hv heightVisitor) maxEntryHeight(entries ...EntryExpr) int { |
| 664 | max := 0 |
no test coverage detected