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