Changeset 45
- Timestamp:
- 12/06/09 22:22:41 (15 years ago)
- Location:
- cpp/f8-to-f1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/f8-to-f1/conv_f8tof1_grammar.y
r38 r45 52 52 } 53 53 54 productions ::= production productions. 55 productions ::= . 54 productions ::= production productions_others. 55 productions_others ::= production productions_others. 56 productions_others ::= . 56 57 57 58 first_prod ::= prod_name(A) NEWLINE. { -
cpp/f8-to-f1/conv_f8tof1_scanner.l
r39 r45 38 38 } 39 39 40 [ \t ]+ { col += yyleng; } /* ignore but count white space */40 [ \t\r]+ { col += yyleng; } /* ignore but count white space */ 41 41 42 42 "=" { col += yyleng; yylval.strVal = yytext; return ASSIGN; }
Note: See TracChangeset
for help on using the changeset viewer.