Combines the usages for two alternative branches. @param other usage count to be combined @return number of usages for the disjunction of both branches
(final VarUsage other)
| 22 | * @return number of usages for the disjunction of both branches |
| 23 | */ |
| 24 | public VarUsage max(final VarUsage other) { |
| 25 | return compareTo(other) > 0 ? this : other; |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * Combines the usages for two expressions that are both executed. |