From: <bl...@us...> - 2003-05-03 17:45:16
|
Update of /cvsroot/cpptool/rfta/include/rfta/parser In directory sc8-pr-cvs1:/tmp/cvs-serv2327/include/rfta/parser Modified Files: ASTNodes.h Log Message: * added a link at the top of the generated page to jump to the ast Index: ASTNodes.h =================================================================== RCS file: /cvsroot/cpptool/rfta/include/rfta/parser/ASTNodes.h,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** ASTNodes.h 29 Apr 2003 10:29:16 -0000 1.19 --- ASTNodes.h 3 May 2003 17:45:13 -0000 1.20 *************** *** 57,60 **** --- 57,66 ---- static const ASTNodeType functionImplementation; + // body for an enum, e.g. "{ x = 3, ... }" + static const ASTNodeType enumBody; + + // const declaration in an enum body for an enum, e.g. "x = 3" + static const ASTNodeType enumConstant; + // declaration level: // ////////////////// |