File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ blanks [ \t\n]+
2222" max_state" return (MAX_STATE);
2323" lvl_verbose" return (LVL_VERBOSE);
2424" mem_option" return (MEM_OPT);
25- " lex_context " return (LEX_CONTEXT);
25+ " context " return (LEX_CONTEXT);
2626" max_loop" return (MAX_LOOP);
2727[0 -9 ]+ {yylval.val = atoi (yytext); return (VALUE);}
2828%%
Original file line number Diff line number Diff line change @@ -47,11 +47,11 @@ content: params g
4747params: verb COMMA params
4848 | state COMMA params
4949 | mem_opt COMMA params
50- | lex_context COMMA params
50+ | context COMMA params
5151 | max_loop COMMA params
5252 | verb
5353 | mem_opt
54- | lex_context
54+ | context
5555 | state
5656 | max_loop
5757 |
@@ -60,7 +60,7 @@ state: MAX_STATE COLON VALUE {(*graph)->max_state_changes = $3;}
6060 ;
6161verb: LVL_VERBOSE COLON VALUE {(*graph)->lvl_verbose = $3 ;}
6262 ;
63- lex_context : LEX_CONTEXT COLON VALUE {(*graph)->context = $3 ;}
63+ context : LEX_CONTEXT COLON VALUE {(*graph)->context = $3 ;}
6464 ;
6565mem_opt: MEM_OPT COLON VALUE {(*graph)->mem_option = $3 ;}
6666 ;
You can’t perform that action at this time.
0 commit comments