Combines the usages for two expressions that are both executed. @param other usage count to be combined @return number of usages of both expressions combined
(final VarUsage other)
| 31 | * @return number of usages of both expressions combined |
| 32 | */ |
| 33 | public VarUsage plus(final VarUsage other) { |
| 34 | return this == NEVER ? other : other == NEVER ? this : MORE_THAN_ONCE; |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Number of usages if the code is executed {@code count} times. |