Example #1
0
        public override Statement CloneStatementOnly()
        {
            BreakSwitchCaseStatement result = new BreakSwitchCaseStatement();

            CopyParentAndLabel(result);
            return(result);
        }
Example #2
0
 public virtual void VisitBreakSwitchCaseStatement(BreakSwitchCaseStatement node)
 {
 }
Example #3
0
 public ICodeNode VisitBreakSwitchCaseStatement(BreakSwitchCaseStatement node)
 {
     return(node);
 }
 public override Statement CloneStatementOnly()
 {
     BreakSwitchCaseStatement result = new BreakSwitchCaseStatement();
     CopyParentAndLabel(result);
     return result;
 }