Example #1
0
 internal override Node ReplaceRegisterWithLocal(
     System.Collections.Generic.IReadOnlyDictionary <RegisterNode, Local> map,
     System.Collections.Generic.List <Node> newTrees,
     Function f)
 {
     LeftOperand  = LeftOperand.ReplaceRegisterWithLocal(map, newTrees, f);
     RightOperand = RightOperand.ReplaceRegisterWithLocal(map, newTrees, f);
     return(base.ReplaceRegisterWithLocal(map, newTrees, f));
 }