mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-28 01:11:15 -03:00
Factor execution aspects from parser_t to parse_execution_context_t .
Still searching for best way to use new parser for execution.
This commit is contained in:
@@ -302,13 +302,13 @@ RESOLVE(block_header)
|
||||
|
||||
PRODUCTIONS(for_header) =
|
||||
{
|
||||
{KEYWORD(parse_keyword_for), parse_token_type_string, KEYWORD(parse_keyword_in), symbol_arguments_or_redirections_list}
|
||||
{KEYWORD(parse_keyword_for), parse_token_type_string, KEYWORD(parse_keyword_in), symbol_argument_list}
|
||||
};
|
||||
RESOLVE_ONLY(for_header)
|
||||
|
||||
PRODUCTIONS(while_header) =
|
||||
{
|
||||
{KEYWORD(parse_keyword_while), symbol_statement}
|
||||
{KEYWORD(parse_keyword_while), symbol_job}
|
||||
};
|
||||
RESOLVE_ONLY(while_header)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user