1
0
mirror of https://github.com/casey/just synced 2024-07-08 20:16:14 +00:00
just/grammar.md

62 lines
1.4 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:17:09 +00:00
Justfiles are processed with a mildly context-sensitive tokenizer
and a recursive descent parser. The grammar is mostly LL(1),
although an extra token of lookahead is used to distinguish between
2016-10-31 02:15:35 +00:00
export assignments and recipes with arguments.
tokens
2016-10-31 02:16:33 +00:00
------
2016-10-31 02:15:35 +00:00
```
BACKTICK = `[^`\n\r]*`
COLON = :
COMMENT = #([^!].*)?$
EOL = \n|\r\n
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-31 02:16:33 +00:00
-------
2016-10-31 02:15:35 +00:00
```
justfile : item* EOF
item : recipe
| assignment
| export
| EOL
2016-10-31 02:17:59 +00:00
assignment : NAME '=' expression EOL
2016-10-31 02:15:35 +00:00
export : 'export' assignment
expression : STRING
| RAW_STRING
| NAME
| expression '+' expression
recipe : NAME arguments? ':' dependencies? body?
arguments : NAME+
dependencies : NAME+
body : INDENT line+ DEDENT
line : LINE (TEXT | interpolation)+ EOL
interpolation : '{{' expression '}}'
```