public override void PrettyPrintBody()
 {
     Initialization?.PrettyPrint(initText);
     Condition?.PrettyPrint(condText);
     Increment?.PrettyPrint(incrText);
     Body.PrettyPrint(bodyText);
 }
Example #2
0
 public override void PrettyPrintBody()
 {
     Left.PrettyPrint();
     if (Right != null)
     {
         Right.PrettyPrint();
     }
     else
     {
         Dump.WriteLine("<empty>");
     }
 }
 public override void PrettyPrintBody()
 {
     Expression.PrettyPrint();
 }
 public override void PrettyPrintBody()
 {
     ReturnValue?.PrettyPrint("Return Value\t");
 }
 public override void PrettyPrintBody()
 {
     Condition.PrettyPrint("Condition\t");
     ThenPart.PrettyPrint("ThenPart\t");
     ElsePart?.PrettyPrint("ElsePart\t");
 }
Example #6
0
 public override void PrettyPrintBody()
 {
     Pre.PrettyPrint("Test\t");
     Mid.PrettyPrint("True\t");
     Post.PrettyPrint("False\t");
 }
Example #7
0
 public override void PrettyPrintBody()
 {
     Arg.PrettyPrint();
 }