https://github.com/benarvin/tree-sitter-objcpp
https://github.com/benarvin/tree-sitter-objcpp
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/benarvin/tree-sitter-objcpp
- Owner: BenArvin
- Created: 2025-08-04T03:38:55.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-04T04:00:31.000Z (2 months ago)
- Last Synced: 2025-08-04T07:24:51.524Z (2 months ago)
- Language: C
- Size: 7.78 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### tree-sitter-objcpp
Based on
- [tree-sitter-cpp](https://github.com/tree-sitter/tree-sitter-cpp): [v0.23.4](https://github.com/tree-sitter/tree-sitter-cpp/releases/tag/v0.23.4)
- [tree-sitter-objc](https://github.com/BenArvin/tree-sitter-objcpp#): [v3.0.2](https://github.com/BenArvin/tree-sitter-objcpp/releases/tag/v3.0.2)#### Use in Python project
Requirements
- python-tree-sitter: >= 0.24.0Package install
```
pip install https://github.com/BenArvin/tree-sitter-objcpp/raw/refs/heads/main/output/tree-sitter-objcpp-3.0.2.tar.gz
or download tar.gz in output and install from local path
pip install local_path/tree-sitter-objcpp-3.0.2.tar.gz
```Module import
```
from tree_sitter import Language, Parser
from tree_sitter_objcpp import language as objcpp_languageparser = Parser(Language(objcpp_language()))
```