1
1
mirror of https://github.com/casey/just.git synced 2024-11-25 07:06:23 +03:00
just/GRAMMAR.md

140 lines
3.7 KiB
Markdown
Raw Normal View History

2016-10-31 05:15:35 +03:00
justfile grammar
2016-10-31 05:16:33 +03:00
================
2016-10-31 05:15:35 +03:00
2016-10-31 05:40:11 +03: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 05:15:35 +03:00
tokens
2016-10-31 05:16:33 +03:00
------
2016-10-31 05:15:35 +03: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-28 01:11:52 +03:00
INDENTED_STRING = """[^(""")]*""" # also processes \n \r \t \" \\ escapes
LINE_PREFIX = @-|-@|@|-
TEXT = recipe text, only matches in a recipe body
2017-11-30 19:44:06 +03:00
```
grammar syntax
--------------
```
| alternation
() grouping
_? option (0 or 1 times)
_* repetition (0 or more times)
_+ repetition (1 or more times)
2016-10-31 05:15:35 +03:00
```
grammar
2016-10-31 05:16:33 +03:00
-------
2016-10-31 05:15:35 +03:00
```
justfile : item* EOF
2023-12-29 23:16:31 +03:00
item : alias
2016-10-31 05:15:35 +03:00
| assignment
2023-12-29 23:16:31 +03:00
| eol
2016-10-31 05:15:35 +03:00
| export
2023-12-29 23:16:31 +03:00
| import
| module
| recipe
2024-07-28 01:11:52 +03:00
| set
2016-10-31 05:15:35 +03:00
eol : NEWLINE
| COMMENT NEWLINE
2024-07-28 01:11:52 +03:00
alias : 'alias' NAME ':=' NAME eol
2016-10-31 05:15:35 +03:00
assignment : NAME ':=' expression eol
2019-04-11 22:57:19 +03:00
2016-10-31 05:15:35 +03:00
export : 'export' assignment
2024-07-28 01:11:52 +03: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
2023-12-29 23:16:31 +03:00
boolean : ':=' ('true' | 'false')
2024-07-28 01:11:52 +03:00
string_list : '[' string (',' string)* ','? ']'
import : 'import' '?'? string? eol
module : 'mod' '?'? NAME string? eol
2021-05-15 22:10:30 +03:00
expression : 'if' condition '{' expression '}' 'else' '{' expression '}'
2024-05-15 04:55:32 +03:00
| 'assert' '(' condition ',' expression ')'
2024-07-28 01:11:52 +03:00
| '/' expression
2022-06-25 12:39:06 +03:00
| value '/' expression
| value '+' expression
2017-11-30 19:44:06 +03:00
| value
condition : expression '==' expression
| expression '!=' expression
2024-07-28 01:11:52 +03: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 05:15:35 +03:00
2024-07-28 01:11:52 +03:00
recipe : attributes* '@'? NAME parameter* variadic? ':' dependency* eol body?
attributes : '[' attribute* ']' eol
attribute : NAME ( '(' string ')' )?
2016-10-31 05:15:35 +03:00
parameter : '$'? NAME
2021-05-27 02:08:05 +03:00
| '$'? NAME '=' value
2016-10-31 05:15:35 +03:00
variadic : '*' parameter
| '+' parameter
dependency : NAME
| '(' NAME expression* ')'
2016-10-31 05:15:35 +03:00
body : INDENT line+ DEDENT
line : LINE LINE_PREFIX? (TEXT | interpolation)+ NEWLINE
| NEWLINE
2016-10-31 05:15:35 +03:00
interpolation : '{{' expression '}}'
```