Exemplo n.º 1
0
 public FuncDef(
     DeclSpecs specifiers,
     Declarator declarator,
     IEnumerable <Declaration> declarations,
     CompoundStmt statement
     )
 {
     this.specifiers   = specifiers;
     this.declarator   = declarator;
     this.declarations = declarations;
     this.body         = statement;
 }
Exemplo n.º 2
0
 public Loop(CompoundStmt body)
 {
     this.body = body;
 }