├── COPYING ├── README.md ├── grammar.js ├── package.json ├── queries ├── highlights.scm ├── locals.scm └── nvim │ └── highlights.scm ├── src ├── grammar.json ├── node-types.json ├── parser.c └── tree_sitter │ └── parser.h └── test └── corpus ├── attributes.txt ├── expressions.txt ├── namespaces.txt ├── preprocessor.txt ├── strings.txt └── using-directives.txt /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/README.md -------------------------------------------------------------------------------- /grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/grammar.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/package.json -------------------------------------------------------------------------------- /queries/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/queries/highlights.scm -------------------------------------------------------------------------------- /queries/locals.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/queries/locals.scm -------------------------------------------------------------------------------- /queries/nvim/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/queries/nvim/highlights.scm -------------------------------------------------------------------------------- /src/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/src/grammar.json -------------------------------------------------------------------------------- /src/node-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/src/node-types.json -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/tree_sitter/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/src/tree_sitter/parser.h -------------------------------------------------------------------------------- /test/corpus/attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/test/corpus/attributes.txt -------------------------------------------------------------------------------- /test/corpus/expressions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/test/corpus/expressions.txt -------------------------------------------------------------------------------- /test/corpus/namespaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/test/corpus/namespaces.txt -------------------------------------------------------------------------------- /test/corpus/preprocessor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/test/corpus/preprocessor.txt -------------------------------------------------------------------------------- /test/corpus/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/test/corpus/strings.txt -------------------------------------------------------------------------------- /test/corpus/using-directives.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vala-lang/tree-sitter-vala/HEAD/test/corpus/using-directives.txt --------------------------------------------------------------------------------