Ejemplo n.º 1
0
 public virtual void Visit(LabeledStmt stmt) {}
Ejemplo n.º 2
0
 public override void Visit(LabeledStmt stmt) =>
     stmt.Stmt.Accept(this);
Ejemplo n.º 3
0
 public override void Visit(LabeledStmt stmt) {
     this._labels.Add(stmt.Label);
     stmt.Stmt.Accept(this);
 }
Ejemplo n.º 4
0
 public override void Visit(LabeledStmt stmt) =>
 stmt.Stmt.Accept(this);
Ejemplo n.º 5
0
 public override void Visit(LabeledStmt stmt)
 {
     this._labels.Add(stmt.Label);
     stmt.Stmt.Accept(this);
 }
Ejemplo n.º 6
0
 public virtual void Visit(LabeledStmt stmt)
 {
 }