Example #1
0
 public override int GetIndentSize()
 {
     return(TestTranslation.GetIndentSize() +
            IfTrueTranslation.GetIndentSize() +
            IfFalseTranslation.GetIndentSize());
 }
Example #2
0
 private int GetSingleLineTernaryIndentSize()
 {
     return(TestTranslation.GetLineCount() +
            IfTrueTranslation.GetIndentSize() +
            IfFalseTranslation.GetIndentSize());
 }