コード例 #1
0
ファイル: Ast.cs プロジェクト: robin5/DemiTasse
 public static void Append(string name, AstList l)
 {
     _astData.Append("(" + name + " ");
     if (l != null)
         l.GenerateAstData();
     _astData.Append(") ");
 }
コード例 #2
0
ファイル: TypeVisitorRM.cs プロジェクト: robin5/DemiTasse
        // ************************************************
        // * LISTS
        // ************************************************

        public void visit(AstList n)
        {
        }