All Implemented Interfaces:
Function<Itree,Itree>, UnaryOperator<Itree>, ItreeVisitor<Itree>

public class BranchInliner extends BaseOptimizer
Applies inlining of calls of branch in the form below.
 branch(
   { cond1 } { body1 }
   { cond2 } { body2 }
   ,,,
   { condn } { bodyn }
 )
 

This inlining must take place under the body of IndexFunItree.