tree-sitter-analyzer 1.6.1__py3-none-any.whl → 1.6.2__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/formatters/formatter_factory.py +3 -0
- tree_sitter_analyzer/formatters/typescript_formatter.py +432 -0
- tree_sitter_analyzer/language_detector.py +1 -1
- tree_sitter_analyzer/languages/typescript_plugin.py +1553 -0
- tree_sitter_analyzer/queries/javascript.py +1 -1
- tree_sitter_analyzer/queries/typescript.py +630 -10
- {tree_sitter_analyzer-1.6.1.dist-info → tree_sitter_analyzer-1.6.2.dist-info}/METADATA +10 -10
- {tree_sitter_analyzer-1.6.1.dist-info → tree_sitter_analyzer-1.6.2.dist-info}/RECORD +11 -9
- {tree_sitter_analyzer-1.6.1.dist-info → tree_sitter_analyzer-1.6.2.dist-info}/WHEEL +0 -0
- {tree_sitter_analyzer-1.6.1.dist-info → tree_sitter_analyzer-1.6.2.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tree-sitter-analyzer
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.2
|
|
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
|
|
@@ -165,11 +165,11 @@ Description-Content-Type: text/markdown
|
|
|
165
165
|
|
|
166
166
|
[](https://python.org)
|
|
167
167
|
[](LICENSE)
|
|
168
|
-
[](#quality-assurance)
|
|
169
|
+
[](#quality-assurance)
|
|
170
170
|
[](#quality-assurance)
|
|
171
171
|
[](https://pypi.org/project/tree-sitter-analyzer/)
|
|
172
|
-
[](https://github.com/aimasteracc/tree-sitter-analyzer/releases)
|
|
173
173
|
[](https://github.com/aimasteracc/tree-sitter-analyzer)
|
|
174
174
|
|
|
175
175
|
## 🚀 Enterprise-Grade Code Analysis Tool for the AI Era
|
|
@@ -220,12 +220,12 @@ Tree-sitter Analyzer is an enterprise-grade code analysis tool designed for the
|
|
|
220
220
|
- **Java** - Full support (1103 lines of plugin code, 73% coverage), including Spring, JPA frameworks
|
|
221
221
|
- **Python** - Full support (584 lines of plugin code, 63% coverage), including type annotations, decorators
|
|
222
222
|
- **JavaScript** - Enterprise-grade support (1445 lines of plugin code, 68% coverage), including ES6+, React/Vue/Angular, JSX
|
|
223
|
-
- **TypeScript** -
|
|
223
|
+
- **TypeScript** - **Complete support** (1553 lines of plugin code, 29% coverage), including interfaces, types, decorators, TSX/JSX, framework detection
|
|
224
224
|
- **More Languages** - Basic support for C/C++, Rust, Go
|
|
225
225
|
|
|
226
226
|
### 🏆 Production Ready
|
|
227
|
-
- **
|
|
228
|
-
- **
|
|
227
|
+
- **2,046 Tests** - 100% pass rate, enterprise-grade quality assurance
|
|
228
|
+
- **69.67% Coverage** - Comprehensive test suite
|
|
229
229
|
- **Cross-Platform Support** - Full compatibility with Windows, macOS, Linux
|
|
230
230
|
- **Continuous Maintenance** - Active development and community support
|
|
231
231
|
|
|
@@ -346,7 +346,7 @@ rg --version
|
|
|
346
346
|
4. Start using! Tell the AI:
|
|
347
347
|
```
|
|
348
348
|
Please set the project root directory to: /path/to/your/project
|
|
349
|
-
```
|
|
349
|
+
```
|
|
350
350
|
|
|
351
351
|
**Other AI Clients:**
|
|
352
352
|
- **Cursor**: Built-in MCP support, refer to Cursor documentation for configuration
|
|
@@ -711,7 +711,7 @@ uv run python -m tree_sitter_analyzer --show-query-languages
|
|
|
711
711
|
- **Java** - Full support (1103 lines of plugin), including Spring, JPA frameworks
|
|
712
712
|
- **Python** - Full support (584 lines of plugin), including type annotations, decorators
|
|
713
713
|
- **JavaScript** - Enterprise-grade support (1445 lines of plugin), including ES6+, React/Vue/Angular, JSX
|
|
714
|
-
- **TypeScript** -
|
|
714
|
+
- **TypeScript** - **Complete support** (1553 lines of plugin), including interfaces, types, decorators, TSX/JSX, framework detection
|
|
715
715
|
- **C/C++, Rust, Go** - Basic support
|
|
716
716
|
|
|
717
717
|
### 📁 Advanced File Search
|
|
@@ -784,7 +784,7 @@ uv run pytest tests/test_mcp_server_initialization.py -v
|
|
|
784
784
|
**Verification Environment:**
|
|
785
785
|
- Operating Systems: Windows 10, macOS, Linux
|
|
786
786
|
- Python Version: 3.10+
|
|
787
|
-
- Project Version: tree-sitter-analyzer v1.6.
|
|
787
|
+
- Project Version: tree-sitter-analyzer v1.6.2
|
|
788
788
|
- Test Files: BigService.java (1419 lines), sample.py (256 lines), MultiClass.java (54 lines)
|
|
789
789
|
|
|
790
790
|
---
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tree_sitter_analyzer/__init__.py,sha256=
|
|
1
|
+
tree_sitter_analyzer/__init__.py,sha256=bojfLzG3_MfS-hOGox1Wg-pbQRy9wWsS6jwLgx-UGBY,3067
|
|
2
2
|
tree_sitter_analyzer/__main__.py,sha256=Zl79tpe4UaMu-7yeztc06tgP0CVMRnvGgas4ZQP5SCs,228
|
|
3
3
|
tree_sitter_analyzer/api.py,sha256=jzwID6fJNdhQkJP3D0lzBVPhOnGIN4tyyMtmRYdK9zI,22753
|
|
4
4
|
tree_sitter_analyzer/cli_main.py,sha256=BuaM-L-Jx3G49qvAUOQVsw0wEM-X0UzPaRszRZBist4,10374
|
|
@@ -6,7 +6,7 @@ tree_sitter_analyzer/constants.py,sha256=7w3sLFt_6vPaKsxzrc21K1rOKpLGMyyA1203nu3
|
|
|
6
6
|
tree_sitter_analyzer/encoding_utils.py,sha256=BgdBKnW20EueEFJT-aLrQI38bTOcR5rWQ3Dpa-ALszA,14805
|
|
7
7
|
tree_sitter_analyzer/exceptions.py,sha256=AZryCQyKXekAg8lQZd3zqULnjhCKovBNNpnUlNGDhcI,11615
|
|
8
8
|
tree_sitter_analyzer/file_handler.py,sha256=mtWz-DE4yfmak347s0e20xFNy3qddcek58Enom5GlZQ,6689
|
|
9
|
-
tree_sitter_analyzer/language_detector.py,sha256=
|
|
9
|
+
tree_sitter_analyzer/language_detector.py,sha256=5asuTklAmvW7hDmffMRegCYJh6aPR-VWLA-5qOLX7Z8,11737
|
|
10
10
|
tree_sitter_analyzer/language_loader.py,sha256=gBUXGPTv91bRNs_urH23wzNKgh7ki6KkvpQ7iNPe3Rw,8922
|
|
11
11
|
tree_sitter_analyzer/models.py,sha256=eZSVTl4s0rnqG21nyCTaJhyhDw1HZkkpMRKCi2QRkL0,20404
|
|
12
12
|
tree_sitter_analyzer/output_manager.py,sha256=tMEyjGeczqphcLoHdqxgyW8KaG8w6JF-fhsIibNQiCU,8260
|
|
@@ -39,10 +39,11 @@ tree_sitter_analyzer/core/query_filter.py,sha256=PvGztAZFooFNZe6iHNmbg6RUNtMvq6f
|
|
|
39
39
|
tree_sitter_analyzer/core/query_service.py,sha256=j9v3w2j3axhxzFEbZLovDNT2h6kF4PWbJVL_PmKl3ho,5542
|
|
40
40
|
tree_sitter_analyzer/formatters/__init__.py,sha256=yVb4HF_4EEPRwTf3y3-vM2NllrhykG3zlvQhN-6dB4c,31
|
|
41
41
|
tree_sitter_analyzer/formatters/base_formatter.py,sha256=XZwZ0klyCnmNkpWnMP7dy0XGaHForjE-BnBt1XZoQE8,5901
|
|
42
|
-
tree_sitter_analyzer/formatters/formatter_factory.py,sha256
|
|
42
|
+
tree_sitter_analyzer/formatters/formatter_factory.py,sha256=4fsSMxhBmGWFmPjcuwkTvgiIWWFireaOaChYi1UNnSM,2381
|
|
43
43
|
tree_sitter_analyzer/formatters/java_formatter.py,sha256=0jxKfrWtsr_K2VG1zW0LH2E6w6nfpIhcXTfIyWw3Jmc,11163
|
|
44
44
|
tree_sitter_analyzer/formatters/javascript_formatter.py,sha256=oPHoOz3Qi1tatPzqPADVAhKirxAeghwe_-wfyAntc4o,17419
|
|
45
45
|
tree_sitter_analyzer/formatters/python_formatter.py,sha256=4DGiQNdUFqfRcGmMgkVHCEvvKIvRdvYKdRZ8vp8m5ZE,15318
|
|
46
|
+
tree_sitter_analyzer/formatters/typescript_formatter.py,sha256=mMl6dWSa2EQny_k_gozzyMYnyZq85WJQuJ61kbOSd2o,19402
|
|
46
47
|
tree_sitter_analyzer/interfaces/__init__.py,sha256=OcT7eNIU0ZXvAeAXbhDqRG3puxn93HeSLqplwj6npTM,271
|
|
47
48
|
tree_sitter_analyzer/interfaces/cli.py,sha256=c6CGfF6cgOwgpBimHV1myZ5JfNqil5tCVBOfG5-zijU,17100
|
|
48
49
|
tree_sitter_analyzer/interfaces/cli_adapter.py,sha256=8j3xL3k6wWrGQCq0KCntqbvSxKy931sT5M96pYhkn9c,11402
|
|
@@ -52,6 +53,7 @@ tree_sitter_analyzer/languages/__init__.py,sha256=VTXxJgVjHJAciLhX0zzXOS4EygZMte
|
|
|
52
53
|
tree_sitter_analyzer/languages/java_plugin.py,sha256=G90_LlKdHtZNOPYu8MGBbgw6qkTiwd_QJu0xID3LMPc,50509
|
|
53
54
|
tree_sitter_analyzer/languages/javascript_plugin.py,sha256=569WaMXOsR1M-_Eta32mdS4GBS_Qp43tqofKlOGWz7Y,55040
|
|
54
55
|
tree_sitter_analyzer/languages/python_plugin.py,sha256=Cyu-0MIMIepioDKluO9_MwKUZRaHIG1QxeXR7N1TfR4,46109
|
|
56
|
+
tree_sitter_analyzer/languages/typescript_plugin.py,sha256=Fj9JJCZ28hsPIwyWw5Pho9R5E1osxz0Vv9b5_SSlgEc,57892
|
|
55
57
|
tree_sitter_analyzer/mcp/__init__.py,sha256=8tC54ZYcZBcFEio-aDet7evzis50zV5gbHuvn_7K514,944
|
|
56
58
|
tree_sitter_analyzer/mcp/server.py,sha256=cSkSzI7YMdQfR_Hzt5JjKgZbAPWrlJTYjL4HKBP6fzY,32934
|
|
57
59
|
tree_sitter_analyzer/mcp/resources/__init__.py,sha256=D46ZDhPQaCrQze8dHmijMg1QZQ4ABRIjG532sFpuGPo,1367
|
|
@@ -80,14 +82,14 @@ tree_sitter_analyzer/plugins/base.py,sha256=FMRAOtjtDutNV8RnB6cmFgdvcjxKRAbrrzql
|
|
|
80
82
|
tree_sitter_analyzer/plugins/manager.py,sha256=PyEY3jeuCBpDVqguWhaAu7nzUZM17_pI6wml2e0Hamo,12535
|
|
81
83
|
tree_sitter_analyzer/queries/__init__.py,sha256=dwDDc7PCw_UWruxSeJ8uEBjY0O5uLDBI5YqyvBhbnN0,696
|
|
82
84
|
tree_sitter_analyzer/queries/java.py,sha256=avaPFeHz3Ig-yTdCDKfUKaG-5sktOEkrXG2p9_mEZVs,12388
|
|
83
|
-
tree_sitter_analyzer/queries/javascript.py,sha256=
|
|
85
|
+
tree_sitter_analyzer/queries/javascript.py,sha256=ccsCMArJOPMWg2CTqnd9adzfT14CX8OugehV3CqfDcE,22545
|
|
84
86
|
tree_sitter_analyzer/queries/python.py,sha256=vKUeZqmgDUYzRfgInxF7IZ52Oja-ZslexseknmVLiwo,26116
|
|
85
|
-
tree_sitter_analyzer/queries/typescript.py,sha256=
|
|
87
|
+
tree_sitter_analyzer/queries/typescript.py,sha256=e9sMBPBiyVr0siJf35HQkiAgrjHJDJ7ysI5QiNnMAr4,21904
|
|
86
88
|
tree_sitter_analyzer/security/__init__.py,sha256=ZTqTt24hsljCpTXAZpJC57L7MU5lJLTf_XnlvEzXwEE,623
|
|
87
89
|
tree_sitter_analyzer/security/boundary_manager.py,sha256=3eeENRKWtz2pyZHzd8DiVaq8fdeC6s1eVOuBylSmQPg,9347
|
|
88
90
|
tree_sitter_analyzer/security/regex_checker.py,sha256=jWK6H8PTPgzbwRPfK_RZ8bBTS6rtEbgjY5vr3YWjQ_U,9616
|
|
89
91
|
tree_sitter_analyzer/security/validator.py,sha256=yR4qTWEcXpR--bSFwtWvSgY0AzqujOFAqlc1Z7dlTdk,9809
|
|
90
|
-
tree_sitter_analyzer-1.6.
|
|
91
|
-
tree_sitter_analyzer-1.6.
|
|
92
|
-
tree_sitter_analyzer-1.6.
|
|
93
|
-
tree_sitter_analyzer-1.6.
|
|
92
|
+
tree_sitter_analyzer-1.6.2.dist-info/METADATA,sha256=hvwhtI5M97CTgf3vwtu9PfgqfPqQcO2KtQ0vkmZpa-M,32279
|
|
93
|
+
tree_sitter_analyzer-1.6.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
94
|
+
tree_sitter_analyzer-1.6.2.dist-info/entry_points.txt,sha256=dEQkGMGmGGBzssEKlXW9F0-VlO3XJW2fJUv9i7898Ho,701
|
|
95
|
+
tree_sitter_analyzer-1.6.2.dist-info/RECORD,,
|
|
File without changes
|
{tree_sitter_analyzer-1.6.1.dist-info → tree_sitter_analyzer-1.6.2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|