[Nice-commit] Nice/src/nice/tools/doc main.nice,1.6,1.7
Brought to you by:
bonniot
From: Daniel B. <bo...@us...> - 2004-06-30 14:12:45
|
Update of /cvsroot/nice/Nice/src/nice/tools/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1421/src/nice/tools/doc Modified Files: main.nice Log Message: Defined a parser interface, and made the core independent of the implementation of the parser. This makes bootstrap and future modifications simpler. Index: main.nice =================================================================== RCS file: /cvsroot/nice/Nice/src/nice/tools/doc/main.nice,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** main.nice 25 Apr 2004 16:19:01 -0000 1.6 --- main.nice 30 Jun 2004 14:12:36 -0000 1.7 *************** *** 18,23 **** ConsoleOutput consOutput = new ConsoleOutput(); ! Compilation compilation = new Compilation(listener: consOutput); ! compilation.storeDocStrings = true; Program prg = new Program --- 18,23 ---- ConsoleOutput consOutput = new ConsoleOutput(); ! Compilation compilation = new Compilation ! (listener: consOutput, parser: new bossa.parser.JavaccParser(true)); Program prg = new Program *************** *** 77,79 **** generate(compilation, mainPackage, outdir); ! } \ No newline at end of file --- 77,79 ---- generate(compilation, mainPackage, outdir); ! } |