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
|
Gargantuan refactor (#522)
- Instead of changing the current directory with `env::set_current_dir`
to be implicitly inherited by subprocesses, we now use
`Command::current_dir` to set it explicitly. This feels much better,
since we aren't dependent on the implicit state of the process's
current directory.
- Subcommand execution is much improved.
- Added a ton of tests for config parsing, config execution, working
dir, and search dir.
- Error messages are improved. Many more will be colored.
- The Config is now onwed, instead of borrowing from the arguments and
the `clap::ArgMatches` object. This is a huge ergonomic improvement,
especially in tests, and I don't think anyone will notice.
- `--edit` now uses `$VISUAL`, `$EDITOR`, or `vim`, in that order,
matching git, which I think is what most people will expect.
- Added a cute `tmptree!{}` macro, for creating temporary directories
populated with directories and files for tests.
- Admitted that grammer is LL(k) and I don't know what `k` is.
2019-11-09 21:43:20 -08:00
|
|
|
and a recursive descent parser. The grammar is LL(k), for an
|
|
|
|
unknown but hopefully reasonable value of k.
|
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
|
|
|
|
|
|
|
```
|
2017-11-30 08:44:06 -08:00
|
|
|
BACKTICK = `[^`\n\r]*`
|
|
|
|
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 = '[^'\r\n]*'
|
|
|
|
STRING = "[^"]*" # also processes \n \r \t \" \\ escapes
|
|
|
|
TEXT = recipe text, only matches in a recipe body
|
|
|
|
```
|
|
|
|
|
|
|
|
grammar syntax
|
|
|
|
--------------
|
|
|
|
|
|
|
|
```
|
|
|
|
| alternation
|
|
|
|
() grouping
|
|
|
|
_? option (0 or 1 times)
|
|
|
|
_* repetition (0 or more times)
|
|
|
|
_+ repetition (1 or more times)
|
2016-10-30 19:15:35 -07:00
|
|
|
```
|
|
|
|
|
|
|
|
grammar
|
2016-10-30 19:16:33 -07:00
|
|
|
-------
|
2016-10-30 19:15:35 -07:00
|
|
|
|
|
|
|
```
|
|
|
|
justfile : item* EOF
|
|
|
|
|
|
|
|
item : recipe
|
2019-04-11 12:57:19 -07:00
|
|
|
| alias
|
2016-10-30 19:15:35 -07:00
|
|
|
| assignment
|
|
|
|
| export
|
2019-11-11 19:47:49 -08:00
|
|
|
| setting
|
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
|
|
|
|
|
2019-04-18 11:48:02 -07:00
|
|
|
alias : 'alias' NAME ':=' NAME
|
2016-10-30 19:15:35 -07:00
|
|
|
|
2019-04-18 11:48:02 -07:00
|
|
|
assignment : NAME ':=' expression eol
|
2019-04-11 12:57:19 -07:00
|
|
|
|
2016-10-30 19:15:35 -07:00
|
|
|
export : 'export' assignment
|
|
|
|
|
2019-11-11 19:47:49 -08:00
|
|
|
setting : 'set' 'shell' ':=' '[' string (',' string)* ','? ']'
|
|
|
|
|
2017-11-30 08:44:06 -08:00
|
|
|
expression : value '+' expression
|
|
|
|
| value
|
|
|
|
|
2019-04-18 11:48:02 -07:00
|
|
|
value : NAME '(' sequence? ')'
|
2017-12-02 05:37:10 -08:00
|
|
|
| STRING
|
2016-10-30 19:15:35 -07:00
|
|
|
| RAW_STRING
|
2016-11-11 23:11:10 -08:00
|
|
|
| BACKTICK
|
2017-12-02 05:37:10 -08:00
|
|
|
| NAME
|
2019-04-11 23:58:08 -07:00
|
|
|
| '(' expression ')'
|
2017-12-02 05:37:10 -08:00
|
|
|
|
2019-11-11 19:47:49 -08:00
|
|
|
string : STRING
|
|
|
|
| RAW_STRING
|
|
|
|
|
2019-04-18 11:48:02 -07:00
|
|
|
sequence : expression ',' sequence
|
2017-12-02 05:37:10 -08:00
|
|
|
| expression ','?
|
2016-10-30 19:15:35 -07:00
|
|
|
|
2020-06-13 01:49:13 -07:00
|
|
|
recipe : '@'? NAME parameter* variadic? ':' dependency* body?
|
2016-10-30 19:15:35 -07:00
|
|
|
|
2016-11-18 07:03:34 -08:00
|
|
|
parameter : NAME
|
2019-04-11 23:58:08 -07:00
|
|
|
| NAME '=' value
|
2016-10-30 19:15:35 -07:00
|
|
|
|
2020-06-13 01:49:13 -07:00
|
|
|
variadic : '*' parameter
|
|
|
|
| '+' parameter
|
|
|
|
|
2019-12-07 04:03:03 -08:00
|
|
|
dependency : NAME
|
|
|
|
| '(' NAME expression* ')
|
2016-10-30 19:15:35 -07:00
|
|
|
|
|
|
|
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 '}}'
|
|
|
|
```
|