Example #1
0
 public new static Stmt Match() => Check('}') ? Null : new Stmts(Stmt.Match(), Match());
Example #2
0
 private Stmts(Stmt s1, Stmt s2)
 {
     stmt1 = s1;
     stmt2 = s2;
 }