mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-05 08:11:15 -03:00
More work on simulating execution of parse trees. Pipes are totally screwed up.
This commit is contained in:
@@ -136,9 +136,9 @@ class parse_node_t
|
||||
statement_list = <empty> |
|
||||
statement statement_list
|
||||
|
||||
# A statement is a normal job, or an if / while / and etc.
|
||||
# A statement is a normal job, or an if / while / and etc, or just a nothing (i.e. newline)
|
||||
|
||||
statement = boolean_statement | block_statement | decorated_statement
|
||||
statement = boolean_statement | block_statement | decorated_statement | <TOK_END>
|
||||
|
||||
# A block is a conditional, loop, or begin/end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user