1
0
mirror of https://github.com/casey/just synced 2024-07-08 12:05:57 +00:00
just/GRAMMAR.md

99 lines
2.2 KiB
Markdown
Raw Normal View History

2016-10-31 02:15:35 +00:00
justfile grammar
2016-10-31 02:16:33 +00:00
================
2016-10-31 02:15:35 +00:00
2016-10-31 02:40:11 +00:00
Justfiles are processed by a mildly context-sensitive tokenizer
and a recursive descent parser. The grammar is LL(k), for an
unknown but hopefully reasonable value of k.
2016-10-31 02:15:35 +00:00
tokens
2016-10-31 02:16:33 +00:00
------
2016-10-31 02:15:35 +00:00
```
2017-11-30 16:44:06 +00:00
BACKTICK = `[^`\n\r]*`
COMMENT = #([^!].*)?$
DEDENT = emitted when indentation decreases
EOF = emitted at the end of the file
INDENT = emitted when indentation increases
LINE = emitted before a recipe line
NAME = [a-zA-Z_][a-zA-Z0-9_-]*
NEWLINE = \n|\r\n
RAW_STRING = '[^'\r\n]*'
STRING = "[^"]*" # also processes \n \r \t \" \\ escapes
TEXT = recipe text, only matches in a recipe body
```
grammar syntax
--------------
```
| alternation
() grouping
_? option (0 or 1 times)
_* repetition (0 or more times)
_+ repetition (1 or more times)
2016-10-31 02:15:35 +00:00
```
grammar
2016-10-31 02:16:33 +00:00
-------
2016-10-31 02:15:35 +00:00
```
justfile : item* EOF
item : recipe
2019-04-11 19:57:19 +00:00
| alias
2016-10-31 02:15:35 +00:00
| assignment
| export
| setting
| eol
2016-10-31 02:15:35 +00:00
eol : NEWLINE
| COMMENT NEWLINE
alias : 'alias' NAME ':=' NAME
2016-10-31 02:15:35 +00:00
assignment : NAME ':=' expression eol
2019-04-11 19:57:19 +00:00
2016-10-31 02:15:35 +00:00
export : 'export' assignment
setting : 'set' 'export'
| 'set' 'shell' ':=' '[' string (',' string)* ','? ']'
expression : 'if' condition '{' expression '}' else '{' expression '}'
| value '+' expression
2017-11-30 16:44:06 +00:00
| value
condition : expression '==' expression
| expression '!=' expression
value : NAME '(' sequence? ')'
| STRING
2016-10-31 02:15:35 +00:00
| RAW_STRING
| BACKTICK
| NAME
| '(' expression ')'
string : STRING
| RAW_STRING
sequence : expression ',' sequence
| expression ','?
2016-10-31 02:15:35 +00:00
recipe : '@'? NAME parameter* variadic? ':' dependency* body?
2016-10-31 02:15:35 +00:00
parameter : NAME
| NAME '=' value
2016-10-31 02:15:35 +00:00
variadic : '*' parameter
| '+' parameter
dependency : NAME
| '(' NAME expression* ')
2016-10-31 02:15:35 +00:00
body : INDENT line+ DEDENT
line : LINE (TEXT | interpolation)+ NEWLINE
| NEWLINE
2016-10-31 02:15:35 +00:00
interpolation : '{{' expression '}}'
```