File tree Expand file tree Collapse file tree 2 files changed +45
-3
lines changed Expand file tree Collapse file tree 2 files changed +45
-3
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,17 @@ task generate:
1212 run = tree-sitter generate // runs the tree-sitter cli
1313 alias = g
1414
15- task test :
16- desc = tests the parser using this taskrfile
15+ task parse :
16+ desc = parses this file and prints the output
1717 run = tree-sitter parse taskrfile
18- alias = t
18+ alias = p
1919 needs = c, g
2020
21+ task test:
22+ desc = run the tests
23+ run = tree-sitter test
24+ alias = t
25+
2126task highlight:
2227 run = tree-sitter highlight taskrfile
2328 alias = h
Original file line number Diff line number Diff line change 1+ ======================
2+ Environment definition
3+ ======================
4+
5+ env dev:
6+ file = dev.env
7+
8+ ---
9+
10+ (source_file
11+ (env
12+ (kw_env)
13+ (identifier)
14+ (file_definition
15+ (file_key)
16+ (filename))
17+ ))
18+
19+
20+ ==============================
21+ Default environment definition
22+ ==============================
23+
24+ default env dev:
25+ file = dev.env
26+
27+ ---
28+
29+ (source_file
30+ (default_env
31+ (kw_default)
32+ (kw_env)
33+ (identifier)
34+ (file_definition
35+ (file_key)
36+ (filename))
37+ ))
You can’t perform that action at this time.
0 commit comments