Lines Matching refs:T_EOL
79 %token T_EOL
140 | stmt_list T_WORD error T_EOL { zconf_error("unknown statement \"%s\"", $2); }
141 | stmt_list option_name error T_EOL
145 | stmt_list error T_EOL { zconf_error("invalid statement"); }
153 T_EOL
162 T_WORD error T_EOL { zconf_error("unknown option \"%s\"", $1); }
163 | error T_EOL { zconf_error("invalid option"); }
169 config_entry_start: T_CONFIG nonconst_symbol T_EOL
181 menuconfig_entry_start: T_MENUCONFIG nonconst_symbol T_EOL
204 | config_option_list T_EOL
207 config_option: T_TYPE prompt_stmt_opt T_EOL
215 config_option: T_PROMPT prompt if_expr T_EOL
221 config_option: T_DEFAULT expr if_expr T_EOL
231 config_option: T_SELECT nonconst_symbol if_expr T_EOL
237 config_option: T_IMPLY nonconst_symbol if_expr T_EOL
243 config_option: T_RANGE symbol symbol if_expr T_EOL
249 symbol_option: T_OPTION symbol_option_list T_EOL
273 choice: T_CHOICE word_opt T_EOL
304 | choice_option_list T_EOL
308 choice_option: T_PROMPT prompt if_expr T_EOL
314 choice_option: T_TYPE prompt_stmt_opt T_EOL
325 choice_option: T_OPTIONAL T_EOL
331 choice_option: T_DEFAULT nonconst_symbol if_expr T_EOL
376 menu: T_MENU prompt T_EOL
406 source_stmt: T_SOURCE prompt T_EOL
415 comment: T_COMMENT prompt T_EOL
427 help_start: T_HELP T_EOL
454 | depends_list T_EOL
458 depends: T_DEPENDS T_ON expr T_EOL
469 | visibility_list T_EOL
490 end: T_ENDMENU T_EOL { $$ = $1; }
491 | T_ENDCHOICE T_EOL { $$ = $1; }
492 | T_ENDIF T_EOL { $$ = $1; }
496 T_EOL
497 | nl T_EOL