tree-sitter-analyzer 0.1.3__py3-none-any.whl → 0.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of tree-sitter-analyzer might be problematic. Click here for more details.
- tree_sitter_analyzer/__init__.py +133 -121
- tree_sitter_analyzer/__main__.py +11 -12
- tree_sitter_analyzer/api.py +531 -539
- tree_sitter_analyzer/cli/__init__.py +39 -39
- tree_sitter_analyzer/cli/__main__.py +12 -13
- tree_sitter_analyzer/cli/commands/__init__.py +26 -27
- tree_sitter_analyzer/cli/commands/advanced_command.py +88 -88
- tree_sitter_analyzer/cli/commands/base_command.py +160 -155
- tree_sitter_analyzer/cli/commands/default_command.py +18 -19
- tree_sitter_analyzer/cli/commands/partial_read_command.py +141 -133
- tree_sitter_analyzer/cli/commands/query_command.py +81 -82
- tree_sitter_analyzer/cli/commands/structure_command.py +138 -121
- tree_sitter_analyzer/cli/commands/summary_command.py +101 -93
- tree_sitter_analyzer/cli/commands/table_command.py +232 -233
- tree_sitter_analyzer/cli/info_commands.py +120 -121
- tree_sitter_analyzer/cli_main.py +277 -276
- tree_sitter_analyzer/core/__init__.py +15 -20
- tree_sitter_analyzer/core/analysis_engine.py +591 -574
- tree_sitter_analyzer/core/cache_service.py +320 -330
- tree_sitter_analyzer/core/engine.py +557 -560
- tree_sitter_analyzer/core/parser.py +293 -288
- tree_sitter_analyzer/core/query.py +494 -502
- tree_sitter_analyzer/encoding_utils.py +458 -460
- tree_sitter_analyzer/exceptions.py +337 -340
- tree_sitter_analyzer/file_handler.py +217 -222
- tree_sitter_analyzer/formatters/__init__.py +1 -1
- tree_sitter_analyzer/formatters/base_formatter.py +167 -168
- tree_sitter_analyzer/formatters/formatter_factory.py +78 -74
- tree_sitter_analyzer/formatters/java_formatter.py +287 -270
- tree_sitter_analyzer/formatters/python_formatter.py +255 -235
- tree_sitter_analyzer/interfaces/__init__.py +9 -10
- tree_sitter_analyzer/interfaces/cli.py +528 -557
- tree_sitter_analyzer/interfaces/cli_adapter.py +322 -319
- tree_sitter_analyzer/interfaces/mcp_adapter.py +180 -170
- tree_sitter_analyzer/interfaces/mcp_server.py +405 -416
- tree_sitter_analyzer/java_analyzer.py +218 -219
- tree_sitter_analyzer/language_detector.py +398 -400
- tree_sitter_analyzer/language_loader.py +224 -228
- tree_sitter_analyzer/languages/__init__.py +10 -11
- tree_sitter_analyzer/languages/java_plugin.py +1129 -1113
- tree_sitter_analyzer/languages/python_plugin.py +737 -712
- tree_sitter_analyzer/mcp/__init__.py +31 -32
- tree_sitter_analyzer/mcp/resources/__init__.py +44 -47
- tree_sitter_analyzer/mcp/resources/code_file_resource.py +212 -213
- tree_sitter_analyzer/mcp/resources/project_stats_resource.py +560 -550
- tree_sitter_analyzer/mcp/server.py +333 -345
- tree_sitter_analyzer/mcp/tools/__init__.py +30 -31
- tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py +621 -557
- tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py +242 -245
- tree_sitter_analyzer/mcp/tools/base_tool.py +54 -55
- tree_sitter_analyzer/mcp/tools/read_partial_tool.py +300 -302
- tree_sitter_analyzer/mcp/tools/table_format_tool.py +362 -359
- tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py +543 -476
- tree_sitter_analyzer/mcp/utils/__init__.py +105 -106
- tree_sitter_analyzer/mcp/utils/error_handler.py +549 -549
- tree_sitter_analyzer/models.py +470 -481
- tree_sitter_analyzer/output_manager.py +261 -264
- tree_sitter_analyzer/plugins/__init__.py +333 -334
- tree_sitter_analyzer/plugins/base.py +477 -446
- tree_sitter_analyzer/plugins/java_plugin.py +608 -625
- tree_sitter_analyzer/plugins/javascript_plugin.py +446 -439
- tree_sitter_analyzer/plugins/manager.py +362 -355
- tree_sitter_analyzer/plugins/plugin_loader.py +85 -83
- tree_sitter_analyzer/plugins/python_plugin.py +606 -598
- tree_sitter_analyzer/plugins/registry.py +374 -366
- tree_sitter_analyzer/queries/__init__.py +26 -27
- tree_sitter_analyzer/queries/java.py +391 -394
- tree_sitter_analyzer/queries/javascript.py +148 -149
- tree_sitter_analyzer/queries/python.py +285 -286
- tree_sitter_analyzer/queries/typescript.py +229 -230
- tree_sitter_analyzer/query_loader.py +254 -260
- tree_sitter_analyzer/table_formatter.py +468 -448
- tree_sitter_analyzer/utils.py +277 -277
- tree_sitter_analyzer-0.3.0.dist-info/METADATA +346 -0
- tree_sitter_analyzer-0.3.0.dist-info/RECORD +77 -0
- tree_sitter_analyzer-0.1.3.dist-info/METADATA +0 -444
- tree_sitter_analyzer-0.1.3.dist-info/RECORD +0 -77
- {tree_sitter_analyzer-0.1.3.dist-info → tree_sitter_analyzer-0.3.0.dist-info}/WHEEL +0 -0
- {tree_sitter_analyzer-0.1.3.dist-info → tree_sitter_analyzer-0.3.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,444 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: tree-sitter-analyzer
|
|
3
|
-
Version: 0.1.3
|
|
4
|
-
Summary: Extensible multi-language code analyzer framework using Tree-sitter with dynamic plugin architecture
|
|
5
|
-
Project-URL: Homepage, https://github.com/aimasteracc/tree-sitter-analyzer
|
|
6
|
-
Project-URL: Documentation, https://github.com/aimasteracc/tree-sitter-analyzer#readme
|
|
7
|
-
Project-URL: Repository, https://github.com/aimasteracc/tree-sitter-analyzer.git
|
|
8
|
-
Project-URL: Issues, https://github.com/aimasteracc/tree-sitter-analyzer/issues
|
|
9
|
-
Project-URL: Changelog, https://github.com/aimasteracc/tree-sitter-analyzer/blob/main/CHANGELOG.md
|
|
10
|
-
Project-URL: Bug Reports, https://github.com/aimasteracc/tree-sitter-analyzer/issues
|
|
11
|
-
Project-URL: Source Code, https://github.com/aimasteracc/tree-sitter-analyzer
|
|
12
|
-
Author-email: "aisheng.yu" <aimasteracc@gmail.com>
|
|
13
|
-
Maintainer-email: "aisheng.yu" <aimasteracc@gmail.com>
|
|
14
|
-
License: MIT
|
|
15
|
-
Keywords: ai-tools,ast,code-analysis,mcp,mcp-server,model-context-protocol,multi-language,parsing,static-analysis,tree-sitter
|
|
16
|
-
Classifier: Development Status :: 4 - Beta
|
|
17
|
-
Classifier: Framework :: AsyncIO
|
|
18
|
-
Classifier: Intended Audience :: Developers
|
|
19
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
20
|
-
Classifier: Operating System :: OS Independent
|
|
21
|
-
Classifier: Programming Language :: Python :: 3
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
-
Classifier: Topic :: Communications
|
|
27
|
-
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
28
|
-
Classifier: Topic :: Software Development :: Code Generators
|
|
29
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
|
-
Classifier: Topic :: Software Development :: Quality Assurance
|
|
31
|
-
Classifier: Topic :: Text Processing :: Linguistic
|
|
32
|
-
Classifier: Typing :: Typed
|
|
33
|
-
Requires-Python: >=3.10
|
|
34
|
-
Requires-Dist: cachetools>=5.0.0
|
|
35
|
-
Requires-Dist: chardet>=5.0.0
|
|
36
|
-
Requires-Dist: tree-sitter-cpp>=0.23.4
|
|
37
|
-
Requires-Dist: tree-sitter-java>=0.23.5
|
|
38
|
-
Requires-Dist: tree-sitter>=0.20.0
|
|
39
|
-
Provides-Extra: all-languages
|
|
40
|
-
Requires-Dist: tree-sitter-c>=0.20.0; extra == 'all-languages'
|
|
41
|
-
Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'all-languages'
|
|
42
|
-
Requires-Dist: tree-sitter-go>=0.20.0; extra == 'all-languages'
|
|
43
|
-
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'all-languages'
|
|
44
|
-
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'all-languages'
|
|
45
|
-
Requires-Dist: tree-sitter-python>=0.23.0; extra == 'all-languages'
|
|
46
|
-
Requires-Dist: tree-sitter-rust>=0.20.0; extra == 'all-languages'
|
|
47
|
-
Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'all-languages'
|
|
48
|
-
Provides-Extra: c
|
|
49
|
-
Requires-Dist: tree-sitter-c>=0.20.0; extra == 'c'
|
|
50
|
-
Provides-Extra: cpp
|
|
51
|
-
Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'cpp'
|
|
52
|
-
Provides-Extra: dev
|
|
53
|
-
Requires-Dist: black>=24.0.0; extra == 'dev'
|
|
54
|
-
Requires-Dist: flake8>=7.0.0; extra == 'dev'
|
|
55
|
-
Requires-Dist: isort>=5.13.0; extra == 'dev'
|
|
56
|
-
Requires-Dist: memory-profiler>=0.61.0; extra == 'dev'
|
|
57
|
-
Requires-Dist: mypy>=1.17.0; extra == 'dev'
|
|
58
|
-
Requires-Dist: pre-commit>=3.0.0; extra == 'dev'
|
|
59
|
-
Requires-Dist: psutil>=7.0.0; extra == 'dev'
|
|
60
|
-
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'dev'
|
|
61
|
-
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
62
|
-
Requires-Dist: pytest-mock>=3.14.1; extra == 'dev'
|
|
63
|
-
Requires-Dist: pytest>=8.4.1; extra == 'dev'
|
|
64
|
-
Requires-Dist: types-psutil>=5.9.0; extra == 'dev'
|
|
65
|
-
Provides-Extra: full
|
|
66
|
-
Requires-Dist: anyio>=4.9.0; extra == 'full'
|
|
67
|
-
Requires-Dist: black>=24.0.0; extra == 'full'
|
|
68
|
-
Requires-Dist: flake8>=7.0.0; extra == 'full'
|
|
69
|
-
Requires-Dist: httpx>=0.28.1; extra == 'full'
|
|
70
|
-
Requires-Dist: isort>=5.13.0; extra == 'full'
|
|
71
|
-
Requires-Dist: mcp>=1.12.2; extra == 'full'
|
|
72
|
-
Requires-Dist: memory-profiler>=0.61.0; extra == 'full'
|
|
73
|
-
Requires-Dist: mypy>=1.17.0; extra == 'full'
|
|
74
|
-
Requires-Dist: pre-commit>=3.0.0; extra == 'full'
|
|
75
|
-
Requires-Dist: psutil>=7.0.0; extra == 'full'
|
|
76
|
-
Requires-Dist: pydantic-settings>=2.10.1; extra == 'full'
|
|
77
|
-
Requires-Dist: pydantic>=2.11.7; extra == 'full'
|
|
78
|
-
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'full'
|
|
79
|
-
Requires-Dist: pytest-cov>=4.0.0; extra == 'full'
|
|
80
|
-
Requires-Dist: pytest-mock>=3.14.1; extra == 'full'
|
|
81
|
-
Requires-Dist: pytest>=8.4.1; extra == 'full'
|
|
82
|
-
Requires-Dist: tree-sitter-c>=0.20.0; extra == 'full'
|
|
83
|
-
Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'full'
|
|
84
|
-
Requires-Dist: tree-sitter-go>=0.20.0; extra == 'full'
|
|
85
|
-
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'full'
|
|
86
|
-
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'full'
|
|
87
|
-
Requires-Dist: tree-sitter-python>=0.23.0; extra == 'full'
|
|
88
|
-
Requires-Dist: tree-sitter-rust>=0.20.0; extra == 'full'
|
|
89
|
-
Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'full'
|
|
90
|
-
Requires-Dist: types-psutil>=5.9.0; extra == 'full'
|
|
91
|
-
Provides-Extra: go
|
|
92
|
-
Requires-Dist: tree-sitter-go>=0.20.0; extra == 'go'
|
|
93
|
-
Provides-Extra: java
|
|
94
|
-
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'java'
|
|
95
|
-
Provides-Extra: javascript
|
|
96
|
-
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'javascript'
|
|
97
|
-
Provides-Extra: mcp
|
|
98
|
-
Requires-Dist: anyio>=4.9.0; extra == 'mcp'
|
|
99
|
-
Requires-Dist: httpx>=0.28.1; extra == 'mcp'
|
|
100
|
-
Requires-Dist: mcp>=1.12.2; extra == 'mcp'
|
|
101
|
-
Requires-Dist: pydantic-settings>=2.10.1; extra == 'mcp'
|
|
102
|
-
Requires-Dist: pydantic>=2.11.7; extra == 'mcp'
|
|
103
|
-
Provides-Extra: popular
|
|
104
|
-
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'popular'
|
|
105
|
-
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'popular'
|
|
106
|
-
Requires-Dist: tree-sitter-python>=0.23.0; extra == 'popular'
|
|
107
|
-
Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'popular'
|
|
108
|
-
Provides-Extra: python
|
|
109
|
-
Requires-Dist: tree-sitter-python>=0.23.0; extra == 'python'
|
|
110
|
-
Provides-Extra: rust
|
|
111
|
-
Requires-Dist: tree-sitter-rust>=0.20.0; extra == 'rust'
|
|
112
|
-
Provides-Extra: systems
|
|
113
|
-
Requires-Dist: tree-sitter-c>=0.20.0; extra == 'systems'
|
|
114
|
-
Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'systems'
|
|
115
|
-
Requires-Dist: tree-sitter-go>=0.20.0; extra == 'systems'
|
|
116
|
-
Requires-Dist: tree-sitter-rust>=0.20.0; extra == 'systems'
|
|
117
|
-
Provides-Extra: test
|
|
118
|
-
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'test'
|
|
119
|
-
Requires-Dist: pytest-cov>=4.0.0; extra == 'test'
|
|
120
|
-
Requires-Dist: pytest-mock>=3.14.1; extra == 'test'
|
|
121
|
-
Requires-Dist: pytest>=8.4.1; extra == 'test'
|
|
122
|
-
Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'test'
|
|
123
|
-
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'test'
|
|
124
|
-
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'test'
|
|
125
|
-
Requires-Dist: tree-sitter-python>=0.23.0; extra == 'test'
|
|
126
|
-
Provides-Extra: typescript
|
|
127
|
-
Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'typescript'
|
|
128
|
-
Provides-Extra: web
|
|
129
|
-
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'web'
|
|
130
|
-
Requires-Dist: tree-sitter-typescript>=0.20.0; extra == 'web'
|
|
131
|
-
Description-Content-Type: text/markdown
|
|
132
|
-
|
|
133
|
-
# Tree-sitter Analyzer
|
|
134
|
-
|
|
135
|
-
[](https://python.org)
|
|
136
|
-
[](LICENSE)
|
|
137
|
-
[](#测试)
|
|
138
|
-
|
|
139
|
-
An extensible multi-language code analyzer framework using Tree-sitter with dynamic plugin architecture, designed to solve the problem of large code files exceeding LLM single-pass token limits.
|
|
140
|
-
|
|
141
|
-
**Available as both CLI tool and MCP server.**
|
|
142
|
-
|
|
143
|
-
## Core Features
|
|
144
|
-
|
|
145
|
-
1. **Code Scale Analysis** - Get overall structure without reading complete files
|
|
146
|
-
2. **Targeted Code Extraction** - Extract specific line ranges efficiently
|
|
147
|
-
3. **Code Position Information** - Get detailed position data for precise extraction
|
|
148
|
-
|
|
149
|
-
## Installation
|
|
150
|
-
|
|
151
|
-
### Prerequisites
|
|
152
|
-
|
|
153
|
-
First, install uv (a fast Python package manager):
|
|
154
|
-
|
|
155
|
-
```bash
|
|
156
|
-
# On macOS and Linux
|
|
157
|
-
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
158
|
-
|
|
159
|
-
# On Windows
|
|
160
|
-
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
161
|
-
|
|
162
|
-
# Or using pip
|
|
163
|
-
pip install uv
|
|
164
|
-
```
|
|
165
|
-
|
|
166
|
-
### Install from GitHub
|
|
167
|
-
|
|
168
|
-
```bash
|
|
169
|
-
# Basic installation with Java support
|
|
170
|
-
# Clone and install the project
|
|
171
|
-
git clone https://github.com/aimasteracc/tree-sitter-analyzer.git
|
|
172
|
-
cd tree-sitter-analyzer
|
|
173
|
-
|
|
174
|
-
# Install with Java support
|
|
175
|
-
uv sync
|
|
176
|
-
|
|
177
|
-
# With popular languages (Java, Python, JavaScript, TypeScript)
|
|
178
|
-
uv sync --extra popular
|
|
179
|
-
|
|
180
|
-
# With MCP server support
|
|
181
|
-
uv sync --extra mcp
|
|
182
|
-
|
|
183
|
-
# Full installation with all features
|
|
184
|
-
uv sync --extra all --extra mcp
|
|
185
|
-
```
|
|
186
|
-
|
|
187
|
-
## Usage
|
|
188
|
-
|
|
189
|
-
### CLI Commands
|
|
190
|
-
|
|
191
|
-
```bash
|
|
192
|
-
# Code scale analysis
|
|
193
|
-
uv run python -m tree_sitter_analyzer examples/Sample.java --advanced --output-format=text
|
|
194
|
-
|
|
195
|
-
# Partial code extraction
|
|
196
|
-
uv run python -m tree_sitter_analyzer examples/Sample.java --partial-read --start-line 84 --end-line 86
|
|
197
|
-
|
|
198
|
-
# Position information table
|
|
199
|
-
uv run python -m tree_sitter_analyzer examples/Sample.java --table=full
|
|
200
|
-
```
|
|
201
|
-
|
|
202
|
-
#### CLI Output Examples
|
|
203
|
-
|
|
204
|
-
**Code Scale Analysis (`--advanced --output-format=text`):**
|
|
205
|
-
|
|
206
|
-
>```
|
|
207
|
-
>PS C:\git-public\tree-sitter-analyzer> uv run python -m tree_sitter_analyzer examples/Sample.java --advanced --output-format=text
|
|
208
|
-
>2025-07-30 16:57:47,827 - tree_sitter_analyzer - INFO - Successfully loaded 3 language plugins: java, javascript, python
|
|
209
|
-
>2025-07-30 16:57:47,916 - tree_sitter_analyzer - INFO - CacheService initialized: L1=100, L2=1000, L3=10000, TTL=3600s
|
|
210
|
-
>2025-07-30 16:57:47,917 - tree_sitter_analyzer - INFO - Loading plugins...
|
|
211
|
-
>2025-07-30 16:57:47,920 - tree_sitter_analyzer - INFO - Plugin registered for language: java
|
|
212
|
-
>2025-07-30 16:57:47,920 - tree_sitter_analyzer - INFO - Plugin registered for language: javascript
|
|
213
|
-
>2025-07-30 16:57:47,922 - tree_sitter_analyzer - INFO - Plugin registered for language: python
|
|
214
|
-
>2025-07-30 16:57:47,922 - tree_sitter_analyzer - INFO - Successfully loaded 3 language plugins: java, javascript, python
|
|
215
|
-
>2025-07-30 16:57:47,923 - tree_sitter_analyzer - INFO - UnifiedAnalysisEngine initialized
|
|
216
|
-
>INFO: Language auto-detected from extension: java
|
|
217
|
-
>2025-07-30 16:57:47,925 - tree_sitter_analyzer - INFO - Starting analysis for examples/Sample.java
|
|
218
|
-
>2025-07-30 16:57:47,945 - tree_sitter_analyzer.core.parser - INFO - Parser initialized successfully
|
|
219
|
-
>2025-07-30 16:57:47,951 - PERF - analyze_java: 0.0253s - Operation completed
|
|
220
|
-
>2025-07-30 16:57:47,951 - tree_sitter_analyzer.performance - INFO - analyze_java: 0.0253s - Operation completed
|
|
221
|
-
>2025-07-30 16:57:47,958 - PERF - unified_analysis: 0.0253s - Analyzed examples/Sample.java (java)
|
|
222
|
-
>2025-07-30 16:57:47,958 - tree_sitter_analyzer.performance - INFO - unified_analysis: 0.0253s - Analyzed examples/Sample.java (java)
|
|
223
|
-
>
|
|
224
|
-
>--- Advanced Analysis Results ---
|
|
225
|
-
>"File: examples/Sample.java"
|
|
226
|
-
>"Package: (default)"
|
|
227
|
-
>"Lines: 178"
|
|
228
|
-
>"Classes: 8"
|
|
229
|
-
>"Methods: 24"
|
|
230
|
-
>"Fields: 5"
|
|
231
|
-
>"Imports: 2"
|
|
232
|
-
>"Annotations: 0"
|
|
233
|
-
>```
|
|
234
|
-
|
|
235
|
-
**Partial Code Extraction (`--partial-read`):**
|
|
236
|
-
>```
|
|
237
|
-
>PS C:\git-public\tree-sitter-analyzer> uv run python -m tree_sitter_analyzer examples/Sample.java --partial-read --start-line 84 --end-line 86
|
|
238
|
-
>2025-07-30 16:58:22,948 - tree_sitter_analyzer - INFO - Successfully loaded 3 language plugins: java, javascript, python
|
|
239
|
-
>2025-07-30 16:58:23,056 - tree_sitter_analyzer - INFO - Successfully read partial file examples/Sample.java: lines 84-86
|
|
240
|
-
>{
|
|
241
|
-
> "file_path": "examples/Sample.java",
|
|
242
|
-
> "range": {
|
|
243
|
-
> "start_line": 84,
|
|
244
|
-
> "end_line": 86,
|
|
245
|
-
> "start_column": null,
|
|
246
|
-
> "end_column": null
|
|
247
|
-
> },
|
|
248
|
-
> "content": " public void innerMethod() {\n System.out.println(\"Inner class method, value: \" + value);\n }\n",
|
|
249
|
-
> "content_length": 117
|
|
250
|
-
>}
|
|
251
|
-
>```
|
|
252
|
-
|
|
253
|
-
**Table Format Analysis (`--table=full`):**
|
|
254
|
-
|
|
255
|
-
The `--table=full` command produces detailed analysis tables:
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
># Sample.java
|
|
259
|
-
>
|
|
260
|
-
>## Imports
|
|
261
|
-
>```java
|
|
262
|
-
>java.util.List
|
|
263
|
-
>java.util.ArrayList
|
|
264
|
-
>```
|
|
265
|
-
>
|
|
266
|
-
>## Classes
|
|
267
|
-
>| Class | Type | Visibility | Lines | Methods | Fields |
|
|
268
|
-
>|-------|------|------------|-------|---------|--------|
|
|
269
|
-
>| AbstractParentClass | class | public | 7-15 | 2 | 0 |
|
|
270
|
-
>| ParentClass | class | public | 18-45 | 4 | 2 |
|
|
271
|
-
>| TestInterface | class | public | 48-64 | 3 | 0 |
|
|
272
|
-
>| AnotherInterface | class | public | 67-69 | 1 | 0 |
|
|
273
|
-
>| Test | class | public | 72-159 | 14 | 3 |
|
|
274
|
-
>| InnerClass | class | public | 83-87 | 1 | 0 |
|
|
275
|
-
>| StaticNestedClass | class | public | 90-94 | 1 | 0 |
|
|
276
|
-
>| TestEnum | class | public | 162-178 | 0 | 0 |
|
|
277
|
-
>
|
|
278
|
-
>## Fields
|
|
279
|
-
>| Name | Type | Vis | Modifiers | Line | Doc |
|
|
280
|
-
>|------|------|-----|-----------|------|-----|
|
|
281
|
-
>| CONSTANT | String | ~ | static,final | 20 | - |
|
|
282
|
-
>| parentField | String | # | protected | 23 | - |
|
|
283
|
-
>| value | int | - | private | 74 | - |
|
|
284
|
-
>| staticValue | int | + | public,static | 77 | - |
|
|
285
|
-
>| finalField | String | - | private,final | 80 | - |
|
|
286
|
-
>
|
|
287
|
-
>## Constructor
|
|
288
|
-
>| Method | Signature | Vis | Lines | Cols | Cx | Doc |
|
|
289
|
-
>|--------|-----------|-----|-------|------|----|----|
|
|
290
|
-
>| ParentClass | ():void | + | 26-28 | 5-6 | 1 | - |
|
|
291
|
-
>| Test | (value:int):void | + | 97-100 | 5-6 | 1 | - |
|
|
292
|
-
>| Test | ():void | + | 103-105 | 5-6 | 1 | - |
|
|
293
|
-
>
|
|
294
|
-
>## Public Methods
|
|
295
|
-
>| Method | Signature | Vis | Lines | Cols | Cx | Doc |
|
|
296
|
-
>|--------|-----------|-----|-------|------|----|----|
|
|
297
|
-
>| innerMethod | ():void | + | 84-86 | 5-6 | 1 | - |
|
|
298
|
-
>| nestedMethod | ():void | + | 91-93 | 5-6 | 1 | - |
|
|
299
|
-
>| getValue | ():String | + | 108-110 | 5-6 | 1 | - |
|
|
300
|
-
>| staticMethod | ():void [static] | + | 128-130 | 5-6 | 1 | - |
|
|
301
|
-
>| finalMethod | ():void | + | 133-135 | 5-6 | 1 | - |
|
|
302
|
-
>| doSomething | ():void | + | 138-141 | 5-6 | 1 | - |
|
|
303
|
-
>| anotherMethod | ():void | + | 143-146 | 5-6 | 1 | - |
|
|
304
|
-
>| genericMethod | (input:T):void | + | 149-151 | 5-6 | 1 | - |
|
|
305
|
-
>| createList | (item:T):List<T> | + | 154-158 | 5-6 | 1 | - |
|
|
306
|
-
>
|
|
307
|
-
>## Private Methods
|
|
308
|
-
>| Method | Signature | Vis | Lines | Cols | Cx | Doc |
|
|
309
|
-
>|--------|-----------|-----|-------|------|----|----|
|
|
310
|
-
>| privateMethod | ():void | - | 123-125 | 5-6 | 1 | - |
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
### MCP Server
|
|
314
|
-
|
|
315
|
-
The Tree-sitter Analyzer provides an MCP (Model Context Protocol) server that enables AI assistants to analyze code files directly.
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
#### MCP Configuration
|
|
319
|
-
|
|
320
|
-
Add to your Claude Desktop config file:
|
|
321
|
-
|
|
322
|
-
```json
|
|
323
|
-
{
|
|
324
|
-
"mcpServers": {
|
|
325
|
-
"tree-sitter-analyzer": {
|
|
326
|
-
"command": "uv",
|
|
327
|
-
"args": [
|
|
328
|
-
"run",
|
|
329
|
-
"--with",
|
|
330
|
-
"tree-sitter-analyzer[mcp]",
|
|
331
|
-
"python",
|
|
332
|
-
"-m",
|
|
333
|
-
"tree_sitter_analyzer.mcp.server"
|
|
334
|
-
]
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
|
-
```
|
|
339
|
-
|
|
340
|
-
#### Available MCP Tools
|
|
341
|
-
|
|
342
|
-
1. **analyze_code_scale** - Get code scale and complexity metrics
|
|
343
|
-
2. **format_table** - Generate table-formatted analysis (equivalent to CLI `--table=full`)
|
|
344
|
-
3. **read_code_partial** - Extract specific line ranges from files
|
|
345
|
-
4. **analyze_code_universal** - Universal code analysis with automatic language detection
|
|
346
|
-
|
|
347
|
-
#### MCP Usage Examples
|
|
348
|
-
|
|
349
|
-
**Code Scale Analysis:**
|
|
350
|
-
```json
|
|
351
|
-
{
|
|
352
|
-
"tool": "analyze_code_scale",
|
|
353
|
-
"arguments": {
|
|
354
|
-
"file_path": "examples/Sample.java",
|
|
355
|
-
"include_complexity": true,
|
|
356
|
-
"include_details": true
|
|
357
|
-
}
|
|
358
|
-
}
|
|
359
|
-
```
|
|
360
|
-
|
|
361
|
-
>```json
|
|
362
|
-
>{
|
|
363
|
-
> "file_path": "examples/Sample.java",
|
|
364
|
-
> "language": "java",
|
|
365
|
-
> "analyzer_type": "advanced",
|
|
366
|
-
> "analysis_type": "basic",
|
|
367
|
-
> "metrics": {
|
|
368
|
-
> "lines_total": 178,
|
|
369
|
-
> "lines_code": 0,
|
|
370
|
-
> "lines_comment": 0,
|
|
371
|
-
> "lines_blank": 0,
|
|
372
|
-
> "elements": {
|
|
373
|
-
> "classes": 8,
|
|
374
|
-
> "methods": 24,
|
|
375
|
-
> "fields": 5,
|
|
376
|
-
> "imports": 2,
|
|
377
|
-
> "annotations": 0
|
|
378
|
-
> }
|
|
379
|
-
> }
|
|
380
|
-
>}
|
|
381
|
-
>```
|
|
382
|
-
|
|
383
|
-
**Table Format Analysis:**
|
|
384
|
-
```json
|
|
385
|
-
{
|
|
386
|
-
"tool": "format_table",
|
|
387
|
-
"arguments": {
|
|
388
|
-
"file_path": "examples/Sample.java",
|
|
389
|
-
"format_type": "full"
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
```
|
|
393
|
-
>```json
|
|
394
|
-
>{
|
|
395
|
-
> "table_output": "# Sample.java\n\n## Imports\n```java\njava.util.List\njava.util.ArrayList\n```\n\n## Classes\n| Class | Type | >Visibility | Lines | Methods | Fields |\n|-------|------|------------|-------|---------|--------|\n| AbstractParentClass | class | public | >7-15 | 2 | 0 |\n| ParentClass | class | public | 18-45 | 4 | 2 |\n| TestInterface | interface | public | 48-64 | 3 | 0 |\n| >AnotherInterface | interface | public | 67-69 | 1 | 0 |\n| Test | class | public | 72-159 | 14 | 3 |\n| InnerClass | class | public | >83-87 | 1 | 0 |\n| StaticNestedClass | class | public | 90-94 | 1 | 0 |\n| TestEnum | enum | public | 162-178 | 0 | 0 |\n\n## Fields\n| >Name | Type | Vis | Modifiers | Line | Doc |\n|------|------|-----|-----------|------|-----|\n| CONSTANT | String | ~ | static,final | 20 | >- |\n| parentField | String | # | protected | 23 | - |\n| value | int | - | private | 74 | - |\n| staticValue | int | + | public,static | >77 | - |\n| finalField | String | - | private,final | 80 | - |\n\n## Constructor\n| Method | Signature | Vis | Lines | Cols | Cx | Doc |\n|>--------|-----------|-----|-------|------|----|----|\n| ParentClass | ():void | + | 26-28 | 5-6 | 1 | - |\n| Test | (value:int):void | + | >97-100 | 5-6 | 1 | - |\n| Test | ():void | + | 103-105 | 5-6 | 1 | - |\n\n## Public Methods\n| Method | Signature | Vis | Lines | Cols | >Cx | Doc |\n|--------|-----------|-----|-------|------|----|----|\n| innerMethod | ():void | + | 84-86 | 5-6 | 1 | - |\n| nestedMethod | ()>:void | + | 91-93 | 5-6 | 1 | - |\n| getValue | ():String | + | 108-110 | 5-6 | 1 | - |\n| staticMethod | ():void [static] | + | 128-130 | >5-6 | 1 | - |\n| finalMethod | ():void | + | 133-135 | 5-6 | 1 | - |\n| doSomething | ():void | + | 138-141 | 5-6 | 1 | - |\n| >anotherMethod | ():void | + | 143-146 | 5-6 | 1 | - |\n| genericMethod | (input:T):void | + | 149-151 | 5-6 | 1 | - |\n| createList | >(item:T):List<T> | + | 154-158 | 5-6 | 1 | - |\n\n## Private Methods\n| Method | Signature | Vis | Lines | Cols | Cx | Doc |\n|--------|>-----------|-----|-------|------|----|----|\n| privateMethod | ():void | - | 123-125 | 5-6 | 1 | - |",
|
|
396
|
-
> "format_type": "full",
|
|
397
|
-
> "file_path": "examples/Sample.java",
|
|
398
|
-
> "language": "java",
|
|
399
|
-
> "metadata": {
|
|
400
|
-
> "classes_count": 8,
|
|
401
|
-
> "methods_count": 24,
|
|
402
|
-
> "fields_count": 5,
|
|
403
|
-
> "total_lines": 178
|
|
404
|
-
> }
|
|
405
|
-
>}
|
|
406
|
-
>```
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
**Partial Code Reading:**
|
|
410
|
-
```json
|
|
411
|
-
{
|
|
412
|
-
"tool": "read_code_partial",
|
|
413
|
-
"arguments": {
|
|
414
|
-
"file_path": "examples/Sample.java",
|
|
415
|
-
"start_line": 84,
|
|
416
|
-
"end_line": 86
|
|
417
|
-
}
|
|
418
|
-
}
|
|
419
|
-
```
|
|
420
|
-
>```json
|
|
421
|
-
>{
|
|
422
|
-
> "partial_content_result": "--- Partial Read Result ---\nFile: examples/Sample.java\nRange: Line 84-86\nCharacters read: 117\n{\n \"file_path\": >\"examples/Sample.java\",\n \"range\": {\n \"start_line\": 84,\n \"end_line\": 86,\n \"start_column\": null,\n \"end_column\": >null\n },\n \"content\": \" public void innerMethod() {\\n System.out.println(\\\"Inner class method, value: \\\" + >value);\\n }\\n\",\n \"content_length\": 117\n}"
|
|
423
|
-
>}
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
## Development
|
|
427
|
-
|
|
428
|
-
For developers and contributors:
|
|
429
|
-
|
|
430
|
-
```bash
|
|
431
|
-
# Clone the repository
|
|
432
|
-
git clone https://github.com/aimasteracc/tree-sitter-analyzer.git
|
|
433
|
-
cd tree-sitter-analyzer
|
|
434
|
-
|
|
435
|
-
# Install development dependencies
|
|
436
|
-
uv sync
|
|
437
|
-
|
|
438
|
-
# Run tests
|
|
439
|
-
pytest tests/ -v
|
|
440
|
-
```
|
|
441
|
-
|
|
442
|
-
## License
|
|
443
|
-
|
|
444
|
-
MIT License
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
tree_sitter_analyzer/__init__.py,sha256=XEH63rciKeejwuvPKCWf332w3HSH_ZtqkX4QVzW5QPA,3003
|
|
2
|
-
tree_sitter_analyzer/__main__.py,sha256=25E8WFUzTFAYqwT5Pdlq6cn8Aa25ogHP3w_5ybbHbNc,317
|
|
3
|
-
tree_sitter_analyzer/api.py,sha256=-Np6khuxbzBA_T2FN-Z8WDEXz7260OcwKIMP3iz2Kaw,17870
|
|
4
|
-
tree_sitter_analyzer/cli_main.py,sha256=WTP77Shnaa9yTKy0bMVLUj2i3xtLbIaDDOlUYbS2cGc,9656
|
|
5
|
-
tree_sitter_analyzer/encoding_utils.py,sha256=bgzyec3Rm1oxyRpTmXS_B5GOcA6rU54YCPRxv-2Z3q0,15017
|
|
6
|
-
tree_sitter_analyzer/exceptions.py,sha256=s--JRYJXH8Ui7ChtWuMS4npM4V0-L3aW831xQO5v6RM,10219
|
|
7
|
-
tree_sitter_analyzer/file_handler.py,sha256=P2S0AOCeo1mzVj_gDrntCSWGt9E3cflSfaxsPRx2EPM,7620
|
|
8
|
-
tree_sitter_analyzer/java_analyzer.py,sha256=axYh_OUidqrSWbqpXwAXU327_zhx4VmIgORoUuTpVxM,8699
|
|
9
|
-
tree_sitter_analyzer/language_detector.py,sha256=KJfB8AMe9Kn0Y8hJyRRv7x3Onu5IvBGhoNI4gGKnEjM,12608
|
|
10
|
-
tree_sitter_analyzer/language_loader.py,sha256=okZeUmEeJo_OQJSYCfjzDf29-RuNM9K8-JNlFD18CMs,8296
|
|
11
|
-
tree_sitter_analyzer/models.py,sha256=2JZAQXM4nJVu7rfnsZFwpvPpv8fpk0POVHKCKeOMLMY,17039
|
|
12
|
-
tree_sitter_analyzer/output_manager.py,sha256=dh_yfAmvn-XuF7RP5DM5vnqHGRzBUDOsuiVvTjcaOwg,8769
|
|
13
|
-
tree_sitter_analyzer/query_loader.py,sha256=KrpNnf-plrtymDAfUF6ukw8ELtGWnqhikwPLW_z9vY8,10225
|
|
14
|
-
tree_sitter_analyzer/table_formatter.py,sha256=FpYywpJOkXv3FfHEDFSWjfP5ZFa1WJZ6QqN_H0YtUC4,18274
|
|
15
|
-
tree_sitter_analyzer/utils.py,sha256=mL-TexPDTmapE3x7UErVQEJjXWn613KibPbZwgTpkd0,8332
|
|
16
|
-
tree_sitter_analyzer/cli/__init__.py,sha256=zCYwQW0hKFfZ4w-qoSOnqVKZGtdZ-ziH60Ax0QBE2iQ,886
|
|
17
|
-
tree_sitter_analyzer/cli/__main__.py,sha256=Sa02Ye57FhkDVTlGrb6U3m9V6II_TIuyzoQIwZtBkZ0,254
|
|
18
|
-
tree_sitter_analyzer/cli/info_commands.py,sha256=B9fBryAJ2Ctt-wo8Tko86BKOfFCCBPhAWz9vz_3r1fs,4521
|
|
19
|
-
tree_sitter_analyzer/cli/commands/__init__.py,sha256=duw37uHXggCRf08vaGQeY4dy7krZrc7YpXBNmlzhSQw,722
|
|
20
|
-
tree_sitter_analyzer/cli/commands/advanced_command.py,sha256=aFxkvksJr7FtzKNJebS4SqCySjJQunUnp_7SVzeU29E,3521
|
|
21
|
-
tree_sitter_analyzer/cli/commands/base_command.py,sha256=GrKQg_bTZuvuaS_fdzxGbhOE6JC1bMddrVMBz-qe6yo,5845
|
|
22
|
-
tree_sitter_analyzer/cli/commands/default_command.py,sha256=lRy3WnCYZe3G4wpz4ZXyDc_wHByCHBhB0kdLdPJbKt0,601
|
|
23
|
-
tree_sitter_analyzer/cli/commands/partial_read_command.py,sha256=OnQVk5inXeF07ClsOrMvyw80aP__MbWJ0f1ZvPaAV7M,4807
|
|
24
|
-
tree_sitter_analyzer/cli/commands/query_command.py,sha256=Z3QFVD8pYauW7oUHr-X6zZqUM_GYfBXSNYdSqyEjHP8,3294
|
|
25
|
-
tree_sitter_analyzer/cli/commands/structure_command.py,sha256=rwG87-EIjiqRfaoKGhH3mNBtr7DL9E0qF311oKHvcvU,5171
|
|
26
|
-
tree_sitter_analyzer/cli/commands/summary_command.py,sha256=la0YEEYibmspHvIrvUSiNS45grEkHgaIC-XH1N5dIc8,3690
|
|
27
|
-
tree_sitter_analyzer/cli/commands/table_command.py,sha256=vehgW7nEIF5x_ghUHytdQX5pl7_uKO1Qwmwj4OjFFx0,9604
|
|
28
|
-
tree_sitter_analyzer/core/__init__.py,sha256=raWtpBZJFxo_G1q3WJxdzmcbQK0TqqDycm-GLrjv4OA,479
|
|
29
|
-
tree_sitter_analyzer/core/analysis_engine.py,sha256=5xwGRd-Blkyp3M4CIkFHbD6jULm3bbnv2Hn15fRyk-8,21256
|
|
30
|
-
tree_sitter_analyzer/core/cache_service.py,sha256=1TZm3YfyQJIhBAC-3GDmsMJBGsIVb9SFDYG74imZGlk,10836
|
|
31
|
-
tree_sitter_analyzer/core/engine.py,sha256=nUQa_-Gjx0QSpbvYT17Tpo1Gp5Us9O1ohSLw5z_0NTM,19688
|
|
32
|
-
tree_sitter_analyzer/core/parser.py,sha256=5MIP18Kx8jYgzkDOGsKXoN0aObNetbYjsLqGTkrhGNU,9733
|
|
33
|
-
tree_sitter_analyzer/core/query.py,sha256=ye9MV5zH4qnA1Zrut3pWgCt9DWVAtI4JjepNyMSr7Uw,17306
|
|
34
|
-
tree_sitter_analyzer/formatters/__init__.py,sha256=ILBoX4Fj2M8xdLuKsS0JIkhML0cNo7EziNWU8h--kfA,30
|
|
35
|
-
tree_sitter_analyzer/formatters/base_formatter.py,sha256=5nbjJVyAJq4RPJjnqRhrR0buW31eRxhvMccEDIUTD2c,6132
|
|
36
|
-
tree_sitter_analyzer/formatters/formatter_factory.py,sha256=_jw9Emd7t0vM3DroJwBxqPlNTpq2BDtUvE4juKOHlTI,2491
|
|
37
|
-
tree_sitter_analyzer/formatters/java_formatter.py,sha256=HmbQJgYsswg3whZ61p-M_CuHxg72yY-EtszOBVnjsw8,11285
|
|
38
|
-
tree_sitter_analyzer/formatters/python_formatter.py,sha256=Fz84SHDExP2nSx3Iq43XbbY8Z9dWYQj5zJS9cmPLysA,9898
|
|
39
|
-
tree_sitter_analyzer/interfaces/__init__.py,sha256=YrVFjBhhOkcJ4bRGmQnRBHwOSyPUsBLVy77Bc9eUYC8,303
|
|
40
|
-
tree_sitter_analyzer/interfaces/cli.py,sha256=hTAIFew7yq9a9ejWnyGnwFHqadzckWXT-EaX-Q-La7I,17832
|
|
41
|
-
tree_sitter_analyzer/interfaces/cli_adapter.py,sha256=0lxm8dQuzTohlXptFq2bZEjnL7YAmOnli2iN3C8V0TA,11461
|
|
42
|
-
tree_sitter_analyzer/interfaces/mcp_adapter.py,sha256=vZcZy5FRYrSjJkRvdyu28OtqoESwiXkTqH9Nv7irRqM,6515
|
|
43
|
-
tree_sitter_analyzer/interfaces/mcp_server.py,sha256=3zj02Ur00ceJvKSG5bkuxlU2bHLaiCWjW2367dNPlLM,16907
|
|
44
|
-
tree_sitter_analyzer/languages/__init__.py,sha256=MAZEb-ifvdttqAQts_n3Cj9jtMd1cyAtDgbEde63p4A,373
|
|
45
|
-
tree_sitter_analyzer/languages/java_plugin.py,sha256=2VdS2ZoNhd8q-Dqlc08vpfhoGqpN-vqEkRkFF4uuczE,46174
|
|
46
|
-
tree_sitter_analyzer/languages/python_plugin.py,sha256=to_mg-x4nJZO27i7geP5sTmHCLXiv2_gjFCCPB0ELZU,28839
|
|
47
|
-
tree_sitter_analyzer/mcp/__init__.py,sha256=QX4WA9HrxASLW1q-aVKhmXyONBy__2X9jOj9YctEj9Q,783
|
|
48
|
-
tree_sitter_analyzer/mcp/server.py,sha256=37dnVBM3Qm0k6jXh1DP7FgAOraJDo5MuDe-8s88qPYM,13086
|
|
49
|
-
tree_sitter_analyzer/mcp/resources/__init__.py,sha256=caWz1n3l22IaxBZ1plSjIUfroassWNNDRWEwEp1vaMw,1490
|
|
50
|
-
tree_sitter_analyzer/mcp/resources/code_file_resource.py,sha256=p3XrTAHPasl92f7mdiWnRv2nl338GPeKlYdCIzLyYqg,6541
|
|
51
|
-
tree_sitter_analyzer/mcp/resources/project_stats_resource.py,sha256=CkvfOSr7Bk6mJlJt-MkXw3kmUC0VAAsw8w1-AcGO0ek,19854
|
|
52
|
-
tree_sitter_analyzer/mcp/tools/__init__.py,sha256=MBX4-SX8gfUyEGs_BlsOD4toRosvw-rJt2ezD1HrSME,829
|
|
53
|
-
tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py,sha256=Bya1dsy4a-aTzyYSI32NDUgMbIVCFWpYXMtloGHx1V0,23448
|
|
54
|
-
tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py,sha256=xwXuy72FEfoY2TW6URddfdS9Ha_lq8_ZgG0UxC26mLM,8954
|
|
55
|
-
tree_sitter_analyzer/mcp/tools/base_tool.py,sha256=LpY_QPWbpm8ZGe3SPK7TIBFZMiwkUMpHa8zcswld2ag,1295
|
|
56
|
-
tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=m71g5RjNkBf-DxXhHGYsRsID5fYfDFs53-2bGZ_C4sQ,11097
|
|
57
|
-
tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=IUF7N5Je_rV88RkEVz5wet37PZLaDdzXoAC5j1xI3EI,14428
|
|
58
|
-
tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py,sha256=asH_2BLzT-ACLLampyHF61WFn5nSVKL94wE0mU-uui8,19635
|
|
59
|
-
tree_sitter_analyzer/mcp/utils/__init__.py,sha256=f1WkdJ3XNWgh2NDN0LGNdwk5O-ChqEvnOQ-mINlHPG8,3064
|
|
60
|
-
tree_sitter_analyzer/mcp/utils/error_handler.py,sha256=VXVutTKA8AvtP_yiX__gqkbsSmK8_pfH3rF_H7yFsVI,18012
|
|
61
|
-
tree_sitter_analyzer/plugins/__init__.py,sha256=HOxO8UVYexzkaxNTqKlWDXyrMy1cxnK7P-brQSh5WGU,12650
|
|
62
|
-
tree_sitter_analyzer/plugins/base.py,sha256=ixGtS5uKmMArofK1G6xtqbtOdDjbNCHhjIgVNVqIx4c,15968
|
|
63
|
-
tree_sitter_analyzer/plugins/java_plugin.py,sha256=9wAjLoj6uEsLupUz7l7xp5VppLG5TpapWpshJtmncjA,24137
|
|
64
|
-
tree_sitter_analyzer/plugins/javascript_plugin.py,sha256=7LfNfuA-ygl_M5PbJz-QPMf7mnmGYRfSqrFwujiVhuo,16031
|
|
65
|
-
tree_sitter_analyzer/plugins/manager.py,sha256=BjhdgNhS8ev2YtrG_awusNxmRXJSn6p5PraH5cLRhMk,12521
|
|
66
|
-
tree_sitter_analyzer/plugins/plugin_loader.py,sha256=KZYEJCUo1w3w83YWRIh2lI1TRoS0CDQAtXWhdKrrVjM,2478
|
|
67
|
-
tree_sitter_analyzer/plugins/python_plugin.py,sha256=hssiKuoRWefUwnaGBJNsfkplvMSfYm_VIfeWfBZ3bho,24055
|
|
68
|
-
tree_sitter_analyzer/plugins/registry.py,sha256=ifKlvD4IFcwcvKcAoIJRVlLel-pg6ey97i1Nx_uic7s,12048
|
|
69
|
-
tree_sitter_analyzer/queries/__init__.py,sha256=HavpqPqK5M4j8PjRWgkUm_9fTHqftDCHuz2zcG63Cc4,747
|
|
70
|
-
tree_sitter_analyzer/queries/java.py,sha256=hmaj7jKQ_m9nmOAnyiWQhzH-6g41xIi3fwt5ZTUTrQQ,12979
|
|
71
|
-
tree_sitter_analyzer/queries/javascript.py,sha256=TSe6uSHhBuQU0r2B8YBqpEYkU4q9CYRuTUqRK0WfM5o,4183
|
|
72
|
-
tree_sitter_analyzer/queries/python.py,sha256=V5MsKmI9A_FqAT2PKkrSL_Xp9bGKBUSpyVPoBmLxxWg,8018
|
|
73
|
-
tree_sitter_analyzer/queries/typescript.py,sha256=T8a9PwqqGkwLr8clVsAfu0IUIrLKH8u4sBqlU1Cz-FE,7138
|
|
74
|
-
tree_sitter_analyzer-0.1.3.dist-info/METADATA,sha256=E-0pK1kOkkAOPLmmHWHcTXUgUzje5VHUTZU6FYw-G6A,18344
|
|
75
|
-
tree_sitter_analyzer-0.1.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
76
|
-
tree_sitter_analyzer-0.1.3.dist-info/entry_points.txt,sha256=-XEh1racqnCT30mhKWMv5-bgX0iqd_J6b08lZS9J4eg,336
|
|
77
|
-
tree_sitter_analyzer-0.1.3.dist-info/RECORD,,
|
|
File without changes
|
{tree_sitter_analyzer-0.1.3.dist-info → tree_sitter_analyzer-0.3.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|