예제 #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)
        {
        }