// package programs; /* * Copyright (C) 2006 Anders Nilsson <anders.nilsson@cs.lth.se> * * This file is part of OntologyCompiler. */ import AST.Start; public class DumpClasses extends Parser { public static void main(String args[]) { Start ast = parse(args); // Dump the AST // ast.dumpTree(" ", System.out); // Should be generated to a file when sufficiently // implemented. AndersN 060210 ast.dumpClasses(System.out); } }