Example #1
0
 public override void CaseATabblock(ATabblock node)
 {
     InATabblock(node);
     if(node.GetIndentClose() != null)
     {
     node.GetIndentClose().Apply(this);
     }
     if(node.GetB() != null)
     {
     node.GetB().Apply(this);
     }
     if(node.GetTabblockinside() != null)
     {
     node.GetTabblockinside().Apply(this);
     }
     if(node.GetIndentOpen() != null)
     {
     node.GetIndentOpen().Apply(this);
     }
     if(node.GetA() != null)
     {
     node.GetA().Apply(this);
     }
     OutATabblock(node);
 }