Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/lex.ll

    r4439008 r8551b859  
    1010 * Created On       : Sat Sep 22 08:58:10 2001
    1111 * Last Modified By : Peter A. Buhr
    12  * Last Modified On : Wed Jun 20 09:08:28 2018
    13  * Update Count     : 682
     12 * Last Modified On : Thu Jun  7 08:27:40 2018
     13 * Update Count     : 679
    1414 */
    1515
     
    2525//**************************** Includes and Defines ****************************
    2626
    27 // trigger before each matching rule's action
    28 #define YY_USER_ACTION \
    29         yylloc.first_line = yylineno; \
    30         yylloc.first_column = column; \
    31         column += yyleng; \
    32         yylloc.last_column = column; \
    33         yylloc.last_line = yylineno; \
    34         yylloc.filename = yyfilename ? yyfilename : "";
    3527unsigned int column = 0;                                                                // position of the end of the last token parsed
     28#define YY_USER_ACTION yylloc.first_line = yylineno; yylloc.first_column = column; column += yyleng; yylloc.last_column = column; yylloc.last_line = yylineno; yylloc.filename = yyfilename ? yyfilename : "";                          // trigger before each matching rule's action
    3629
    3730#include <string>
     
    5649#define NUMERIC_RETURN(x)       rm_underscore(); RETURN_VAL( x ) // numeric constant
    5750#define KEYWORD_RETURN(x)       RETURN_CHAR( x )                        // keyword
    58 #define QKEYWORD_RETURN(x)      RETURN_VAL(x);                          // quasi-keyword
     51#define QKEYWORD_RETURN(x)      typedefTable.isKind( yytext ); RETURN_VAL(x); // quasi-keyword
    5952#define IDENTIFIER_RETURN()     RETURN_VAL( typedefTable.isKind( yytext ) )
    6053#define ATTRIBUTE_RETURN()      RETURN_VAL( ATTR_IDENTIFIER )
Note: See TracChangeset for help on using the changeset viewer.