public override void VisitGotoCaseStatement(IGotoCaseStatement gotoCaseStatement)
 {
     Value = new Statement()
     {
         GotoCaseStatement = new GotoCaseStatementFactory(gotoCaseStatement).Value
     };
 }
 public override void VisitGotoCaseStatement(IGotoCaseStatement gotoCaseStatement)
 {
     Steps.Add(new WriteGotoKeyword());
     Steps.Add(new WriteWhitespace());
     Steps.Add(new WriteCaseKeyword());
     Steps.Add(new WriteWhitespace());
     Steps.Add(new WriteRawValue(gotoCaseStatement.CaseName));
 }
 public virtual void VisitGotoCaseStatement(IGotoCaseStatement gotoCaseStatement)
 {
     Visit(gotoCaseStatement);
 }