Ejemplo n.º 1
0
 public override void VisitSwitchSection(SwitchSectionSyntax node)
 {
     if (entryPoint.IsMethodLevel() && node.IsParent <AnonymousFunctionExpressionSyntax>())
     {
         return;
     }
     IncreaseHeight();
     EmbeddednessConsideredToIncrease();
     base.VisitSwitchSection(node);
     currentNL--;
     EmbeddednessConsideredToDecrease();
 }