tree-sitter-analyzer 0.9.2__py3-none-any.whl → 0.9.4__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 +1 -1
- tree_sitter_analyzer/cli/commands/base_command.py +2 -3
- tree_sitter_analyzer/cli/commands/default_command.py +18 -18
- tree_sitter_analyzer/cli/commands/partial_read_command.py +139 -141
- tree_sitter_analyzer/cli/commands/query_command.py +92 -88
- tree_sitter_analyzer/cli/commands/table_command.py +235 -235
- tree_sitter_analyzer/cli/info_commands.py +121 -121
- tree_sitter_analyzer/cli_main.py +307 -303
- tree_sitter_analyzer/core/analysis_engine.py +584 -576
- tree_sitter_analyzer/core/cache_service.py +6 -5
- tree_sitter_analyzer/core/query.py +502 -502
- tree_sitter_analyzer/encoding_utils.py +6 -2
- tree_sitter_analyzer/exceptions.py +400 -406
- tree_sitter_analyzer/formatters/java_formatter.py +291 -291
- tree_sitter_analyzer/formatters/python_formatter.py +259 -259
- tree_sitter_analyzer/interfaces/cli.py +1 -1
- tree_sitter_analyzer/interfaces/cli_adapter.py +3 -3
- tree_sitter_analyzer/interfaces/mcp_server.py +426 -425
- tree_sitter_analyzer/language_detector.py +398 -398
- tree_sitter_analyzer/language_loader.py +224 -224
- tree_sitter_analyzer/languages/java_plugin.py +1202 -1202
- tree_sitter_analyzer/mcp/resources/project_stats_resource.py +559 -555
- tree_sitter_analyzer/mcp/server.py +30 -9
- tree_sitter_analyzer/mcp/tools/read_partial_tool.py +21 -4
- tree_sitter_analyzer/mcp/tools/table_format_tool.py +22 -4
- tree_sitter_analyzer/mcp/utils/error_handler.py +569 -567
- tree_sitter_analyzer/models.py +470 -470
- tree_sitter_analyzer/project_detector.py +330 -317
- tree_sitter_analyzer/security/__init__.py +22 -22
- tree_sitter_analyzer/security/boundary_manager.py +243 -237
- tree_sitter_analyzer/security/regex_checker.py +297 -292
- tree_sitter_analyzer/table_formatter.py +703 -652
- tree_sitter_analyzer/utils.py +53 -22
- {tree_sitter_analyzer-0.9.2.dist-info → tree_sitter_analyzer-0.9.4.dist-info}/METADATA +13 -13
- {tree_sitter_analyzer-0.9.2.dist-info → tree_sitter_analyzer-0.9.4.dist-info}/RECORD +37 -37
- {tree_sitter_analyzer-0.9.2.dist-info → tree_sitter_analyzer-0.9.4.dist-info}/WHEEL +0 -0
- {tree_sitter_analyzer-0.9.2.dist-info → tree_sitter_analyzer-0.9.4.dist-info}/entry_points.txt +0 -0
tree_sitter_analyzer/utils.py
CHANGED
|
@@ -14,7 +14,7 @@ from typing import Any
|
|
|
14
14
|
|
|
15
15
|
# Configure global logger
|
|
16
16
|
def setup_logger(
|
|
17
|
-
name: str = "tree_sitter_analyzer", level: int = logging.
|
|
17
|
+
name: str = "tree_sitter_analyzer", level: int = logging.WARNING
|
|
18
18
|
) -> logging.Logger:
|
|
19
19
|
"""Setup unified logger for the project"""
|
|
20
20
|
import os
|
|
@@ -49,9 +49,12 @@ def setup_logger(
|
|
|
49
49
|
)
|
|
50
50
|
file_handler.setFormatter(formatter)
|
|
51
51
|
logger.addHandler(file_handler)
|
|
52
|
-
except Exception:
|
|
53
|
-
# Never let logging configuration break runtime behavior
|
|
54
|
-
|
|
52
|
+
except Exception as e:
|
|
53
|
+
# Never let logging configuration break runtime behavior; log to stderr if possible
|
|
54
|
+
try:
|
|
55
|
+
sys.stderr.write(f"[logging_setup] file handler init skipped: {e}\n")
|
|
56
|
+
except Exception:
|
|
57
|
+
pass
|
|
55
58
|
|
|
56
59
|
logger.setLevel(level)
|
|
57
60
|
|
|
@@ -107,10 +110,18 @@ def setup_safe_logging_shutdown() -> None:
|
|
|
107
110
|
try:
|
|
108
111
|
handler.close()
|
|
109
112
|
logger.removeHandler(handler)
|
|
110
|
-
except Exception:
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
113
|
+
except Exception as e:
|
|
114
|
+
try:
|
|
115
|
+
sys.stderr.write(
|
|
116
|
+
f"[logging_cleanup] handler close/remove skipped: {e}\n"
|
|
117
|
+
)
|
|
118
|
+
except Exception:
|
|
119
|
+
pass
|
|
120
|
+
except Exception as e:
|
|
121
|
+
try:
|
|
122
|
+
sys.stderr.write(f"[logging_cleanup] cleanup skipped: {e}\n")
|
|
123
|
+
except Exception:
|
|
124
|
+
pass
|
|
114
125
|
|
|
115
126
|
# Register cleanup function
|
|
116
127
|
atexit.register(cleanup_logging)
|
|
@@ -128,32 +139,44 @@ def log_info(message: str, *args: Any, **kwargs: Any) -> None:
|
|
|
128
139
|
"""Log info message"""
|
|
129
140
|
try:
|
|
130
141
|
logger.info(message, *args, **kwargs)
|
|
131
|
-
except (ValueError, OSError):
|
|
132
|
-
|
|
142
|
+
except (ValueError, OSError) as e:
|
|
143
|
+
try:
|
|
144
|
+
sys.stderr.write(f"[log_info] suppressed: {e}\n")
|
|
145
|
+
except Exception:
|
|
146
|
+
pass
|
|
133
147
|
|
|
134
148
|
|
|
135
149
|
def log_warning(message: str, *args: Any, **kwargs: Any) -> None:
|
|
136
150
|
"""Log warning message"""
|
|
137
151
|
try:
|
|
138
152
|
logger.warning(message, *args, **kwargs)
|
|
139
|
-
except (ValueError, OSError):
|
|
140
|
-
|
|
153
|
+
except (ValueError, OSError) as e:
|
|
154
|
+
try:
|
|
155
|
+
sys.stderr.write(f"[log_warning] suppressed: {e}\n")
|
|
156
|
+
except Exception:
|
|
157
|
+
pass
|
|
141
158
|
|
|
142
159
|
|
|
143
160
|
def log_error(message: str, *args: Any, **kwargs: Any) -> None:
|
|
144
161
|
"""Log error message"""
|
|
145
162
|
try:
|
|
146
163
|
logger.error(message, *args, **kwargs)
|
|
147
|
-
except (ValueError, OSError):
|
|
148
|
-
|
|
164
|
+
except (ValueError, OSError) as e:
|
|
165
|
+
try:
|
|
166
|
+
sys.stderr.write(f"[log_error] suppressed: {e}\n")
|
|
167
|
+
except Exception:
|
|
168
|
+
pass
|
|
149
169
|
|
|
150
170
|
|
|
151
171
|
def log_debug(message: str, *args: Any, **kwargs: Any) -> None:
|
|
152
172
|
"""Log debug message"""
|
|
153
173
|
try:
|
|
154
174
|
logger.debug(message, *args, **kwargs)
|
|
155
|
-
except (ValueError, OSError):
|
|
156
|
-
|
|
175
|
+
except (ValueError, OSError) as e:
|
|
176
|
+
try:
|
|
177
|
+
sys.stderr.write(f"[log_debug] suppressed: {e}\n")
|
|
178
|
+
except Exception:
|
|
179
|
+
pass
|
|
157
180
|
|
|
158
181
|
|
|
159
182
|
def suppress_output(func: Any) -> Any:
|
|
@@ -175,8 +198,13 @@ def suppress_output(func: Any) -> Any:
|
|
|
175
198
|
finally:
|
|
176
199
|
try:
|
|
177
200
|
sys.stdout.close()
|
|
178
|
-
except Exception:
|
|
179
|
-
|
|
201
|
+
except Exception as e:
|
|
202
|
+
try:
|
|
203
|
+
sys.stderr.write(
|
|
204
|
+
f"[suppress_output] stdout close suppressed: {e}\n"
|
|
205
|
+
)
|
|
206
|
+
except Exception:
|
|
207
|
+
pass
|
|
180
208
|
sys.stdout = old_stdout
|
|
181
209
|
|
|
182
210
|
return result
|
|
@@ -227,7 +255,7 @@ def create_performance_logger(name: str) -> logging.Logger:
|
|
|
227
255
|
formatter = logging.Formatter("%(asctime)s - PERF - %(message)s")
|
|
228
256
|
handler.setFormatter(formatter)
|
|
229
257
|
perf_logger.addHandler(handler)
|
|
230
|
-
perf_logger.setLevel(logging.
|
|
258
|
+
perf_logger.setLevel(logging.DEBUG) # Change to DEBUG level
|
|
231
259
|
|
|
232
260
|
return perf_logger
|
|
233
261
|
|
|
@@ -252,9 +280,12 @@ def log_performance(
|
|
|
252
280
|
else:
|
|
253
281
|
detail_str = str(details)
|
|
254
282
|
message += f" - {detail_str}"
|
|
255
|
-
perf_logger.
|
|
256
|
-
except (ValueError, OSError):
|
|
257
|
-
|
|
283
|
+
perf_logger.debug(message) # Change to DEBUG level
|
|
284
|
+
except (ValueError, OSError) as e:
|
|
285
|
+
try:
|
|
286
|
+
sys.stderr.write(f"[log_performance] suppressed: {e}\n")
|
|
287
|
+
except Exception:
|
|
288
|
+
pass
|
|
258
289
|
|
|
259
290
|
|
|
260
291
|
def setup_performance_logger() -> logging.Logger:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tree-sitter-analyzer
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.4
|
|
4
4
|
Summary: Extensible multi-language code analyzer framework using Tree-sitter with dynamic plugin architecture
|
|
5
5
|
Project-URL: Homepage, https://github.com/aimasteracc/tree-sitter-analyzer
|
|
6
6
|
Project-URL: Documentation, https://github.com/aimasteracc/tree-sitter-analyzer#readme
|
|
@@ -58,30 +58,30 @@ Requires-Dist: isort>=5.13.0; extra == 'dev'
|
|
|
58
58
|
Requires-Dist: memory-profiler>=0.61.0; extra == 'dev'
|
|
59
59
|
Requires-Dist: mypy>=1.17.0; extra == 'dev'
|
|
60
60
|
Requires-Dist: pre-commit>=3.0.0; extra == 'dev'
|
|
61
|
-
Requires-Dist: psutil
|
|
61
|
+
Requires-Dist: psutil<6,>=5.9.6; extra == 'dev'
|
|
62
62
|
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'dev'
|
|
63
63
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
64
64
|
Requires-Dist: pytest-mock>=3.14.1; extra == 'dev'
|
|
65
65
|
Requires-Dist: pytest>=8.4.1; extra == 'dev'
|
|
66
|
-
Requires-Dist: ruff>=0.
|
|
66
|
+
Requires-Dist: ruff>=0.5.0; extra == 'dev'
|
|
67
67
|
Requires-Dist: types-psutil>=5.9.0; extra == 'dev'
|
|
68
68
|
Provides-Extra: full
|
|
69
|
-
Requires-Dist: anyio>=4.
|
|
69
|
+
Requires-Dist: anyio>=4.0.0; extra == 'full'
|
|
70
70
|
Requires-Dist: black>=24.0.0; extra == 'full'
|
|
71
|
-
Requires-Dist: httpx
|
|
71
|
+
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == 'full'
|
|
72
72
|
Requires-Dist: isort>=5.13.0; extra == 'full'
|
|
73
73
|
Requires-Dist: mcp>=1.12.2; extra == 'full'
|
|
74
74
|
Requires-Dist: memory-profiler>=0.61.0; extra == 'full'
|
|
75
75
|
Requires-Dist: mypy>=1.17.0; extra == 'full'
|
|
76
76
|
Requires-Dist: pre-commit>=3.0.0; extra == 'full'
|
|
77
|
-
Requires-Dist: psutil
|
|
78
|
-
Requires-Dist: pydantic-settings>=2.
|
|
79
|
-
Requires-Dist: pydantic>=2.
|
|
77
|
+
Requires-Dist: psutil<6,>=5.9.6; extra == 'full'
|
|
78
|
+
Requires-Dist: pydantic-settings>=2.2.1; extra == 'full'
|
|
79
|
+
Requires-Dist: pydantic>=2.5.0; extra == 'full'
|
|
80
80
|
Requires-Dist: pytest-asyncio>=1.1.0; extra == 'full'
|
|
81
81
|
Requires-Dist: pytest-cov>=4.0.0; extra == 'full'
|
|
82
82
|
Requires-Dist: pytest-mock>=3.14.1; extra == 'full'
|
|
83
83
|
Requires-Dist: pytest>=8.4.1; extra == 'full'
|
|
84
|
-
Requires-Dist: ruff>=0.
|
|
84
|
+
Requires-Dist: ruff>=0.5.0; extra == 'full'
|
|
85
85
|
Requires-Dist: tree-sitter-c>=0.20.0; extra == 'full'
|
|
86
86
|
Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'full'
|
|
87
87
|
Requires-Dist: tree-sitter-go>=0.20.0; extra == 'full'
|
|
@@ -98,11 +98,11 @@ Requires-Dist: tree-sitter-java>=0.23.5; extra == 'java'
|
|
|
98
98
|
Provides-Extra: javascript
|
|
99
99
|
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'javascript'
|
|
100
100
|
Provides-Extra: mcp
|
|
101
|
-
Requires-Dist: anyio>=4.
|
|
102
|
-
Requires-Dist: httpx
|
|
101
|
+
Requires-Dist: anyio>=4.0.0; extra == 'mcp'
|
|
102
|
+
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == 'mcp'
|
|
103
103
|
Requires-Dist: mcp>=1.12.2; extra == 'mcp'
|
|
104
|
-
Requires-Dist: pydantic-settings>=2.
|
|
105
|
-
Requires-Dist: pydantic>=2.
|
|
104
|
+
Requires-Dist: pydantic-settings>=2.2.1; extra == 'mcp'
|
|
105
|
+
Requires-Dist: pydantic>=2.5.0; extra == 'mcp'
|
|
106
106
|
Provides-Extra: popular
|
|
107
107
|
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'popular'
|
|
108
108
|
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'popular'
|
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
tree_sitter_analyzer/__init__.py,sha256=
|
|
1
|
+
tree_sitter_analyzer/__init__.py,sha256=ElX-1qL0OI5EuUf2XVkdqvLuWwRgTVYDGDnyeuLUBww,3067
|
|
2
2
|
tree_sitter_analyzer/__main__.py,sha256=Zl79tpe4UaMu-7yeztc06tgP0CVMRnvGgas4ZQP5SCs,228
|
|
3
3
|
tree_sitter_analyzer/api.py,sha256=naRtGuZ27AIVfn6Rid0zQcHDI71UpO9Nh4NQM9JyD3c,16954
|
|
4
|
-
tree_sitter_analyzer/cli_main.py,sha256=
|
|
5
|
-
tree_sitter_analyzer/encoding_utils.py,sha256=
|
|
6
|
-
tree_sitter_analyzer/exceptions.py,sha256=
|
|
4
|
+
tree_sitter_analyzer/cli_main.py,sha256=R03sPnWD_39u1wxpr7nd97EHe8jlp2npViiPbfm_cHo,9644
|
|
5
|
+
tree_sitter_analyzer/encoding_utils.py,sha256=pe9tiLJd_xJr-XdxtDNnXfWXyiIJmxVdwtkLwtmk5eM,14641
|
|
6
|
+
tree_sitter_analyzer/exceptions.py,sha256=AZryCQyKXekAg8lQZd3zqULnjhCKovBNNpnUlNGDhcI,11615
|
|
7
7
|
tree_sitter_analyzer/file_handler.py,sha256=nUD17QIdOJ2bnXekuo-QzGQFv0f2rxCSJi-zWeQFSAs,6636
|
|
8
|
-
tree_sitter_analyzer/language_detector.py,sha256=
|
|
9
|
-
tree_sitter_analyzer/language_loader.py,sha256=
|
|
10
|
-
tree_sitter_analyzer/models.py,sha256=
|
|
8
|
+
tree_sitter_analyzer/language_detector.py,sha256=pn3nQClo8b_Ar8dS5X3hq9_t5IIlIcizIC0twMaowU4,11693
|
|
9
|
+
tree_sitter_analyzer/language_loader.py,sha256=P1vOa9NR_iVCpawpjziP1uQTX1uL6bgzTb6F9tw4pAc,7900
|
|
10
|
+
tree_sitter_analyzer/models.py,sha256=SrPxiRvlcH0uyOao47tzK-rVqK82JkmmxdU6yJlucSc,16014
|
|
11
11
|
tree_sitter_analyzer/output_manager.py,sha256=saZ8Ss6PhUJgjjwviLgrePFL7CCLMixxdKtdrpuFgHM,8146
|
|
12
|
-
tree_sitter_analyzer/project_detector.py,sha256=
|
|
12
|
+
tree_sitter_analyzer/project_detector.py,sha256=VdZTnY25M2fJTA3MLUzPIjXJtOCPATKlkshEF3eUV7U,9444
|
|
13
13
|
tree_sitter_analyzer/query_loader.py,sha256=jcJc6_kIMeZINfTVGuiEmDii9LViP_pbJfg4A9phJY4,9863
|
|
14
|
-
tree_sitter_analyzer/table_formatter.py,sha256=
|
|
15
|
-
tree_sitter_analyzer/utils.py,sha256=
|
|
14
|
+
tree_sitter_analyzer/table_formatter.py,sha256=asfCEPXLFgcsFlYzuHMB7ZbIWilm4aY707hAW5yIWak,27342
|
|
15
|
+
tree_sitter_analyzer/utils.py,sha256=K0YvNoeShItrGEIXIb04rm3T8a4Ua__dsXjXK_pJvBc,9912
|
|
16
16
|
tree_sitter_analyzer/cli/__init__.py,sha256=O_3URpbdu5Ilb2-r48LjbZuWtOWQu_BhL3pa6C0G3Bk,871
|
|
17
17
|
tree_sitter_analyzer/cli/__main__.py,sha256=Xq8o8-0dPnMDU9WZqmqhzr98rx8rvoffTUHAkAwl-L8,218
|
|
18
|
-
tree_sitter_analyzer/cli/info_commands.py,sha256=
|
|
18
|
+
tree_sitter_analyzer/cli/info_commands.py,sha256=Eev5iG9upn9id1nE2W7Z6-Q5s-o2pDDnMvoyZxh8nmg,4284
|
|
19
19
|
tree_sitter_analyzer/cli/commands/__init__.py,sha256=jpcpM1ptLuxLMBDUv1y_a87k8RAw1otFzeYpWtXvz3Y,671
|
|
20
20
|
tree_sitter_analyzer/cli/commands/advanced_command.py,sha256=xDZI4zKTMHNdf7fc_QN0eAQ8a5MnRb5DJ29ERLBDUQs,3424
|
|
21
|
-
tree_sitter_analyzer/cli/commands/base_command.py,sha256=
|
|
22
|
-
tree_sitter_analyzer/cli/commands/default_command.py,sha256=
|
|
23
|
-
tree_sitter_analyzer/cli/commands/partial_read_command.py,sha256=
|
|
24
|
-
tree_sitter_analyzer/cli/commands/query_command.py,sha256=
|
|
21
|
+
tree_sitter_analyzer/cli/commands/base_command.py,sha256=o_xjKhn2J5bbGeNC980tALozT1WlsttI0owhLbV2hDM,6597
|
|
22
|
+
tree_sitter_analyzer/cli/commands/default_command.py,sha256=RAR_eaOK3EndIqU7QL5UAn44mwyhItTN7aUaKL1WmSc,524
|
|
23
|
+
tree_sitter_analyzer/cli/commands/partial_read_command.py,sha256=RGZsEBybu6PhOQDHBXuhs6l4ZlDcFaxj2bNOvSqKY80,4605
|
|
24
|
+
tree_sitter_analyzer/cli/commands/query_command.py,sha256=vpvCKxKGOaOHiNV_7UjW7JV5tAGAAx7AB9sV2EbLEyc,3612
|
|
25
25
|
tree_sitter_analyzer/cli/commands/structure_command.py,sha256=0iJwjOgtW838hXleXogWhbu6eQFfrLR1QgKe5PFBqvU,5220
|
|
26
26
|
tree_sitter_analyzer/cli/commands/summary_command.py,sha256=02WA3sOzfT83FVT6sW7nK04zVcZ9Qj_1S0WloqlTnFk,3602
|
|
27
|
-
tree_sitter_analyzer/cli/commands/table_command.py,sha256=
|
|
27
|
+
tree_sitter_analyzer/cli/commands/table_command.py,sha256=GvGpLZ_YwE5syufNMfvjPrzwt-bXUtAF7EoOQ0Dr_O0,9441
|
|
28
28
|
tree_sitter_analyzer/core/__init__.py,sha256=VlYOy1epW16vjaVd__knESewnU0sfXF9a4hjrFxiSEE,440
|
|
29
|
-
tree_sitter_analyzer/core/analysis_engine.py,sha256=
|
|
30
|
-
tree_sitter_analyzer/core/cache_service.py,sha256=
|
|
29
|
+
tree_sitter_analyzer/core/analysis_engine.py,sha256=CyNMMC10YgdJWIY9tdjkaariIyO-UV_yFVPFsewGzaA,18897
|
|
30
|
+
tree_sitter_analyzer/core/cache_service.py,sha256=0oZGuTpeHBKYNdnqAOVi6VlQukYMIHncz2pbVfNpSqE,9762
|
|
31
31
|
tree_sitter_analyzer/core/engine.py,sha256=VFXGowDj6EfjFSh2MQDkQIc-4ISXaOg38n4lUhVY5Os,18721
|
|
32
32
|
tree_sitter_analyzer/core/parser.py,sha256=qT3yIlTRdod4tf_2o1hU_B-GYGukyM2BtaFxzSoxois,9293
|
|
33
|
-
tree_sitter_analyzer/core/query.py,sha256=
|
|
33
|
+
tree_sitter_analyzer/core/query.py,sha256=UhQxUmQitFobe2YM7Ifhi3X2WdHVb02KzeBunueYJ4I,16397
|
|
34
34
|
tree_sitter_analyzer/formatters/__init__.py,sha256=yVb4HF_4EEPRwTf3y3-vM2NllrhykG3zlvQhN-6dB4c,31
|
|
35
35
|
tree_sitter_analyzer/formatters/base_formatter.py,sha256=Uv6uVgUKwbBn6of26bnvr4u6CmX2ka1a405VL17CGFU,5763
|
|
36
36
|
tree_sitter_analyzer/formatters/formatter_factory.py,sha256=mCnAbEHycoSttSuF4dU78hzcxyg-h57bo0_bj00zw58,2069
|
|
37
|
-
tree_sitter_analyzer/formatters/java_formatter.py,sha256=
|
|
38
|
-
tree_sitter_analyzer/formatters/python_formatter.py,sha256=
|
|
37
|
+
tree_sitter_analyzer/formatters/java_formatter.py,sha256=0jxKfrWtsr_K2VG1zW0LH2E6w6nfpIhcXTfIyWw3Jmc,11163
|
|
38
|
+
tree_sitter_analyzer/formatters/python_formatter.py,sha256=gHP4OtEwvv2ASbmTbyZNvQSP5r4Et4-sAMWr36y0k1Y,9840
|
|
39
39
|
tree_sitter_analyzer/interfaces/__init__.py,sha256=OcT7eNIU0ZXvAeAXbhDqRG3puxn93HeSLqplwj6npTM,271
|
|
40
|
-
tree_sitter_analyzer/interfaces/cli.py,sha256=
|
|
41
|
-
tree_sitter_analyzer/interfaces/cli_adapter.py,sha256=
|
|
40
|
+
tree_sitter_analyzer/interfaces/cli.py,sha256=XYqkCbRyf_ygA1_dlCuvyFSZKWvEBjpu7C-9Ssc__Mw,16840
|
|
41
|
+
tree_sitter_analyzer/interfaces/cli_adapter.py,sha256=LAR5GDwirJSnNB5rP5aVxqcra6diFUwzBzyLU7RUrrQ,10770
|
|
42
42
|
tree_sitter_analyzer/interfaces/mcp_adapter.py,sha256=DJugCRVL-AR6gJRaRrBW5JVXRvfl_iiRjupcnsb0_sE,7111
|
|
43
|
-
tree_sitter_analyzer/interfaces/mcp_server.py,sha256
|
|
43
|
+
tree_sitter_analyzer/interfaces/mcp_server.py,sha256=dUFn1CyO2jLa_y5gGOGE-f0sLGAbjgp738uy5-aAphI,16510
|
|
44
44
|
tree_sitter_analyzer/languages/__init__.py,sha256=VTXxJgVjHJAciLhX0zzXOS4EygZMtebeYUbi_0z6fGw,340
|
|
45
|
-
tree_sitter_analyzer/languages/java_plugin.py,sha256=
|
|
45
|
+
tree_sitter_analyzer/languages/java_plugin.py,sha256=ZTtDgyUdv-b9fFvCMEL3xS-yr0rfMueKkVleDybisag,47233
|
|
46
46
|
tree_sitter_analyzer/languages/javascript_plugin.py,sha256=k14kHfi5II9MRTsVuy0NQq5l2KZYncCnM1Q6T1c5q_U,15844
|
|
47
47
|
tree_sitter_analyzer/languages/python_plugin.py,sha256=MJ03F_Nv-nmInIkEFmPyEXYhyGbLHyr5kCbj2taEDYk,29144
|
|
48
48
|
tree_sitter_analyzer/mcp/__init__.py,sha256=Dj4aqt_6inDKQ1xmA6DNMNDQBHzToqBjSWazdAWZgCY,944
|
|
49
|
-
tree_sitter_analyzer/mcp/server.py,sha256=
|
|
49
|
+
tree_sitter_analyzer/mcp/server.py,sha256=e_Enu0MoEuWISFW0XQxcU-_db5jwCQY5txfVkqTO-7U,24788
|
|
50
50
|
tree_sitter_analyzer/mcp/resources/__init__.py,sha256=SWnK8liTQkuQXlVgyRP9mf5HzpqmqohShrC98xlNnDc,1389
|
|
51
51
|
tree_sitter_analyzer/mcp/resources/code_file_resource.py,sha256=POhQ1xPMiGBVVm6AfOQNKM29svDLvlGLA97ZPQgVoHw,6253
|
|
52
|
-
tree_sitter_analyzer/mcp/resources/project_stats_resource.py,sha256=
|
|
52
|
+
tree_sitter_analyzer/mcp/resources/project_stats_resource.py,sha256=V5-daZ99SU4rOt7qLk9GmhkzdXJpEINBobNlT14ojYY,19441
|
|
53
53
|
tree_sitter_analyzer/mcp/tools/__init__.py,sha256=u7JrSLwE95y50mfjSus6HRdtdhkNbVrW8jP4AooawEU,762
|
|
54
54
|
tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py,sha256=cVBhq4_KxwcqdmA5s9iZLH4YDy7T_TKLNNdqqaGKnFU,27369
|
|
55
55
|
tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py,sha256=mssed7bEfGeGxW4mOf7dg8BDS1oqHLolIBNX9DaZ3DM,8997
|
|
56
56
|
tree_sitter_analyzer/mcp/tools/base_tool.py,sha256=FVSMgKIliQ5EBVQEfjYwWeqzWt9OqOFDr3dyACIDxig,1210
|
|
57
|
-
tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=
|
|
58
|
-
tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=
|
|
57
|
+
tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=MkAeXc-n-8fxRGtE3RQ_yZOPQ1lzdUppVFKrRzBPogU,11790
|
|
58
|
+
tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=flFEcDOozJSJOtsQVHsk5eTYsutBi_T_2ft9XUpceSM,15896
|
|
59
59
|
tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py,sha256=RSbztW_b07DL5e1an4BE--snX744v4KmlRGab5bGj6U,21677
|
|
60
60
|
tree_sitter_analyzer/mcp/utils/__init__.py,sha256=hibcoJc9PEetXqPIpvwHw1cpr1rabAm0QQaDZpxvA_g,2956
|
|
61
|
-
tree_sitter_analyzer/mcp/utils/error_handler.py,sha256=
|
|
61
|
+
tree_sitter_analyzer/mcp/utils/error_handler.py,sha256=msrQHX67K3vhJsEc3OPRz5mmWU_yoHz55Lnxy0IZuy4,18404
|
|
62
62
|
tree_sitter_analyzer/plugins/__init__.py,sha256=ITE9bTz7NO4axnn8g5Z-1_ydhSLT0RnY6Y1J9OhUP3E,10326
|
|
63
63
|
tree_sitter_analyzer/plugins/base.py,sha256=FMRAOtjtDutNV8RnB6cmFgdvcjxKRAbrrzqldBBT1yk,17167
|
|
64
64
|
tree_sitter_analyzer/plugins/manager.py,sha256=PyEY3jeuCBpDVqguWhaAu7nzUZM17_pI6wml2e0Hamo,12535
|
|
@@ -67,11 +67,11 @@ tree_sitter_analyzer/queries/java.py,sha256=NZTSzFADlGrm3MD0oIkOdkN_6wP2pGZpNs0R
|
|
|
67
67
|
tree_sitter_analyzer/queries/javascript.py,sha256=pnXrgISwDE5GhPHDbUKEGI3thyLmebTeQt-l_-x4qT8,3962
|
|
68
68
|
tree_sitter_analyzer/queries/python.py,sha256=L33KRUyV3sAvA3_HFkPyGgtiq0ygSpNY_n2YojodPlc,7570
|
|
69
69
|
tree_sitter_analyzer/queries/typescript.py,sha256=eersyAF7TladuCWa8WE_-cO9YTF1LUSjLIl-tk2fZDo,6708
|
|
70
|
-
tree_sitter_analyzer/security/__init__.py,sha256=
|
|
71
|
-
tree_sitter_analyzer/security/boundary_manager.py,sha256=
|
|
72
|
-
tree_sitter_analyzer/security/regex_checker.py,sha256=
|
|
70
|
+
tree_sitter_analyzer/security/__init__.py,sha256=ZTqTt24hsljCpTXAZpJC57L7MU5lJLTf_XnlvEzXwEE,623
|
|
71
|
+
tree_sitter_analyzer/security/boundary_manager.py,sha256=t8nepTsymX7pEkdjJyUe8oo3w261hhngO1lNUip3vio,7751
|
|
72
|
+
tree_sitter_analyzer/security/regex_checker.py,sha256=jWK6H8PTPgzbwRPfK_RZ8bBTS6rtEbgjY5vr3YWjQ_U,9616
|
|
73
73
|
tree_sitter_analyzer/security/validator.py,sha256=UPAPcrnmI2mNzbYOm0MabnJMGllK6HlOQ9KX-2bRfgU,8986
|
|
74
|
-
tree_sitter_analyzer-0.9.
|
|
75
|
-
tree_sitter_analyzer-0.9.
|
|
76
|
-
tree_sitter_analyzer-0.9.
|
|
77
|
-
tree_sitter_analyzer-0.9.
|
|
74
|
+
tree_sitter_analyzer-0.9.4.dist-info/METADATA,sha256=IglrmBD56JridPImSy_hzRfPFjyfxbrkSj5gHqAi7do,15909
|
|
75
|
+
tree_sitter_analyzer-0.9.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
76
|
+
tree_sitter_analyzer-0.9.4.dist-info/entry_points.txt,sha256=U4tfLGXgCWubKm2PyEb3zxhQ2pm7zVotMyfyS0CodD8,486
|
|
77
|
+
tree_sitter_analyzer-0.9.4.dist-info/RECORD,,
|
|
File without changes
|
{tree_sitter_analyzer-0.9.2.dist-info → tree_sitter_analyzer-0.9.4.dist-info}/entry_points.txt
RENAMED
|
File without changes
|