Ejemplo n.º 1
0
 private VisitResult VisitBreakStatement(ASTBreak node)
 {
     return(new VisitResult
     {
         ControlType = ControlType.Break
     });
 }
Ejemplo n.º 2
0
 public bool Visit(ASTBreak node)
 {
     throw new NotImplementedException();
 }
 private Symbol VisitBreakStatement(ASTBreak node)
 {
     return(null);
 }