Skip to content
Snippets Groups Projects
Select Git revision
  • 2bcaa6653b11698f8c5f86d6bcdd71ea55a5abe4
  • master default
  • labcomm2006
  • typedefs
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.4
  • v2006.0
  • v2014.3
  • v2014.2
  • v2014.1
  • v2014.0
  • v2013.0
16 results

PrettyPrint.jrag

Blame
  • Forked from Anders Blomdell / LabComm
    Source project has a limited visibility.
    PrettyPrint.java 311 B
    /* 
     * Copyright (C) 2006  Anders Nilsson <anders.nilsson@cs.lth.se>
     *
     * This file is part of OntologyCompiler.
     */
    
    
    import AST.Start;
    
    public class PrettyPrint extends Parser {
    	public static void main(String args[]) {
    		Start ast = parse(args);
    
    		// Dump the AST
    		ast.prettyPrint("  ", System.out);
    	}
    }