tree-sitter-analyzer 1.5.0__py3-none-any.whl → 1.6.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/cli_main.py +3 -1
- tree_sitter_analyzer/formatters/python_formatter.py +161 -20
- tree_sitter_analyzer/languages/python_plugin.py +581 -148
- tree_sitter_analyzer/mcp/server.py +17 -2
- tree_sitter_analyzer/mcp/tools/table_format_tool.py +106 -4
- tree_sitter_analyzer/mcp/utils/file_output_manager.py +257 -0
- tree_sitter_analyzer/models.py +8 -0
- tree_sitter_analyzer/queries/python.py +617 -58
- tree_sitter_analyzer/table_formatter.py +26 -2
- {tree_sitter_analyzer-1.5.0.dist-info → tree_sitter_analyzer-1.6.0.dist-info}/METADATA +68 -13
- {tree_sitter_analyzer-1.5.0.dist-info → tree_sitter_analyzer-1.6.0.dist-info}/RECORD +14 -13
- {tree_sitter_analyzer-1.5.0.dist-info → tree_sitter_analyzer-1.6.0.dist-info}/WHEEL +0 -0
- {tree_sitter_analyzer-1.5.0.dist-info → tree_sitter_analyzer-1.6.0.dist-info}/entry_points.txt +0 -0
|
@@ -7,6 +7,7 @@ Provides table-formatted output for Java code analysis results.
|
|
|
7
7
|
|
|
8
8
|
import csv
|
|
9
9
|
import io
|
|
10
|
+
import json
|
|
10
11
|
from typing import Any
|
|
11
12
|
|
|
12
13
|
|
|
@@ -44,12 +45,14 @@ class TableFormatter:
|
|
|
44
45
|
result = self._format_compact_table(structure_data)
|
|
45
46
|
elif self.format_type == "csv":
|
|
46
47
|
result = self._format_csv(structure_data)
|
|
48
|
+
elif self.format_type == "json":
|
|
49
|
+
result = self._format_json(structure_data)
|
|
47
50
|
else:
|
|
48
51
|
raise ValueError(f"Unsupported format type: {self.format_type}")
|
|
49
52
|
|
|
50
53
|
# Finally convert to platform-specific newline characters
|
|
51
|
-
# Skip newline conversion for CSV
|
|
52
|
-
if self.format_type
|
|
54
|
+
# Skip newline conversion for CSV and JSON formats
|
|
55
|
+
if self.format_type in ["csv", "json"]:
|
|
53
56
|
return result
|
|
54
57
|
|
|
55
58
|
return self._convert_to_platform_newlines(result)
|
|
@@ -555,6 +558,27 @@ class TableFormatter:
|
|
|
555
558
|
|
|
556
559
|
return csv_content
|
|
557
560
|
|
|
561
|
+
def _format_json(self, data: dict[str, Any]) -> str:
|
|
562
|
+
"""JSON format"""
|
|
563
|
+
# Create a clean JSON structure with all the analysis data
|
|
564
|
+
json_data = {
|
|
565
|
+
"file_info": {
|
|
566
|
+
"file_path": data.get("file_path", ""),
|
|
567
|
+
"language": data.get("language", ""),
|
|
568
|
+
"package": data.get("package"),
|
|
569
|
+
},
|
|
570
|
+
"statistics": data.get("statistics", {}),
|
|
571
|
+
"elements": {
|
|
572
|
+
"classes": data.get("classes", []),
|
|
573
|
+
"methods": data.get("methods", []),
|
|
574
|
+
"fields": data.get("fields", []),
|
|
575
|
+
"imports": data.get("imports", []),
|
|
576
|
+
},
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
# Return formatted JSON with proper indentation
|
|
580
|
+
return json.dumps(json_data, indent=2, ensure_ascii=False)
|
|
581
|
+
|
|
558
582
|
def _format_method_row(self, method: dict[str, Any]) -> str:
|
|
559
583
|
"""Format method row"""
|
|
560
584
|
name = str(method.get("name", ""))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tree-sitter-analyzer
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.6.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
|
|
@@ -163,11 +163,11 @@ Description-Content-Type: text/markdown
|
|
|
163
163
|
|
|
164
164
|
[](https://python.org)
|
|
165
165
|
[](LICENSE)
|
|
166
|
-
[](#quality-assurance)
|
|
167
|
+
[](#quality-assurance)
|
|
168
168
|
[](#quality-assurance)
|
|
169
169
|
[](https://pypi.org/project/tree-sitter-analyzer/)
|
|
170
|
-
[](https://github.com/aimasteracc/tree-sitter-analyzer/releases)
|
|
171
171
|
[](https://github.com/aimasteracc/tree-sitter-analyzer)
|
|
172
172
|
|
|
173
173
|
## 🚀 Break LLM Token Limits, Let AI Understand Code Files of Any Size
|
|
@@ -223,7 +223,7 @@ Total Elements: 85 | Complexity: 348 (avg: 5.27, max: 15)
|
|
|
223
223
|
### 🔄 **AI Assistant SMART Workflow**
|
|
224
224
|
- **S**: `set_project_path` - Setup project root directory
|
|
225
225
|
- **M**: `list_files`, `search_content`, `find_and_grep` - Map target files with precision
|
|
226
|
-
- **A**: `analyze_code_structure` - Analyze core structure with unified elements
|
|
226
|
+
- **A**: `analyze_code_structure` - Analyze core structure with unified elements (supports file output)
|
|
227
227
|
- **R**: `extract_code_section` - Retrieve essential code snippets on demand
|
|
228
228
|
- **T**: Advanced dependency tracing (when needed)
|
|
229
229
|
|
|
@@ -360,7 +360,8 @@ Add the following to your configuration file:
|
|
|
360
360
|
"python", "-m", "tree_sitter_analyzer.mcp.server"
|
|
361
361
|
],
|
|
362
362
|
"env": {
|
|
363
|
-
"TREE_SITTER_PROJECT_ROOT": "/absolute/path/to/your/project"
|
|
363
|
+
"TREE_SITTER_PROJECT_ROOT": "/absolute/path/to/your/project",
|
|
364
|
+
"TREE_SITTER_OUTPUT_PATH": "/absolute/path/to/output/directory"
|
|
364
365
|
}
|
|
365
366
|
}
|
|
366
367
|
}
|
|
@@ -422,7 +423,7 @@ uv run python -m tree_sitter_analyzer examples/BigService.java --partial-read --
|
|
|
422
423
|
> **🎯 SMART Analysis Workflow:**
|
|
423
424
|
> - **S** - Setup project (set_project_path)
|
|
424
425
|
> - **M** - Map target files (precision pattern matching)
|
|
425
|
-
> - **A** - Analyze core structure (analyze_code_structure)
|
|
426
|
+
> - **A** - Analyze core structure (analyze_code_structure with optional file output)
|
|
426
427
|
> - **R** - Retrieve essential code (extract_code_section)
|
|
427
428
|
> - **T** - Trace dependencies (when needed)
|
|
428
429
|
>
|
|
@@ -443,7 +444,8 @@ uv run python -m tree_sitter_analyzer examples/BigService.java --partial-read --
|
|
|
443
444
|
"command": "uv",
|
|
444
445
|
"args": ["run", "python", "-m", "tree_sitter_analyzer.mcp.server"],
|
|
445
446
|
"env": {
|
|
446
|
-
"TREE_SITTER_PROJECT_ROOT": "/path/to/your/project"
|
|
447
|
+
"TREE_SITTER_PROJECT_ROOT": "/path/to/your/project",
|
|
448
|
+
"TREE_SITTER_OUTPUT_PATH": "/path/to/output/directory"
|
|
447
449
|
}
|
|
448
450
|
}
|
|
449
451
|
}
|
|
@@ -895,6 +897,56 @@ rg --version
|
|
|
895
897
|
|
|
896
898
|
> **⚠️ Important:** Without these tools installed, the advanced MCP file search and content analysis features will not work. The basic MCP tools (analyze_code_structure, extract_code_section, etc.) will continue to work normally.
|
|
897
899
|
|
|
900
|
+
### 📁 **File Output Support (v1.5.1+)**
|
|
901
|
+
|
|
902
|
+
The `analyze_code_structure` tool now supports saving analysis results to files with automatic format detection:
|
|
903
|
+
|
|
904
|
+
#### **🎯 Key Features:**
|
|
905
|
+
- **Automatic Extension Detection**: Based on content type (JSON → `.json`, CSV → `.csv`, Markdown → `.md`, Text → `.txt`)
|
|
906
|
+
- **Smart Output Path**: Uses `TREE_SITTER_OUTPUT_PATH` environment variable or project root as fallback
|
|
907
|
+
- **Security Validation**: Ensures output files are written to safe, authorized locations
|
|
908
|
+
- **Content Type Detection**: Automatically detects content format and applies appropriate file extension
|
|
909
|
+
|
|
910
|
+
#### **📋 Usage Examples:**
|
|
911
|
+
|
|
912
|
+
**Basic File Output:**
|
|
913
|
+
```json
|
|
914
|
+
{
|
|
915
|
+
"tool": "analyze_code_structure",
|
|
916
|
+
"arguments": {
|
|
917
|
+
"file_path": "src/BigService.java",
|
|
918
|
+
"output_file": "service_analysis"
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
```
|
|
922
|
+
|
|
923
|
+
**With Format Control:**
|
|
924
|
+
```json
|
|
925
|
+
{
|
|
926
|
+
"tool": "analyze_code_structure",
|
|
927
|
+
"arguments": {
|
|
928
|
+
"file_path": "src/BigService.java",
|
|
929
|
+
"format_type": "csv",
|
|
930
|
+
"output_file": "service_data"
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
```
|
|
934
|
+
|
|
935
|
+
#### **🔧 Environment Configuration:**
|
|
936
|
+
```json
|
|
937
|
+
{
|
|
938
|
+
"env": {
|
|
939
|
+
"TREE_SITTER_PROJECT_ROOT": "/path/to/your/project",
|
|
940
|
+
"TREE_SITTER_OUTPUT_PATH": "/path/to/output/directory"
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
```
|
|
944
|
+
|
|
945
|
+
**Output Path Priority:**
|
|
946
|
+
1. `TREE_SITTER_OUTPUT_PATH` environment variable (highest priority)
|
|
947
|
+
2. Project root directory (from `TREE_SITTER_PROJECT_ROOT` or auto-detected)
|
|
948
|
+
3. Current working directory (fallback)
|
|
949
|
+
|
|
898
950
|
#### **🗂️ ListFilesTool - Smart File Discovery**
|
|
899
951
|
- **Advanced filtering**: File type, size, modification time, extension-based filtering
|
|
900
952
|
- **Pattern matching**: Glob patterns and regex support for flexible file discovery
|
|
@@ -1084,7 +1136,10 @@ Tree-sitter Analyzer automatically detects and protects project boundaries:
|
|
|
1084
1136
|
"tree-sitter-analyzer": {
|
|
1085
1137
|
"command": "uv",
|
|
1086
1138
|
"args": ["run", "--with", "tree-sitter-analyzer[mcp]", "python", "-m", "tree_sitter_analyzer.mcp.server"],
|
|
1087
|
-
"env": {
|
|
1139
|
+
"env": {
|
|
1140
|
+
"TREE_SITTER_PROJECT_ROOT": "/path/to/your/project",
|
|
1141
|
+
"TREE_SITTER_OUTPUT_PATH": "/path/to/output/directory"
|
|
1142
|
+
}
|
|
1088
1143
|
}
|
|
1089
1144
|
}
|
|
1090
1145
|
}
|
|
@@ -1095,12 +1150,12 @@ Tree-sitter Analyzer automatically detects and protects project boundaries:
|
|
|
1095
1150
|
## 🏆 Quality Assurance
|
|
1096
1151
|
|
|
1097
1152
|
### 📊 **Quality Metrics**
|
|
1098
|
-
- **1,
|
|
1099
|
-
- **
|
|
1153
|
+
- **1,893 tests** - 100% pass rate ✅
|
|
1154
|
+
- **71.48% code coverage** - Industry-leading level
|
|
1100
1155
|
- **Zero test failures** - Fully CI/CD ready
|
|
1101
1156
|
- **Cross-platform compatibility** - Windows, macOS, Linux
|
|
1102
1157
|
|
|
1103
|
-
### ⚡ **Latest Quality Achievements (v1.
|
|
1158
|
+
### ⚡ **Latest Quality Achievements (v1.6.0)**
|
|
1104
1159
|
- ✅ **Cross-platform path compatibility** - Fixed Windows short path names and macOS symbolic link differences
|
|
1105
1160
|
- ✅ **Windows environment** - Implemented robust path normalization using Windows API
|
|
1106
1161
|
- ✅ **macOS environment** - Fixed `/var` vs `/private/var` symbolic link differences
|
|
@@ -1221,7 +1276,7 @@ All AI prompts in this document have been thoroughly tested in real environments
|
|
|
1221
1276
|
|
|
1222
1277
|
**Test Environment:**
|
|
1223
1278
|
- Operating System: Windows 10
|
|
1224
|
-
- Project: tree-sitter-analyzer v1.
|
|
1279
|
+
- Project: tree-sitter-analyzer v1.6.0
|
|
1225
1280
|
- Test Files: BigService.java (1419 lines), sample.py (256 lines), MultiClass.java (54 lines)
|
|
1226
1281
|
- Test Coverage: 1797 tests passed, 74.45% coverage
|
|
1227
1282
|
- Test Tools: All MCP tools (check_code_scale, analyze_code_structure, extract_code_section, query_code, list_files, search_content, find_and_grep)
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
tree_sitter_analyzer/__init__.py,sha256=
|
|
1
|
+
tree_sitter_analyzer/__init__.py,sha256=5v_fUwXi5oYHg6sthTCAJTPjkEYHYkeeI31KP50il7g,3067
|
|
2
2
|
tree_sitter_analyzer/__main__.py,sha256=Zl79tpe4UaMu-7yeztc06tgP0CVMRnvGgas4ZQP5SCs,228
|
|
3
3
|
tree_sitter_analyzer/api.py,sha256=jzwID6fJNdhQkJP3D0lzBVPhOnGIN4tyyMtmRYdK9zI,22753
|
|
4
|
-
tree_sitter_analyzer/cli_main.py,sha256=
|
|
4
|
+
tree_sitter_analyzer/cli_main.py,sha256=BuaM-L-Jx3G49qvAUOQVsw0wEM-X0UzPaRszRZBist4,10374
|
|
5
5
|
tree_sitter_analyzer/constants.py,sha256=7w3sLFt_6vPaKsxzrc21K1rOKpLGMyyA1203nu3pDOQ,1889
|
|
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
9
|
tree_sitter_analyzer/language_detector.py,sha256=pn3nQClo8b_Ar8dS5X3hq9_t5IIlIcizIC0twMaowU4,11693
|
|
10
10
|
tree_sitter_analyzer/language_loader.py,sha256=gBUXGPTv91bRNs_urH23wzNKgh7ki6KkvpQ7iNPe3Rw,8922
|
|
11
|
-
tree_sitter_analyzer/models.py,sha256=
|
|
11
|
+
tree_sitter_analyzer/models.py,sha256=eZSVTl4s0rnqG21nyCTaJhyhDw1HZkkpMRKCi2QRkL0,20404
|
|
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
|
|
15
|
-
tree_sitter_analyzer/table_formatter.py,sha256=
|
|
15
|
+
tree_sitter_analyzer/table_formatter.py,sha256=tPKw77LLlQ7k5MMs9_Ez7qsSroNaSzZPoplyPtKHLhA,28577
|
|
16
16
|
tree_sitter_analyzer/utils.py,sha256=1x6V7xqrhHMyVQFnUzWWxK3D7maK2XqboK0BLW_PLyQ,10748
|
|
17
17
|
tree_sitter_analyzer/cli/__init__.py,sha256=O_3URpbdu5Ilb2-r48LjbZuWtOWQu_BhL3pa6C0G3Bk,871
|
|
18
18
|
tree_sitter_analyzer/cli/__main__.py,sha256=Xq8o8-0dPnMDU9WZqmqhzr98rx8rvoffTUHAkAwl-L8,218
|
|
@@ -42,7 +42,7 @@ tree_sitter_analyzer/formatters/base_formatter.py,sha256=XZwZ0klyCnmNkpWnMP7dy0X
|
|
|
42
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
44
|
tree_sitter_analyzer/formatters/javascript_formatter.py,sha256=oPHoOz3Qi1tatPzqPADVAhKirxAeghwe_-wfyAntc4o,17419
|
|
45
|
-
tree_sitter_analyzer/formatters/python_formatter.py,sha256=
|
|
45
|
+
tree_sitter_analyzer/formatters/python_formatter.py,sha256=4DGiQNdUFqfRcGmMgkVHCEvvKIvRdvYKdRZ8vp8m5ZE,15318
|
|
46
46
|
tree_sitter_analyzer/interfaces/__init__.py,sha256=OcT7eNIU0ZXvAeAXbhDqRG3puxn93HeSLqplwj6npTM,271
|
|
47
47
|
tree_sitter_analyzer/interfaces/cli.py,sha256=c6CGfF6cgOwgpBimHV1myZ5JfNqil5tCVBOfG5-zijU,17100
|
|
48
48
|
tree_sitter_analyzer/interfaces/cli_adapter.py,sha256=8j3xL3k6wWrGQCq0KCntqbvSxKy931sT5M96pYhkn9c,11402
|
|
@@ -51,9 +51,9 @@ tree_sitter_analyzer/interfaces/mcp_server.py,sha256=dUFn1CyO2jLa_y5gGOGE-f0sLGA
|
|
|
51
51
|
tree_sitter_analyzer/languages/__init__.py,sha256=VTXxJgVjHJAciLhX0zzXOS4EygZMtebeYUbi_0z6fGw,340
|
|
52
52
|
tree_sitter_analyzer/languages/java_plugin.py,sha256=G90_LlKdHtZNOPYu8MGBbgw6qkTiwd_QJu0xID3LMPc,50509
|
|
53
53
|
tree_sitter_analyzer/languages/javascript_plugin.py,sha256=569WaMXOsR1M-_Eta32mdS4GBS_Qp43tqofKlOGWz7Y,55040
|
|
54
|
-
tree_sitter_analyzer/languages/python_plugin.py,sha256=
|
|
54
|
+
tree_sitter_analyzer/languages/python_plugin.py,sha256=Cyu-0MIMIepioDKluO9_MwKUZRaHIG1QxeXR7N1TfR4,46109
|
|
55
55
|
tree_sitter_analyzer/mcp/__init__.py,sha256=8tC54ZYcZBcFEio-aDet7evzis50zV5gbHuvn_7K514,944
|
|
56
|
-
tree_sitter_analyzer/mcp/server.py,sha256=
|
|
56
|
+
tree_sitter_analyzer/mcp/server.py,sha256=cSkSzI7YMdQfR_Hzt5JjKgZbAPWrlJTYjL4HKBP6fzY,32934
|
|
57
57
|
tree_sitter_analyzer/mcp/resources/__init__.py,sha256=D46ZDhPQaCrQze8dHmijMg1QZQ4ABRIjG532sFpuGPo,1367
|
|
58
58
|
tree_sitter_analyzer/mcp/resources/code_file_resource.py,sha256=ZX5ZYSJfylBedpL80kTDlco2YZqgRMb5f3OW0VvOVRM,6166
|
|
59
59
|
tree_sitter_analyzer/mcp/resources/project_stats_resource.py,sha256=r2owXkWrZ-Ee9hLGpt-SSNOxzrzuNVgNXcwxQghCcrM,20057
|
|
@@ -67,10 +67,11 @@ tree_sitter_analyzer/mcp/tools/list_files_tool.py,sha256=TA1BRQtb-D5x1pD-IcRJYnP
|
|
|
67
67
|
tree_sitter_analyzer/mcp/tools/query_tool.py,sha256=1xY1ONNY2sIFJxoILlnNzBnwGVgzEF7vVJ2ccqR9auA,10879
|
|
68
68
|
tree_sitter_analyzer/mcp/tools/read_partial_tool.py,sha256=BMAJF205hTIrYTQJG6N1-vVuKSby2CSm9nWzSMMWceI,11339
|
|
69
69
|
tree_sitter_analyzer/mcp/tools/search_content_tool.py,sha256=PDYY_O7T0y4bnC6JNjtL1_TyZcib0EpxnPA6PfKueoQ,22489
|
|
70
|
-
tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=
|
|
70
|
+
tree_sitter_analyzer/mcp/tools/table_format_tool.py,sha256=8_yTYv7j7gFoQxsduJgWO_aKzRP9TsITYqx8cxyj4wo,20148
|
|
71
71
|
tree_sitter_analyzer/mcp/tools/universal_analyze_tool.py,sha256=-zZnqN9WcoyRTKM_16ADH859LSebzi34BGYwQL2zCOs,25084
|
|
72
72
|
tree_sitter_analyzer/mcp/utils/__init__.py,sha256=TgTTKsRJAqF95g1fAp5SR_zQVDkImpc_5R0Dw529UUw,3126
|
|
73
73
|
tree_sitter_analyzer/mcp/utils/error_handler.py,sha256=msrQHX67K3vhJsEc3OPRz5mmWU_yoHz55Lnxy0IZuy4,18404
|
|
74
|
+
tree_sitter_analyzer/mcp/utils/file_output_manager.py,sha256=4R-evFZgb7KJpxQjgrz3WMPjL4zJhUH_9aaEbMQTCN4,8747
|
|
74
75
|
tree_sitter_analyzer/mcp/utils/gitignore_detector.py,sha256=VmO35Xj1fWiKVs4Y9aiD1gILm_8Kf1R8mhvtiF-wcfg,11027
|
|
75
76
|
tree_sitter_analyzer/mcp/utils/path_resolver.py,sha256=77BmbyEuJCuDPNH9POcTOS4tYBorPu-IXFGpBC1DxOk,15006
|
|
76
77
|
tree_sitter_analyzer/mcp/utils/search_cache.py,sha256=ZNv84st6PeejDY1B50AKTbItpXs9HS6JrpR-Ozjyc1c,12991
|
|
@@ -80,13 +81,13 @@ tree_sitter_analyzer/plugins/manager.py,sha256=PyEY3jeuCBpDVqguWhaAu7nzUZM17_pI6
|
|
|
80
81
|
tree_sitter_analyzer/queries/__init__.py,sha256=dwDDc7PCw_UWruxSeJ8uEBjY0O5uLDBI5YqyvBhbnN0,696
|
|
81
82
|
tree_sitter_analyzer/queries/java.py,sha256=avaPFeHz3Ig-yTdCDKfUKaG-5sktOEkrXG2p9_mEZVs,12388
|
|
82
83
|
tree_sitter_analyzer/queries/javascript.py,sha256=MxRkWFeBjPz4Jas1XXXKwZ_ABHof7jOGLIVo7QUokKM,22544
|
|
83
|
-
tree_sitter_analyzer/queries/python.py,sha256=
|
|
84
|
+
tree_sitter_analyzer/queries/python.py,sha256=vKUeZqmgDUYzRfgInxF7IZ52Oja-ZslexseknmVLiwo,26116
|
|
84
85
|
tree_sitter_analyzer/queries/typescript.py,sha256=eersyAF7TladuCWa8WE_-cO9YTF1LUSjLIl-tk2fZDo,6708
|
|
85
86
|
tree_sitter_analyzer/security/__init__.py,sha256=ZTqTt24hsljCpTXAZpJC57L7MU5lJLTf_XnlvEzXwEE,623
|
|
86
87
|
tree_sitter_analyzer/security/boundary_manager.py,sha256=3eeENRKWtz2pyZHzd8DiVaq8fdeC6s1eVOuBylSmQPg,9347
|
|
87
88
|
tree_sitter_analyzer/security/regex_checker.py,sha256=jWK6H8PTPgzbwRPfK_RZ8bBTS6rtEbgjY5vr3YWjQ_U,9616
|
|
88
89
|
tree_sitter_analyzer/security/validator.py,sha256=yR4qTWEcXpR--bSFwtWvSgY0AzqujOFAqlc1Z7dlTdk,9809
|
|
89
|
-
tree_sitter_analyzer-1.
|
|
90
|
-
tree_sitter_analyzer-1.
|
|
91
|
-
tree_sitter_analyzer-1.
|
|
92
|
-
tree_sitter_analyzer-1.
|
|
90
|
+
tree_sitter_analyzer-1.6.0.dist-info/METADATA,sha256=qCbCgjZwbliy8JnCLTY6ZL12pT7Yx3HkWnHKhz1HuAY,49057
|
|
91
|
+
tree_sitter_analyzer-1.6.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
92
|
+
tree_sitter_analyzer-1.6.0.dist-info/entry_points.txt,sha256=dEQkGMGmGGBzssEKlXW9F0-VlO3XJW2fJUv9i7898Ho,701
|
|
93
|
+
tree_sitter_analyzer-1.6.0.dist-info/RECORD,,
|
|
File without changes
|
{tree_sitter_analyzer-1.5.0.dist-info → tree_sitter_analyzer-1.6.0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|