just/GRAMMAR.md

141 lines
3.7 KiB
Markdown
Raw Permalink 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
2024-07-27 22:11:52 +00:00
INDENTED_STRING = """[^(""")]*""" # also processes \n \r \t \" \\ escapes
LINE_PREFIX = @-|-@|@|-
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
2023-12-29 20:16:31 +00:00
item : alias
2016-10-31 02:15:35 +00:00
| assignment
2023-12-29 20:16:31 +00:00
| eol
2016-10-31 02:15:35 +00:00
| export
2023-12-29 20:16:31 +00:00
| import
| module
| recipe
2024-07-27 22:11:52 +00:00
| set
2016-10-31 02:15:35 +00:00
eol : NEWLINE
| COMMENT NEWLINE
2024-07-27 22:11:52 +00:00
alias : 'alias' NAME ':=' NAME eol
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
2024-07-27 22:11:52 +00:00
set : 'set' setting eol
setting : 'allow-duplicate-recipes' boolean?
| 'allow-duplicate-variables' boolean?
| 'dotenv-filename' ':=' string
| 'dotenv-load' boolean?
| 'dotenv-path' ':=' string
| 'dotenv-required' boolean?
| 'export' boolean?
| 'fallback' boolean?
| 'ignore-comments' boolean?
| 'positional-arguments' boolean?
| 'script-interpreter' ':=' string_list
| 'quiet' boolean?
| 'shell' ':=' string_list
| 'tempdir' ':=' string
| 'unstable' boolean?
| 'windows-powershell' boolean?
| 'windows-shell' ':=' string_list
| 'working-directory' ':=' string
2023-12-29 20:16:31 +00:00
boolean : ':=' ('true' | 'false')
2024-07-27 22:11:52 +00:00
string_list : '[' string (',' string)* ','? ']'
import : 'import' '?'? string? eol
module : 'mod' '?'? NAME string? eol
2021-05-15 19:10:30 +00:00
expression : 'if' condition '{' expression '}' 'else' '{' expression '}'
2024-05-15 01:55:32 +00:00
| 'assert' '(' condition ',' expression ')'
2024-07-27 22:11:52 +00:00
| '/' expression
2022-06-25 09:39:06 +00:00
| value '/' expression
| value '+' expression
2017-11-30 16:44:06 +00:00
| value
condition : expression '==' expression
| expression '!=' expression
2024-07-27 22:11:52 +00:00
| expression '=~' expression
value : NAME '(' sequence? ')'
| BACKTICK
| INDENTED_BACKTICK
| NAME
| string
| '(' expression ')'
string : 'x'? STRING
| 'x'? INDENTED_STRING
| 'x'? RAW_STRING
| 'x'? INDENTED_RAW_STRING
sequence : expression ',' sequence
| expression ','?
2016-10-31 02:15:35 +00:00
2024-07-27 22:11:52 +00:00
recipe : attributes* '@'? NAME parameter* variadic? ':' dependency* eol body?
attributes : '[' attribute* ']' eol
attribute : NAME ( '(' string ')' )?
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 LINE_PREFIX? (TEXT | interpolation)+ NEWLINE
| NEWLINE
2016-10-31 02:15:35 +00:00
interpolation : '{{' expression '}}'
```