[Nice-commit] Nice/src/nice/tools/doc document.nice,1.2,1.3 htmlwriter.nice,1.11,1.12
Brought to you by:
bonniot
From: Francis B. <fb...@us...> - 2004-07-31 08:10:14
|
Update of /cvsroot/nice/Nice/src/nice/tools/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13402/src/nice/tools/doc Modified Files: document.nice htmlwriter.nice Log Message: Removed deprecated syntax. That is, myMethod(t@Type) changed to myMethod(Type t) Index: htmlwriter.nice =================================================================== RCS file: /cvsroot/nice/Nice/src/nice/tools/doc/htmlwriter.nice,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** htmlwriter.nice 31 Jul 2004 07:59:35 -0000 1.11 --- htmlwriter.nice 31 Jul 2004 08:10:05 -0000 1.12 *************** *** 44,48 **** } ! write(c...@Cl...ass, packageName) { // Here we handle classes --- 44,48 ---- } ! write(ClassDefinition.Class c, packageName) { // Here we handle classes *************** *** 127,131 **** } ! write(gv@GlobalVarDeclaration, packageName) { //Handle global variables --- 127,131 ---- } ! write(GlobalVarDeclaration gv, packageName) { //Handle global variables *************** *** 158,162 **** } ! write(m@MethodDeclaration, packageName) { //Handle methods --- 158,162 ---- } ! write(MethodDeclaration m, packageName) { //Handle methods *************** *** 190,194 **** } ! write(m@DefaultMethodImplementation, packageName) { this.write(m.getDeclaration(), packageName); } --- 190,194 ---- } ! write(DefaultMethodImplementation m, packageName) { this.write(m.getDeclaration(), packageName); } Index: document.nice =================================================================== RCS file: /cvsroot/nice/Nice/src/nice/tools/doc/document.nice,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** document.nice 25 Apr 2004 16:21:31 -0000 1.2 --- document.nice 31 Jul 2004 08:10:05 -0000 1.3 *************** *** 37,41 **** } ! document(c...@Cl...ass) { // Here we handle classes --- 37,41 ---- } ! document(ClassDefinition.Class c) { // Here we handle classes *************** *** 53,57 **** } ! document(m@MethodDeclaration) { println("Method " + m.getName); --- 53,57 ---- } ! document(MethodDeclaration m) { println("Method " + m.getName); *************** *** 59,63 **** } ! document(m@MethodImplementation) { // Method implementations can probably be ignored, as they do not --- 59,63 ---- } ! document(MethodImplementation m) { // Method implementations can probably be ignored, as they do not *************** *** 65,69 **** } ! document(m@DefaultMethodImplementation) { // However, for a default implementation, we want to handle the corresponding --- 65,69 ---- } ! document(DefaultMethodImplementation m) { // However, for a default implementation, we want to handle the corresponding |