示例#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
        // ************************************************
        // * LISTS
        // ************************************************

        public void visit(AstList n)
        {
        }