The R Project SVN R-packages

Rev

Rev 5741 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5741 Rev 6231
Line 86... Line 86...
86
{numeric}					{ return RPT_NUMERIC; }								/* single numeric value           */
86
{numeric}					{ return RPT_NUMERIC; }								/* single numeric value           */
87
{numeric}/{alpha}			{ return RPT_WORD; }								/* catch numeric followed by char */
87
{numeric}/{alpha}			{ return RPT_WORD; }								/* catch numeric followed by char */
88
 
88
 
89
{ops}						{ return RPT_OPERATOR; }							/* all operators                  */
89
{ops}						{ return RPT_OPERATOR; }							/* all operators                  */
90
{decl}						{ return RPT_DECLARATION; }							/* all declarations               */
90
{decl}						{ return RPT_DECLARATION; }							/* all declarations               */
91
{s}+						{ return RPT_WHITESPACE; }							/* ignore spaces                  */
91
{s}+						{  }												/* ignore spaces                  */
92
 
92
 
93
{word}+						{ return RPT_WORD; }								/* return any word                */
93
{word}+						{ return RPT_WORD; }								/* return any word                */
94
 
94
 
95
{nonword}					{ return RPT_OTHER; }								/* return anything else           */
95
{nonword}					{ return RPT_OTHER; }								/* return anything else           */
96
 
96