tree-sitter-analyzer 1.4.0__py3-none-any.whl → 1.5.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 +1 -1
- tree_sitter_analyzer/api.py +108 -8
- tree_sitter_analyzer/cli/commands/find_and_grep_cli.py +3 -2
- tree_sitter_analyzer/cli/commands/list_files_cli.py +0 -1
- tree_sitter_analyzer/cli/commands/search_content_cli.py +3 -2
- tree_sitter_analyzer/encoding_utils.py +3 -3
- tree_sitter_analyzer/formatters/formatter_factory.py +3 -0
- tree_sitter_analyzer/formatters/javascript_formatter.py +467 -0
- tree_sitter_analyzer/language_loader.py +2 -2
- tree_sitter_analyzer/languages/javascript_plugin.py +1289 -238
- tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py +17 -4
- tree_sitter_analyzer/mcp/utils/path_resolver.py +1 -1
- tree_sitter_analyzer/models.py +9 -0
- tree_sitter_analyzer/queries/javascript.py +592 -31
- {tree_sitter_analyzer-1.4.0.dist-info → tree_sitter_analyzer-1.5.0.dist-info}/METADATA +106 -18
- {tree_sitter_analyzer-1.4.0.dist-info → tree_sitter_analyzer-1.5.0.dist-info}/RECORD +18 -17
- {tree_sitter_analyzer-1.4.0.dist-info → tree_sitter_analyzer-1.5.0.dist-info}/WHEEL +0 -0
- {tree_sitter_analyzer-1.4.0.dist-info → tree_sitter_analyzer-1.5.0.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.
|
|
3
|
+
Version: 1.5.0
|
|
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,14 +58,10 @@ Requires-Dist: pytest>=8.4.1; extra == 'all'
|
|
|
58
58
|
Requires-Dist: ruff>=0.5.0; extra == 'all'
|
|
59
59
|
Requires-Dist: tree-sitter-c<0.25.0,>=0.20.0; extra == 'all'
|
|
60
60
|
Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'all'
|
|
61
|
-
Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'all'
|
|
62
61
|
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'all'
|
|
63
62
|
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'all'
|
|
64
|
-
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'all'
|
|
65
63
|
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'all'
|
|
66
|
-
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'all'
|
|
67
64
|
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'all'
|
|
68
|
-
Requires-Dist: tree-sitter-python>=0.23.0; extra == 'all'
|
|
69
65
|
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'all'
|
|
70
66
|
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'all'
|
|
71
67
|
Requires-Dist: types-psutil>=5.9.0; extra == 'all'
|
|
@@ -114,14 +110,10 @@ Requires-Dist: pytest>=8.4.1; extra == 'full'
|
|
|
114
110
|
Requires-Dist: ruff>=0.5.0; extra == 'full'
|
|
115
111
|
Requires-Dist: tree-sitter-c<0.25.0,>=0.20.0; extra == 'full'
|
|
116
112
|
Requires-Dist: tree-sitter-cpp<0.25.0,>=0.23.4; extra == 'full'
|
|
117
|
-
Requires-Dist: tree-sitter-cpp>=0.23.4; extra == 'full'
|
|
118
113
|
Requires-Dist: tree-sitter-go<0.25.0,>=0.20.0; extra == 'full'
|
|
119
114
|
Requires-Dist: tree-sitter-java<0.25.0,>=0.23.5; extra == 'full'
|
|
120
|
-
Requires-Dist: tree-sitter-java>=0.23.5; extra == 'full'
|
|
121
115
|
Requires-Dist: tree-sitter-javascript<0.25.0,>=0.23.1; extra == 'full'
|
|
122
|
-
Requires-Dist: tree-sitter-javascript>=0.23.1; extra == 'full'
|
|
123
116
|
Requires-Dist: tree-sitter-python<0.25.0,>=0.23.0; extra == 'full'
|
|
124
|
-
Requires-Dist: tree-sitter-python>=0.23.0; extra == 'full'
|
|
125
117
|
Requires-Dist: tree-sitter-rust<0.25.0,>=0.20.0; extra == 'full'
|
|
126
118
|
Requires-Dist: tree-sitter-typescript<0.25.0,>=0.20.0; extra == 'full'
|
|
127
119
|
Requires-Dist: types-psutil>=5.9.0; extra == 'full'
|
|
@@ -171,11 +163,11 @@ Description-Content-Type: text/markdown
|
|
|
171
163
|
|
|
172
164
|
[](https://python.org)
|
|
173
165
|
[](LICENSE)
|
|
174
|
-
[](#quality-assurance)
|
|
167
|
+
[](#quality-assurance)
|
|
176
168
|
[](#quality-assurance)
|
|
177
169
|
[](https://pypi.org/project/tree-sitter-analyzer/)
|
|
178
|
-
[](https://github.com/aimasteracc/tree-sitter-analyzer/releases)
|
|
179
171
|
[](https://github.com/aimasteracc/tree-sitter-analyzer)
|
|
180
172
|
|
|
181
173
|
## 🚀 Break LLM Token Limits, Let AI Understand Code Files of Any Size
|
|
@@ -933,11 +925,107 @@ rg --version
|
|
|
933
925
|
### 🌍 **Multi-language Support**
|
|
934
926
|
- **Java** - Full support, including Spring, JPA frameworks
|
|
935
927
|
- **Python** - Full support, including type annotations, decorators
|
|
936
|
-
- **JavaScript
|
|
928
|
+
- **JavaScript** - 🆕 **Enterprise-grade support**, including modern ES6+ features, React/Vue/Angular frameworks, JSX, async functions, generators, arrow functions, classes, module systems
|
|
929
|
+
- **TypeScript** - Full support, including type annotations, interfaces
|
|
937
930
|
- **C/C++, Rust, Go** - Basic support
|
|
938
931
|
|
|
939
932
|
---
|
|
940
933
|
|
|
934
|
+
## 🆕 JavaScript Enterprise Support (v1.5.0+)
|
|
935
|
+
|
|
936
|
+
### 🚀 **Modern JavaScript Complete Support**
|
|
937
|
+
|
|
938
|
+
Tree-sitter Analyzer now provides enterprise-level JavaScript support at the same level as Java, including:
|
|
939
|
+
|
|
940
|
+
#### **📋 Core Language Features**
|
|
941
|
+
- **Function Types**: Traditional functions, arrow functions, async functions, generator functions
|
|
942
|
+
- **Class System**: ES6 classes, inheritance, static methods, getters/setters, constructors
|
|
943
|
+
- **Variable Declarations**: var, let, const, destructuring assignment, template literals
|
|
944
|
+
- **Module System**: ES6 import/export, CommonJS require/module.exports
|
|
945
|
+
- **Modern Features**: Spread/rest operators, Promises, async/await
|
|
946
|
+
|
|
947
|
+
#### **🎨 Framework & Ecosystem**
|
|
948
|
+
- **React Support**: JSX syntax, component analysis, Hook recognition, lifecycle methods
|
|
949
|
+
- **Vue.js Support**: Single-file components, template syntax, reactive data
|
|
950
|
+
- **Angular Support**: Components, services, dependency injection pattern recognition
|
|
951
|
+
- **Node.js Support**: Server-side patterns, Express routing, middleware
|
|
952
|
+
|
|
953
|
+
#### **🔍 Advanced Analysis Capabilities**
|
|
954
|
+
- **JSDoc Extraction**: Complete documentation comment parsing and type information
|
|
955
|
+
- **Complexity Analysis**: Cyclomatic complexity calculation and code quality metrics
|
|
956
|
+
- **Framework Detection**: Automatic recognition of React, Vue, Angular project types
|
|
957
|
+
- **Export Analysis**: Module export mapping and dependency relationship tracking
|
|
958
|
+
|
|
959
|
+
#### **💼 Enterprise Features**
|
|
960
|
+
- **Table Formatting**: Dedicated JavaScript table formatter for clear code structure display
|
|
961
|
+
- **Performance Optimization**: Caching mechanisms, iterative traversal, efficient large file handling
|
|
962
|
+
- **Error Handling**: Robust exception handling and detailed error reporting
|
|
963
|
+
- **Type Safety**: TypeScript-style type annotation support
|
|
964
|
+
|
|
965
|
+
### 📊 **JavaScript Analysis Examples**
|
|
966
|
+
|
|
967
|
+
```bash
|
|
968
|
+
# Analyze modern JavaScript files
|
|
969
|
+
uv run python -m tree_sitter_analyzer examples/ModernJavaScript.js --language javascript --advanced
|
|
970
|
+
|
|
971
|
+
# Generate detailed structure tables
|
|
972
|
+
uv run python -m tree_sitter_analyzer examples/ModernJavaScript.js --language javascript --table full
|
|
973
|
+
|
|
974
|
+
# Analyze React components
|
|
975
|
+
uv run python -m tree_sitter_analyzer examples/ReactComponent.jsx --language javascript --table full
|
|
976
|
+
|
|
977
|
+
# Query specific function types
|
|
978
|
+
uv run python -m tree_sitter_analyzer examples/ModernJavaScript.js --language javascript --query-key async_function
|
|
979
|
+
```
|
|
980
|
+
|
|
981
|
+
### 🎯 **Supported JavaScript Query Types**
|
|
982
|
+
- `function_declaration` - Traditional function declarations
|
|
983
|
+
- `arrow_function` - Arrow functions
|
|
984
|
+
- `async_function` - Async functions
|
|
985
|
+
- `generator_function` - Generator functions
|
|
986
|
+
- `class_declaration` - Class declarations
|
|
987
|
+
- `variable_declaration` - Variable declarations
|
|
988
|
+
- `import_statement` - Import statements
|
|
989
|
+
- `export_statement` - Export statements
|
|
990
|
+
- `jsx_element` - JSX elements
|
|
991
|
+
- `method_definition` - Method definitions
|
|
992
|
+
|
|
993
|
+
### 🏗️ **AI Assistant JavaScript Workflow**
|
|
994
|
+
|
|
995
|
+
```
|
|
996
|
+
I want to analyze the structure of this JavaScript file: examples/ModernJavaScript.js
|
|
997
|
+
```
|
|
998
|
+
|
|
999
|
+
**Example Response Format:**
|
|
1000
|
+
```json
|
|
1001
|
+
{
|
|
1002
|
+
"file_path": "examples/ModernJavaScript.js",
|
|
1003
|
+
"language": "javascript",
|
|
1004
|
+
"element_count": 24,
|
|
1005
|
+
"elements": [
|
|
1006
|
+
{
|
|
1007
|
+
"name": "fetchUserData",
|
|
1008
|
+
"type": "function",
|
|
1009
|
+
"start_line": 208,
|
|
1010
|
+
"end_line": 211,
|
|
1011
|
+
"is_async": true,
|
|
1012
|
+
"framework_type": "vanilla"
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"name": "ModernComponent",
|
|
1016
|
+
"type": "class",
|
|
1017
|
+
"start_line": 31,
|
|
1018
|
+
"end_line": 200,
|
|
1019
|
+
"is_react_component": true,
|
|
1020
|
+
"framework_type": "react"
|
|
1021
|
+
}
|
|
1022
|
+
],
|
|
1023
|
+
"success": true
|
|
1024
|
+
}
|
|
1025
|
+
```
|
|
1026
|
+
|
|
1027
|
+
---
|
|
1028
|
+
|
|
941
1029
|
## 📦 Installation Guide
|
|
942
1030
|
|
|
943
1031
|
### 👤 **End Users**
|
|
@@ -1008,15 +1096,15 @@ Tree-sitter Analyzer automatically detects and protects project boundaries:
|
|
|
1008
1096
|
|
|
1009
1097
|
### 📊 **Quality Metrics**
|
|
1010
1098
|
- **1,797 tests** - 100% pass rate ✅
|
|
1011
|
-
- **74.
|
|
1099
|
+
- **74.45% code coverage** - Industry-leading level
|
|
1012
1100
|
- **Zero test failures** - Fully CI/CD ready
|
|
1013
1101
|
- **Cross-platform compatibility** - Windows, macOS, Linux
|
|
1014
1102
|
|
|
1015
|
-
### ⚡ **Latest Quality Achievements (v1.
|
|
1103
|
+
### ⚡ **Latest Quality Achievements (v1.5.0)**
|
|
1016
1104
|
- ✅ **Cross-platform path compatibility** - Fixed Windows short path names and macOS symbolic link differences
|
|
1017
1105
|
- ✅ **Windows environment** - Implemented robust path normalization using Windows API
|
|
1018
1106
|
- ✅ **macOS environment** - Fixed `/var` vs `/private/var` symbolic link differences
|
|
1019
|
-
- ✅ **Comprehensive test coverage** - 1797 tests, 74.
|
|
1107
|
+
- ✅ **Comprehensive test coverage** - 1797 tests, 74.45% coverage
|
|
1020
1108
|
- ✅ **GitFlow implementation** - Professional development/release branch strategy. See [GitFlow documentation](GITFLOW.md) for details.
|
|
1021
1109
|
|
|
1022
1110
|
### ⚙️ **Running Tests**
|
|
@@ -1133,9 +1221,9 @@ All AI prompts in this document have been thoroughly tested in real environments
|
|
|
1133
1221
|
|
|
1134
1222
|
**Test Environment:**
|
|
1135
1223
|
- Operating System: Windows 10
|
|
1136
|
-
- Project: tree-sitter-analyzer v1.
|
|
1224
|
+
- Project: tree-sitter-analyzer v1.5.0
|
|
1137
1225
|
- Test Files: BigService.java (1419 lines), sample.py (256 lines), MultiClass.java (54 lines)
|
|
1138
|
-
- Test Coverage: 1797 tests passed, 74.
|
|
1226
|
+
- Test Coverage: 1797 tests passed, 74.45% coverage
|
|
1139
1227
|
- Test Tools: All MCP tools (check_code_scale, analyze_code_structure, extract_code_section, query_code, list_files, search_content, find_and_grep)
|
|
1140
1228
|
|
|
1141
1229
|
**🚀 Start Now** → [30-Second Quick Start](#-30-second-quick-start)
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
tree_sitter_analyzer/__init__.py,sha256=
|
|
1
|
+
tree_sitter_analyzer/__init__.py,sha256=llygd2b0BBgrQ3iQYsdUD4f2ZinCzLNg4qx_aTWJjNg,3067
|
|
2
2
|
tree_sitter_analyzer/__main__.py,sha256=Zl79tpe4UaMu-7yeztc06tgP0CVMRnvGgas4ZQP5SCs,228
|
|
3
|
-
tree_sitter_analyzer/api.py,sha256=
|
|
3
|
+
tree_sitter_analyzer/api.py,sha256=jzwID6fJNdhQkJP3D0lzBVPhOnGIN4tyyMtmRYdK9zI,22753
|
|
4
4
|
tree_sitter_analyzer/cli_main.py,sha256=jWjVJ5AgNmtf6Z7CgeK3IF-zi7yIiu9zn4Oyvzl-iNQ,10349
|
|
5
5
|
tree_sitter_analyzer/constants.py,sha256=7w3sLFt_6vPaKsxzrc21K1rOKpLGMyyA1203nu3pDOQ,1889
|
|
6
|
-
tree_sitter_analyzer/encoding_utils.py,sha256=
|
|
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
9
|
tree_sitter_analyzer/language_detector.py,sha256=pn3nQClo8b_Ar8dS5X3hq9_t5IIlIcizIC0twMaowU4,11693
|
|
10
|
-
tree_sitter_analyzer/language_loader.py,sha256=
|
|
11
|
-
tree_sitter_analyzer/models.py,sha256=
|
|
10
|
+
tree_sitter_analyzer/language_loader.py,sha256=gBUXGPTv91bRNs_urH23wzNKgh7ki6KkvpQ7iNPe3Rw,8922
|
|
11
|
+
tree_sitter_analyzer/models.py,sha256=0pAkSQkZJAGuOQpuhrAoRcugNxSgg1GUXNr6qtaelJw,20157
|
|
12
12
|
tree_sitter_analyzer/output_manager.py,sha256=tMEyjGeczqphcLoHdqxgyW8KaG8w6JF-fhsIibNQiCU,8260
|
|
13
13
|
tree_sitter_analyzer/project_detector.py,sha256=10-aaIvgQSOkoR-1cWAyWVHAdEnJUEv0yOdxzN_VEv0,9463
|
|
14
14
|
tree_sitter_analyzer/query_loader.py,sha256=jcJc6_kIMeZINfTVGuiEmDii9LViP_pbJfg4A9phJY4,9863
|
|
@@ -21,11 +21,11 @@ tree_sitter_analyzer/cli/commands/__init__.py,sha256=jpcpM1ptLuxLMBDUv1y_a87k8RA
|
|
|
21
21
|
tree_sitter_analyzer/cli/commands/advanced_command.py,sha256=ldvPljTRIYB3NCK3K7O6TYU4kUBAkY-qhw90yUiuQ9w,8714
|
|
22
22
|
tree_sitter_analyzer/cli/commands/base_command.py,sha256=MGlRA6sIcMt6ta-07NOFcPz8-eUwwS2g-JlBVYn105s,6611
|
|
23
23
|
tree_sitter_analyzer/cli/commands/default_command.py,sha256=RAR_eaOK3EndIqU7QL5UAn44mwyhItTN7aUaKL1WmSc,524
|
|
24
|
-
tree_sitter_analyzer/cli/commands/find_and_grep_cli.py,sha256=
|
|
25
|
-
tree_sitter_analyzer/cli/commands/list_files_cli.py,sha256=
|
|
24
|
+
tree_sitter_analyzer/cli/commands/find_and_grep_cli.py,sha256=Kg5H11FB7dEOS9Ors41T89roJjuwJ4t26n_Dv2ra5Og,6290
|
|
25
|
+
tree_sitter_analyzer/cli/commands/list_files_cli.py,sha256=rgeP3PFrBYhebvnWJ7dOEFmtpwvGmAacq8VfxZyPNzE,3842
|
|
26
26
|
tree_sitter_analyzer/cli/commands/partial_read_command.py,sha256=lbuy9X_q5pyf_cJXVvx_AYJg_tfxF1R0U93Is-MVW_A,4619
|
|
27
27
|
tree_sitter_analyzer/cli/commands/query_command.py,sha256=VFuCFJxffjSUrMa7NB_KJmMexUnJmnazpTDbw-i9Ulw,4003
|
|
28
|
-
tree_sitter_analyzer/cli/commands/search_content_cli.py,sha256=
|
|
28
|
+
tree_sitter_analyzer/cli/commands/search_content_cli.py,sha256=A30806cWaBfqfchhIZ0qK23cfoIQTTYk33Y119TGx34,5093
|
|
29
29
|
tree_sitter_analyzer/cli/commands/structure_command.py,sha256=rLg-HqahOc25rStDF_ICAhBZaaCxz0KhTVlyjUhc0Wc,5572
|
|
30
30
|
tree_sitter_analyzer/cli/commands/summary_command.py,sha256=lucn4weCpDrck-Z48ikrRZWjlGXaGJ4oCGMcgguW9yQ,3894
|
|
31
31
|
tree_sitter_analyzer/cli/commands/table_command.py,sha256=Ygfb-U1jBVhWBux3R4JS-XTGwOM_evroqjoeDkiJQHc,9648
|
|
@@ -39,8 +39,9 @@ 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=-yUeMiwg0eVyMtPsZjGNAUftfTVz4hoTj_9gOj5cefI,2225
|
|
43
43
|
tree_sitter_analyzer/formatters/java_formatter.py,sha256=0jxKfrWtsr_K2VG1zW0LH2E6w6nfpIhcXTfIyWw3Jmc,11163
|
|
44
|
+
tree_sitter_analyzer/formatters/javascript_formatter.py,sha256=oPHoOz3Qi1tatPzqPADVAhKirxAeghwe_-wfyAntc4o,17419
|
|
44
45
|
tree_sitter_analyzer/formatters/python_formatter.py,sha256=gHP4OtEwvv2ASbmTbyZNvQSP5r4Et4-sAMWr36y0k1Y,9840
|
|
45
46
|
tree_sitter_analyzer/interfaces/__init__.py,sha256=OcT7eNIU0ZXvAeAXbhDqRG3puxn93HeSLqplwj6npTM,271
|
|
46
47
|
tree_sitter_analyzer/interfaces/cli.py,sha256=c6CGfF6cgOwgpBimHV1myZ5JfNqil5tCVBOfG5-zijU,17100
|
|
@@ -49,7 +50,7 @@ tree_sitter_analyzer/interfaces/mcp_adapter.py,sha256=iSWcm-bn8_pL6YBu1Rrzherv72
|
|
|
49
50
|
tree_sitter_analyzer/interfaces/mcp_server.py,sha256=dUFn1CyO2jLa_y5gGOGE-f0sLGAbjgp738uy5-aAphI,16510
|
|
50
51
|
tree_sitter_analyzer/languages/__init__.py,sha256=VTXxJgVjHJAciLhX0zzXOS4EygZMtebeYUbi_0z6fGw,340
|
|
51
52
|
tree_sitter_analyzer/languages/java_plugin.py,sha256=G90_LlKdHtZNOPYu8MGBbgw6qkTiwd_QJu0xID3LMPc,50509
|
|
52
|
-
tree_sitter_analyzer/languages/javascript_plugin.py,sha256=
|
|
53
|
+
tree_sitter_analyzer/languages/javascript_plugin.py,sha256=569WaMXOsR1M-_Eta32mdS4GBS_Qp43tqofKlOGWz7Y,55040
|
|
53
54
|
tree_sitter_analyzer/languages/python_plugin.py,sha256=MJ03F_Nv-nmInIkEFmPyEXYhyGbLHyr5kCbj2taEDYk,29144
|
|
54
55
|
tree_sitter_analyzer/mcp/__init__.py,sha256=8tC54ZYcZBcFEio-aDet7evzis50zV5gbHuvn_7K514,944
|
|
55
56
|
tree_sitter_analyzer/mcp/server.py,sha256=k9WaDww6BXDDgRKZjvHx-cfOxglzdy4nQMia1i4UXNk,32021
|
|
@@ -61,7 +62,7 @@ tree_sitter_analyzer/mcp/tools/analyze_scale_tool.py,sha256=JyS9gey2oFoWjzsiiLjw
|
|
|
61
62
|
tree_sitter_analyzer/mcp/tools/analyze_scale_tool_cli_compatible.py,sha256=mssed7bEfGeGxW4mOf7dg8BDS1oqHLolIBNX9DaZ3DM,8997
|
|
62
63
|
tree_sitter_analyzer/mcp/tools/base_tool.py,sha256=qf2My325azlnKOugNVMN_R1jtZcjXVy354sGVKzvZls,3546
|
|
63
64
|
tree_sitter_analyzer/mcp/tools/fd_rg_utils.py,sha256=R1ICH40vkWO3OdKZjxok9ptQZpZ6-tM5SkLHHOC4-BE,17749
|
|
64
|
-
tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py,sha256=
|
|
65
|
+
tree_sitter_analyzer/mcp/tools/find_and_grep_tool.py,sha256=G-aExFZUvpJtitmEfYAClsHmQ1p3HqsT4IkOlym9R_o,22100
|
|
65
66
|
tree_sitter_analyzer/mcp/tools/list_files_tool.py,sha256=TA1BRQtb-D5x1pD-IcRJYnP0WnnFfl9q7skI25MOdHk,12873
|
|
66
67
|
tree_sitter_analyzer/mcp/tools/query_tool.py,sha256=1xY1ONNY2sIFJxoILlnNzBnwGVgzEF7vVJ2ccqR9auA,10879
|
|
67
68
|
tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=BMAJF205hTIrYTQJG6N1-vVuKSby2CSm9nWzSMMWceI,11339
|
|
@@ -71,21 +72,21 @@ tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py,sha256=-zZnqN9WcoyRTKM_
|
|
|
71
72
|
tree_sitter_analyzer/mcp/utils/__init__.py,sha256=TgTTKsRJAqF95g1fAp5SR_zQVDkImpc_5R0Dw529UUw,3126
|
|
72
73
|
tree_sitter_analyzer/mcp/utils/error_handler.py,sha256=msrQHX67K3vhJsEc3OPRz5mmWU_yoHz55Lnxy0IZuy4,18404
|
|
73
74
|
tree_sitter_analyzer/mcp/utils/gitignore_detector.py,sha256=VmO35Xj1fWiKVs4Y9aiD1gILm_8Kf1R8mhvtiF-wcfg,11027
|
|
74
|
-
tree_sitter_analyzer/mcp/utils/path_resolver.py,sha256=
|
|
75
|
+
tree_sitter_analyzer/mcp/utils/path_resolver.py,sha256=77BmbyEuJCuDPNH9POcTOS4tYBorPu-IXFGpBC1DxOk,15006
|
|
75
76
|
tree_sitter_analyzer/mcp/utils/search_cache.py,sha256=ZNv84st6PeejDY1B50AKTbItpXs9HS6JrpR-Ozjyc1c,12991
|
|
76
77
|
tree_sitter_analyzer/plugins/__init__.py,sha256=ITE9bTz7NO4axnn8g5Z-1_ydhSLT0RnY6Y1J9OhUP3E,10326
|
|
77
78
|
tree_sitter_analyzer/plugins/base.py,sha256=FMRAOtjtDutNV8RnB6cmFgdvcjxKRAbrrzqldBBT1yk,17167
|
|
78
79
|
tree_sitter_analyzer/plugins/manager.py,sha256=PyEY3jeuCBpDVqguWhaAu7nzUZM17_pI6wml2e0Hamo,12535
|
|
79
80
|
tree_sitter_analyzer/queries/__init__.py,sha256=dwDDc7PCw_UWruxSeJ8uEBjY0O5uLDBI5YqyvBhbnN0,696
|
|
80
81
|
tree_sitter_analyzer/queries/java.py,sha256=avaPFeHz3Ig-yTdCDKfUKaG-5sktOEkrXG2p9_mEZVs,12388
|
|
81
|
-
tree_sitter_analyzer/queries/javascript.py,sha256=
|
|
82
|
+
tree_sitter_analyzer/queries/javascript.py,sha256=MxRkWFeBjPz4Jas1XXXKwZ_ABHof7jOGLIVo7QUokKM,22544
|
|
82
83
|
tree_sitter_analyzer/queries/python.py,sha256=L33KRUyV3sAvA3_HFkPyGgtiq0ygSpNY_n2YojodPlc,7570
|
|
83
84
|
tree_sitter_analyzer/queries/typescript.py,sha256=eersyAF7TladuCWa8WE_-cO9YTF1LUSjLIl-tk2fZDo,6708
|
|
84
85
|
tree_sitter_analyzer/security/__init__.py,sha256=ZTqTt24hsljCpTXAZpJC57L7MU5lJLTf_XnlvEzXwEE,623
|
|
85
86
|
tree_sitter_analyzer/security/boundary_manager.py,sha256=3eeENRKWtz2pyZHzd8DiVaq8fdeC6s1eVOuBylSmQPg,9347
|
|
86
87
|
tree_sitter_analyzer/security/regex_checker.py,sha256=jWK6H8PTPgzbwRPfK_RZ8bBTS6rtEbgjY5vr3YWjQ_U,9616
|
|
87
88
|
tree_sitter_analyzer/security/validator.py,sha256=yR4qTWEcXpR--bSFwtWvSgY0AzqujOFAqlc1Z7dlTdk,9809
|
|
88
|
-
tree_sitter_analyzer-1.
|
|
89
|
-
tree_sitter_analyzer-1.
|
|
90
|
-
tree_sitter_analyzer-1.
|
|
91
|
-
tree_sitter_analyzer-1.
|
|
89
|
+
tree_sitter_analyzer-1.5.0.dist-info/METADATA,sha256=gX7ygLBMF9EzAIG7romkRw7bk_gf2NWJJ44NPrg_PO4,47364
|
|
90
|
+
tree_sitter_analyzer-1.5.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
91
|
+
tree_sitter_analyzer-1.5.0.dist-info/entry_points.txt,sha256=dEQkGMGmGGBzssEKlXW9F0-VlO3XJW2fJUv9i7898Ho,701
|
|
92
|
+
tree_sitter_analyzer-1.5.0.dist-info/RECORD,,
|
|
File without changes
|
{tree_sitter_analyzer-1.4.0.dist-info → tree_sitter_analyzer-1.5.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|