From 3a67582df81e7e528894bc2a20976c860da4c915 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Fri, 28 Jan 2005 17:13:03 -0500 Subject: STYLE: Add some diff helping comments --- Source/cmDependsFortranParser.y | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Source/cmDependsFortranParser.y') diff --git a/Source/cmDependsFortranParser.y b/Source/cmDependsFortranParser.y index 99b513cca0..190a33afcb 100644 --- a/Source/cmDependsFortranParser.y +++ b/Source/cmDependsFortranParser.y @@ -46,6 +46,7 @@ Modify cmDependsFortranParser.c: #define cmDependsFortran_yyerror(x) \ cmDependsFortranError(yyscanner, x) +/*-------------------------------------------------------------------------*/ #include "cmDependsFortranLexer.h" /* Interface to lexer object. */ #include "cmDependsFortranParser.h" /* Interface to parser object. */ #include "cmDependsFortranParserTokens.h" /* Need YYSTYPE for YY_DECL. */ @@ -72,6 +73,8 @@ static void cmDependsFortranError(yyscan_t yyscanner, const char* message); char* string; } +/*-------------------------------------------------------------------------*/ +/* Tokens */ %token USE F_INCLUDE MODULE EOSTMT %token CPP_INCLUDE F90PPR_INCLUDE COCO_INCLUDE %token F90PPR_DEFINE CPP_DEFINE F90PPR_UNDEF CPP_UNDEF @@ -80,6 +83,8 @@ static void cmDependsFortranError(yyscan_t yyscanner, const char* message); %token UNTERMINATED_STRING %token CPP_TOENDL STRING WORD +/*-------------------------------------------------------------------------*/ +/* grammar */ %% code: /* empty */ | code stmt ; @@ -170,6 +175,7 @@ misc_code: ; %% +/* End of grammar */ /*--------------------------------------------------------------------------*/ void cmDependsFortranError(yyscan_t yyscanner, const char* message) -- cgit v1.2.1