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

108 lines
2.6 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
```
BACKTICK = `[^`]*`
INDENTED_BACKTICK = ```[^(```)]*```
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 = '[^']*'
INDENTED_RAW_STRING = '''[^(''')]*'''
STRING = "[^"]*" # also processes \n \r \t \" \\ escapes
INDENTED_STRING = """[^("""]*""" # also processes \n \r \t \" \\ escapes
TEXT = recipe text, only matches in a recipe body
2017-11-30 16:44:06 +00:00
```
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' 'dotenv-load' boolean?
| 'set' 'export' boolean?
| 'set' 'positional-arguments' boolean?
| 'set' 'shell' ':=' '[' string (',' string)* ','? ']'
boolean : ':=' ('true' | 'false')
2021-05-15 19:10:30 +00:00
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? ')'
| BACKTICK
| INDENTED_BACKTICK
| NAME
| string
| '(' expression ')'
string : STRING
| INDENTED_STRING
| RAW_STRING
| INDENTED_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
2021-05-26 23:08:05 +00:00
| '$'? 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 '}}'
```