├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── ci.yml │ ├── fuzz.yml │ ├── lint.yml │ └── publish.yml ├── .gitignore ├── CMakeLists.txt ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Makefile ├── Package.swift ├── README.md ├── binding.gyp ├── bindings ├── c │ ├── tree-sitter-css.pc.in │ └── tree_sitter │ │ └── tree-sitter-css.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_css │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── binding.c │ │ └── py.typed ├── rust │ ├── build.rs │ └── lib.rs └── swift │ ├── TreeSitterCSS │ └── css.h │ └── TreeSitterCSSTests │ └── TreeSitterCSSTests.swift ├── eslint.config.mjs ├── examples ├── atom.io.css └── github.com.css ├── 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 │ ├── declarations.txt │ ├── selectors.txt │ ├── statements.txt │ └── stylesheets.txt └── highlight │ └── test_css.css └── tree-sitter.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/fuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.github/workflows/fuzz.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/Makefile -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/binding.gyp -------------------------------------------------------------------------------- /bindings/c/tree-sitter-css.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/c/tree-sitter-css.pc.in -------------------------------------------------------------------------------- /bindings/c/tree_sitter/tree-sitter-css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/c/tree_sitter/tree-sitter-css.h -------------------------------------------------------------------------------- /bindings/go/binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/go/binding.go -------------------------------------------------------------------------------- /bindings/go/binding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/go/binding_test.go -------------------------------------------------------------------------------- /bindings/node/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/node/binding.cc -------------------------------------------------------------------------------- /bindings/node/binding_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/node/binding_test.js -------------------------------------------------------------------------------- /bindings/node/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/node/index.d.ts -------------------------------------------------------------------------------- /bindings/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/node/index.js -------------------------------------------------------------------------------- /bindings/python/tests/test_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/python/tests/test_binding.py -------------------------------------------------------------------------------- /bindings/python/tree_sitter_css/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/python/tree_sitter_css/__init__.py -------------------------------------------------------------------------------- /bindings/python/tree_sitter_css/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/python/tree_sitter_css/__init__.pyi -------------------------------------------------------------------------------- /bindings/python/tree_sitter_css/binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/python/tree_sitter_css/binding.c -------------------------------------------------------------------------------- /bindings/python/tree_sitter_css/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bindings/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/rust/build.rs -------------------------------------------------------------------------------- /bindings/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/rust/lib.rs -------------------------------------------------------------------------------- /bindings/swift/TreeSitterCSS/css.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/swift/TreeSitterCSS/css.h -------------------------------------------------------------------------------- /bindings/swift/TreeSitterCSSTests/TreeSitterCSSTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/bindings/swift/TreeSitterCSSTests/TreeSitterCSSTests.swift -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /examples/atom.io.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/examples/atom.io.css -------------------------------------------------------------------------------- /examples/github.com.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/examples/github.com.css -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/go.sum -------------------------------------------------------------------------------- /grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/grammar.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/pyproject.toml -------------------------------------------------------------------------------- /queries/highlights.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/queries/highlights.scm -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/setup.py -------------------------------------------------------------------------------- /src/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/src/grammar.json -------------------------------------------------------------------------------- /src/node-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/src/node-types.json -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/src/scanner.c -------------------------------------------------------------------------------- /src/tree_sitter/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/src/tree_sitter/alloc.h -------------------------------------------------------------------------------- /src/tree_sitter/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/src/tree_sitter/array.h -------------------------------------------------------------------------------- /src/tree_sitter/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/src/tree_sitter/parser.h -------------------------------------------------------------------------------- /test/corpus/declarations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/test/corpus/declarations.txt -------------------------------------------------------------------------------- /test/corpus/selectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/test/corpus/selectors.txt -------------------------------------------------------------------------------- /test/corpus/statements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/test/corpus/statements.txt -------------------------------------------------------------------------------- /test/corpus/stylesheets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/test/corpus/stylesheets.txt -------------------------------------------------------------------------------- /test/highlight/test_css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/test/highlight/test_css.css -------------------------------------------------------------------------------- /tree-sitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-sitter/tree-sitter-css/HEAD/tree-sitter.json --------------------------------------------------------------------------------