From: <net...@us...> - 2002-12-28 10:45:59
|
Update of /cvsroot/cpptool/rfta/include/rfta/parser In directory sc8-pr-cvs1:/tmp/cvs-serv26256/include/rfta/parser Modified Files: ASTNodes.h Log Message: -- new nodetypes and properties for extended expression Index: ASTNodes.h =================================================================== RCS file: /cvsroot/cpptool/rfta/include/rfta/parser/ASTNodes.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ASTNodes.h 20 Dec 2002 19:38:03 -0000 1.10 --- ASTNodes.h 28 Dec 2002 10:45:57 -0000 1.11 *************** *** 104,107 **** --- 104,111 ---- static const ASTNodeType localScopeIdentifier; + // expression node types: + static const ASTNodeType assignmentExpression; + static const ASTNodeType expressionList; + }; *************** *** 160,163 **** --- 164,170 ---- static const ASTNodeProperty conditionProperty; static const ASTNodeProperty nextStepProperty; + + // expression type property: + static const ASTNodeProperty expressionTypeProperty; }; |