2016-10-30 19:15:35 -07:00
|
|
|
justfile grammar
|
2016-10-30 19:16:33 -07:00
|
|
|
================
|
2016-10-30 19:15:35 -07:00
|
|
|
|
2016-10-30 19:40:11 -07:00
|
|
|
Justfiles are processed by a mildly context-sensitive tokenizer
|
2016-10-30 19:17:09 -07:00
|
|
|
and a recursive descent parser. The grammar is mostly LL(1),
|
|
|
|
although an extra token of lookahead is used to distinguish between
|
2016-11-18 07:03:34 -08:00
|
|
|
export assignments and recipes with parameters.
|
2016-10-30 19:15:35 -07:00
|
|
|
|
|
|
|
tokens
|
2016-10-30 19:16:33 -07:00
|
|
|
------
|
2016-10-30 19:15:35 -07:00
|
|
|
|
|
|
|
```
|
|
|
|
BACKTICK = `[^`\n\r]*`
|
|
|
|
COLON = :
|
|
|
|
COMMENT = #([^!].*)?$
|
2016-11-12 23:31:19 -08:00
|
|
|
NEWLINE = \n|\r\n
|
2016-10-30 19:15:35 -07:00
|
|
|
EQUALS = =
|
|
|
|
INTERPOLATION_START = {{
|
|
|
|
INTERPOLATION_END = }}
|
|
|
|
NAME = [a-zA-Z_-][a-zA-Z0-9_-]*
|
|
|
|
PLUS = +
|
|
|
|
RAW_STRING = '[^'\r\n]*'
|
|
|
|
STRING = "[^"]*" # also processes \n \r \t \" \\ escapes
|
|
|
|
INDENT = emitted when indentation increases
|
|
|
|
DEDENT = emitted when indentation decreases
|
|
|
|
LINE = emitted before a recipe line
|
|
|
|
TEXT = recipe text, only matches in a recipe body
|
|
|
|
```
|
|
|
|
|
|
|
|
grammar
|
2016-10-30 19:16:33 -07:00
|
|
|
-------
|
2016-10-30 19:15:35 -07:00
|
|
|
|
|
|
|
```
|
|
|
|
justfile : item* EOF
|
|
|
|
|
|
|
|
item : recipe
|
|
|
|
| assignment
|
|
|
|
| export
|
2016-11-12 23:31:19 -08:00
|
|
|
| eol
|
2016-10-30 19:15:35 -07:00
|
|
|
|
2016-11-12 23:31:19 -08:00
|
|
|
eol : NEWLINE
|
|
|
|
| COMMENT NEWLINE
|
|
|
|
|
|
|
|
assignment : NAME '=' expression eol
|
2016-10-30 19:15:35 -07:00
|
|
|
|
|
|
|
export : 'export' assignment
|
|
|
|
|
|
|
|
expression : STRING
|
|
|
|
| RAW_STRING
|
|
|
|
| NAME
|
2016-11-11 23:11:10 -08:00
|
|
|
| BACKTICK
|
2016-10-30 19:15:35 -07:00
|
|
|
| expression '+' expression
|
|
|
|
|
2016-11-18 07:03:34 -08:00
|
|
|
recipe : '@'? NAME parameter* ('+' parameter)? ':' dependencies? body?
|
2016-10-30 19:15:35 -07:00
|
|
|
|
2016-11-18 07:03:34 -08:00
|
|
|
parameter : NAME
|
2016-11-12 09:15:13 -08:00
|
|
|
| NAME '=' STRING
|
|
|
|
| NAME '=' RAW_STRING
|
2016-10-30 19:15:35 -07:00
|
|
|
|
|
|
|
dependencies : NAME+
|
|
|
|
|
|
|
|
body : INDENT line+ DEDENT
|
|
|
|
|
2016-11-16 22:18:55 -08:00
|
|
|
line : LINE (TEXT | interpolation)+ NEWLINE
|
|
|
|
| NEWLINE
|
2016-10-30 19:15:35 -07:00
|
|
|
|
|
|
|
interpolation : '{{' expression '}}'
|
|
|
|
```
|