Skip to content
Snippets Groups Projects
Select Git revision
4 results Searching

TestServer.java

Blame
  • Forked from Anders Blomdell / LabComm
    Source project has a limited visibility.
    DumpClasses.java 450 B
    // 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);
    	}
    }