Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions GRAMMAR.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ item : alias
eol : NEWLINE
| COMMENT NEWLINE

alias : 'alias' NAME ':=' NAME eol
alias : 'alias' NAME ':=' target eol

target : NAME ('::' NAME)*

assignment : NAME ':=' expression eol

Expand Down Expand Up @@ -138,8 +140,8 @@ variadic : '*' parameter

dependencies : dependency* ('&&' dependency+)?

dependency : NAME
| '(' NAME expression* ')'
dependency : target
| '(' target expression* ')'

body : INDENT line+ DEDENT

Expand Down
Loading