Ejemplo n.º 1
0
 public override void Visit(CompoundStmt stmt) =>
     stmt.stmts.ForEach(_ => _.Item2.Accept(this));
Ejemplo n.º 2
0
 public FuncDef(DeclnSpecs specs, Declr declr, CompoundStmt stmt)
 {
     this.Specs = specs;
     this.Declr = declr;
     this.Stmt  = stmt;
 }
Ejemplo n.º 3
0
 public virtual void Visit(CompoundStmt stmt) {}