├── LICENSE ├── README.md ├── grammar.js ├── package.json ├── queries └── highlights.scm ├── src ├── grammar.json ├── node-types.json ├── parser.c └── tree_sitter │ └── parser.h └── test └── corpus ├── conditionals.mk ├── conflicts.mk ├── directives.mk ├── functions.mk ├── rule.mk ├── shell.mk └── var.mk /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/README.md -------------------------------------------------------------------------------- /grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/grammar.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/package.json -------------------------------------------------------------------------------- /queries/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/queries/highlights.scm -------------------------------------------------------------------------------- /src/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/src/grammar.json -------------------------------------------------------------------------------- /src/node-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/src/node-types.json -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/tree_sitter/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/src/tree_sitter/parser.h -------------------------------------------------------------------------------- /test/corpus/conditionals.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/test/corpus/conditionals.mk -------------------------------------------------------------------------------- /test/corpus/conflicts.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/test/corpus/conflicts.mk -------------------------------------------------------------------------------- /test/corpus/directives.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/test/corpus/directives.mk -------------------------------------------------------------------------------- /test/corpus/functions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/test/corpus/functions.mk -------------------------------------------------------------------------------- /test/corpus/rule.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/test/corpus/rule.mk -------------------------------------------------------------------------------- /test/corpus/shell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/test/corpus/shell.mk -------------------------------------------------------------------------------- /test/corpus/var.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemuller/tree-sitter-make/HEAD/test/corpus/var.mk --------------------------------------------------------------------------------