Skip to content

Commit

Permalink
Add subsequents to grammar (#2427)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Oct 10, 2024
1 parent 66dbaa6 commit 4661f8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion GRAMMAR.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ string : 'x'? STRING
sequence : expression ',' sequence
| expression ','?
recipe : attributes* '@'? NAME parameter* variadic? ':' dependency* eol body?
recipe : attributes* '@'? NAME parameter* variadic? ':' dependencies eol body?
attributes : '[' attribute* ']' eol
Expand All @@ -128,6 +128,8 @@ parameter : '$'? NAME
variadic : '*' parameter
| '+' parameter
dependencies : dependency* ('&&' dependency+)?
dependency : NAME
| '(' NAME expression* ')'
Expand Down

0 comments on commit 4661f8e

Please sign in to comment.