コード例 #1
0
ファイル: AstIf.cs プロジェクト: robin5/DemiTasse
 public AstIf(AstExp ae, AstStmt as1, AstStmt as2)
 {
     e = ae; s1 = as1; s2 = as2;
 }
コード例 #2
0
ファイル: AstWhile.cs プロジェクト: robin5/DemiTasse
 public AstWhile(AstExp ae, AstStmt _as)
 {
     e=ae; s=_as;
 }
コード例 #3
0
ファイル: AstStmtList.cs プロジェクト: robin5/DemiTasse
 public void Add(AstStmt n)
 {
     base.Add(n);
 }
コード例 #4
0
ファイル: Ast.cs プロジェクト: robin5/DemiTasse
 public static void Append(AstStmt s)
 {
     if (s == null)
         _astData.Append("(NullStmt) ");
     else
         s.GenerateAstData();
 }