├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── ci.yml │ ├── fuzz.yml │ ├── lint.yml │ └── publish.yml ├── .gitignore ├── CMakeLists.txt ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── binding.gyp ├── bindings ├── c │ ├── tree-sitter-jsdoc.pc.in │ └── tree_sitter │ │ └── tree-sitter-jsdoc.h ├── go │ ├── binding.go │ └── binding_test.go ├── node │ ├── binding.cc │ ├── binding_test.js │ ├── index.d.ts │ └── index.js ├── python │ ├── tests │ │ └── test_binding.py │ └── tree_sitter_jsdoc │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── binding.c │ │ └── py.typed ├── rust │ ├── build.rs │ └── lib.rs └── swift │ ├── TreeSitterJSDoc │ └── jsdoc.h │ └── TreeSitterJSDocTests │ └── TreeSitterJsdocTests.swift ├── eslint.config.mjs ├── go.mod ├── go.sum ├── grammar.js ├── package.json ├── pyproject.toml ├── queries └── highlights.scm ├── setup.py ├── src ├── grammar.json ├── node-types.json ├── parser.c ├── scanner.c └── tree_sitter │ ├── alloc.h │ ├── array.h │ └── parser.h ├── test └── corpus │ ├── braces.txt │ ├── code-blocks.txt │ ├── crlf.txt │ └── main.txt └── tree-sitter.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/fuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/.github/workflows/fuzz.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/binding.gyp -------------------------------------------------------------------------------- /bindings/c/tree-sitter-jsdoc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/c/tree-sitter-jsdoc.pc.in -------------------------------------------------------------------------------- /bindings/c/tree_sitter/tree-sitter-jsdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/c/tree_sitter/tree-sitter-jsdoc.h -------------------------------------------------------------------------------- /bindings/go/binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/go/binding.go -------------------------------------------------------------------------------- /bindings/go/binding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/go/binding_test.go -------------------------------------------------------------------------------- /bindings/node/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/node/binding.cc -------------------------------------------------------------------------------- /bindings/node/binding_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/node/binding_test.js -------------------------------------------------------------------------------- /bindings/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/node/index.d.ts -------------------------------------------------------------------------------- /bindings/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/node/index.js -------------------------------------------------------------------------------- /bindings/python/tests/test_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/python/tests/test_binding.py -------------------------------------------------------------------------------- /bindings/python/tree_sitter_jsdoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/python/tree_sitter_jsdoc/__init__.py -------------------------------------------------------------------------------- /bindings/python/tree_sitter_jsdoc/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/python/tree_sitter_jsdoc/__init__.pyi -------------------------------------------------------------------------------- /bindings/python/tree_sitter_jsdoc/binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/python/tree_sitter_jsdoc/binding.c -------------------------------------------------------------------------------- /bindings/python/tree_sitter_jsdoc/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/rust/build.rs -------------------------------------------------------------------------------- /bindings/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/rust/lib.rs -------------------------------------------------------------------------------- /bindings/swift/TreeSitterJSDoc/jsdoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/swift/TreeSitterJSDoc/jsdoc.h -------------------------------------------------------------------------------- /bindings/swift/TreeSitterJSDocTests/TreeSitterJsdocTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/bindings/swift/TreeSitterJSDocTests/TreeSitterJsdocTests.swift -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/go.sum -------------------------------------------------------------------------------- /grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/grammar.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/pyproject.toml -------------------------------------------------------------------------------- /queries/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/queries/highlights.scm -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/setup.py -------------------------------------------------------------------------------- /src/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/src/grammar.json -------------------------------------------------------------------------------- /src/node-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/src/node-types.json -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/src/scanner.c -------------------------------------------------------------------------------- /src/tree_sitter/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/src/tree_sitter/alloc.h -------------------------------------------------------------------------------- /src/tree_sitter/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/src/tree_sitter/array.h -------------------------------------------------------------------------------- /src/tree_sitter/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/src/tree_sitter/parser.h -------------------------------------------------------------------------------- /test/corpus/braces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/test/corpus/braces.txt -------------------------------------------------------------------------------- /test/corpus/code-blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/test/corpus/code-blocks.txt -------------------------------------------------------------------------------- /test/corpus/crlf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/test/corpus/crlf.txt -------------------------------------------------------------------------------- /test/corpus/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/test/corpus/main.txt -------------------------------------------------------------------------------- /tree-sitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-jsdoc/HEAD/tree-sitter.json --------------------------------------------------------------------------------