More work on simulating execution of parse trees. Pipes are totally screwed up.

This commit is contained in:
ridiculousfish
2013-06-18 23:35:04 -07:00
parent bdd8ef5a52
commit b771e97ac6
3 changed files with 70 additions and 12 deletions

View File

@@ -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