sourcecode 2.5.16__py3-none-any.whl → 2.5.17__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.
sourcecode/__init__.py CHANGED
@@ -4,4 +4,4 @@ ASK Engine is the product. ``ask`` is the canonical CLI command; ``sourcecode``
4
4
  the legacy compatibility alias and the Python/PyPI package name. See
5
5
  docs/PRODUCT_IDENTITY.md (normative)."""
6
6
 
7
- __version__ = "2.5.16"
7
+ __version__ = "2.5.17"
@@ -14,12 +14,18 @@ interface, same output format (None = file, dict = directory).
14
14
 
15
15
  import os
16
16
  from pathlib import Path
17
- from typing import Any, Optional, cast
17
+ from typing import Any, Optional
18
18
 
19
19
  from pathspec import GitIgnoreSpec
20
20
 
21
21
  from sourcecode.repo_classifier import RepoTopology
22
- from sourcecode.scanner import DEFAULT_EXCLUDES, EXCLUDED_FILE_SUFFIXES, MANIFEST_NAMES
22
+ from sourcecode.scanner import (
23
+ DEFAULT_EXCLUDES,
24
+ EXCLUDED_FILE_SUFFIXES,
25
+ find_manifest_paths,
26
+ get_or_create_tree_node,
27
+ match_gitignore,
28
+ )
23
29
 
24
30
 
25
31
  class AdaptiveScanner:
@@ -100,9 +106,7 @@ class AdaptiveScanner:
100
106
  return self._gitignore_spec
101
107
 
102
108
  def _is_excluded_by_gitignore(self, rel_path: str, is_dir: bool) -> bool:
103
- spec = self._load_gitignore_spec()
104
- path_to_match = rel_path + "/" if is_dir else rel_path
105
- return spec.match_file(path_to_match)
109
+ return match_gitignore(self._load_gitignore_spec(), rel_path, is_dir)
106
110
 
107
111
  # ------------------------------------------------------------------
108
112
  # Depth budget computation — the core of adaptive traversal
@@ -224,40 +228,12 @@ class AdaptiveScanner:
224
228
  def _get_or_create_node(
225
229
  self, tree: dict[str, Any], parts: tuple[str, ...]
226
230
  ) -> dict[str, Any]:
227
- node = tree
228
- for part in parts:
229
- if part not in node or node[part] is None:
230
- node[part] = {}
231
- node = cast(dict[str, Any], node[part])
232
- return node
231
+ return get_or_create_tree_node(tree, parts)
233
232
 
234
233
  # ------------------------------------------------------------------
235
234
  # Manifest discovery — same interface as FileScanner
236
235
  # ------------------------------------------------------------------
237
236
 
238
237
  def find_manifests(self) -> list[str]:
239
- """Find manifest files at depth 0-1.
240
-
241
- Identical logic to FileScanner.find_manifests() — depth-0 root
242
- manifests plus depth-1 sub-package manifests, hidden dirs excluded.
243
- """
244
- manifests: list[str] = []
245
- for name in MANIFEST_NAMES:
246
- candidate = self.root / name
247
- if candidate.exists() and not candidate.is_symlink():
248
- manifests.append(str(candidate))
249
- try:
250
- for child in self.root.iterdir():
251
- if (
252
- child.is_dir()
253
- and not child.is_symlink()
254
- and child.name not in self._excludes
255
- and not child.name.startswith(".")
256
- ):
257
- for name in MANIFEST_NAMES:
258
- candidate = child / name
259
- if candidate.exists() and not candidate.is_symlink():
260
- manifests.append(str(candidate))
261
- except PermissionError:
262
- pass
263
- return manifests
238
+ """Find manifest files at depth 0-1 (delegates to the shared helper)."""
239
+ return find_manifest_paths(self.root, self._excludes)
@@ -176,18 +176,10 @@ def _find_child(node: Any, *types: str) -> Optional[Any]:
176
176
  return None
177
177
 
178
178
 
179
- def _find_all(node: Any, *types: str) -> list[Any]:
180
- return [child for child in node.children if child.type in types]
181
-
182
-
183
179
  def _text(node: Any, src: bytes) -> str:
184
180
  return src[node.start_byte:node.end_byte].decode("utf-8", errors="replace")
185
181
 
186
182
 
187
- def _named_children(node: Any) -> list[Any]:
188
- return [c for c in node.children if c.is_named]
189
-
190
-
191
183
  # ---------------------------------------------------------------------------
192
184
  # Tree-sitter TS/JS extraction
193
185
  # ---------------------------------------------------------------------------
@@ -39,20 +39,6 @@ def _safe_int(value: Optional[str]) -> Optional[int]:
39
39
  return None
40
40
 
41
41
 
42
- def _decode_numbits(blob: bytes) -> list[int]:
43
- """Decodifica bitset little-endian de coverage.py .coverage SQLite.
44
-
45
- Byte i, bit j set => linea (i*8 + j + 1) ejecutada.
46
- Ejemplo: bytes([0b00000101]) => [1, 3]
47
- """
48
- return [
49
- i * 8 + j + 1
50
- for i, byte in enumerate(blob)
51
- for j in range(8)
52
- if byte & (1 << j)
53
- ]
54
-
55
-
56
42
  # ---------------------------------------------------------------------------
57
43
  # CoverageParser
58
44
  # ---------------------------------------------------------------------------
@@ -534,8 +534,3 @@ class EnvAnalyzer:
534
534
  def _replace_description(record, description: str):
535
535
  from dataclasses import replace
536
536
  return replace(record, description=description)
537
-
538
-
539
- def _replace_required(record, required: bool, default: Optional[str]):
540
- from dataclasses import replace
541
- return replace(record, required=required, default=default if not record.default else record.default)
@@ -807,11 +807,6 @@ def _pop_closed(class_stack: list[tuple[str, int]], depth: int) -> None:
807
807
  class_stack.pop()
808
808
 
809
809
 
810
- def _resolve_type(simple: str, import_map: dict[str, str]) -> Optional[str]:
811
- base = re.sub(r'<.*', '', simple).strip().split('.')[-1]
812
- return import_map.get(base)
813
-
814
-
815
810
  def _resolve_types_from_text(text: str, import_map: dict[str, str]) -> list[str]:
816
811
  resolved = []
817
812
  for token in re.findall(r'\b([A-Z]\w*)\b', text):
@@ -3597,40 +3592,6 @@ def _build_evidence_bundles(
3597
3592
  return bundles
3598
3593
 
3599
3594
 
3600
- def _common_package_prefix(fqns: list[str]) -> str:
3601
- """Longest common dot-separated package prefix across a list of FQNs."""
3602
- if not fqns:
3603
- return ""
3604
- # Strip class/method suffix — keep only package parts (lowercase segments)
3605
- def pkg_parts(fqn: str) -> list[str]:
3606
- parts = fqn.split(".")
3607
- # Drop trailing class/method names (PascalCase or after '#')
3608
- result = []
3609
- for p in parts:
3610
- if "#" in p:
3611
- break
3612
- if p and p[0].isupper():
3613
- break
3614
- result.append(p)
3615
- return result
3616
-
3617
- segs = [pkg_parts(f) for f in fqns if pkg_parts(f)]
3618
- if not segs:
3619
- return fqns[0].rsplit(".", 1)[0] if "." in fqns[0] else fqns[0]
3620
- common = segs[0]
3621
- for s in segs[1:]:
3622
- new_common = []
3623
- for a, b in zip(common, s):
3624
- if a == b:
3625
- new_common.append(a)
3626
- else:
3627
- break
3628
- common = new_common
3629
- if not common:
3630
- break
3631
- return ".".join(common) if common else fqns[0].rsplit(".", 1)[0]
3632
-
3633
-
3634
3595
  def _subsystem_label(package_prefix: str) -> str:
3635
3596
  """Derive short human label enforcing minimum meaningful depth.
3636
3597
 
sourcecode/scanner.py CHANGED
@@ -115,6 +115,57 @@ def classify_manifest(manifest_path: str, root: Path) -> str:
115
115
  return "auxiliary"
116
116
 
117
117
 
118
+ # ── Shared scan primitives (used by both FileScanner and AdaptiveScanner) ────
119
+ # AdaptiveScanner was forked from FileScanner and carried byte-identical copies of
120
+ # these three; they live here as the single source of truth, each class method a
121
+ # thin delegate.
122
+
123
+ def find_manifest_paths(root: Path, excludes: frozenset[str]) -> list[str]:
124
+ """Manifest files at depth 0–1 (SCAN-04): root manifests plus depth-1
125
+ sub-package manifests, with hidden/excluded dirs and symlinks skipped."""
126
+ manifests: list[str] = []
127
+ # Depth 0: root
128
+ for name in MANIFEST_NAMES:
129
+ candidate = root / name
130
+ if candidate.exists() and not candidate.is_symlink():
131
+ manifests.append(str(candidate))
132
+ # Depth 1: first level (hidden dirs excluded — tooling, not project)
133
+ try:
134
+ for child in root.iterdir():
135
+ if (
136
+ child.is_dir()
137
+ and not child.is_symlink()
138
+ and child.name not in excludes
139
+ and not child.name.startswith(".")
140
+ ):
141
+ for name in MANIFEST_NAMES:
142
+ candidate = child / name
143
+ if candidate.exists() and not candidate.is_symlink():
144
+ manifests.append(str(candidate))
145
+ except PermissionError:
146
+ pass
147
+ return manifests
148
+
149
+
150
+ def get_or_create_tree_node(
151
+ tree: dict[str, Any], parts: tuple[str, ...]
152
+ ) -> dict[str, Any]:
153
+ """Navigate/create the nested-dict tree node for a path's parts."""
154
+ node = tree
155
+ for part in parts:
156
+ if part not in node or node[part] is None:
157
+ node[part] = {}
158
+ node = cast(dict[str, Any], node[part])
159
+ return node
160
+
161
+
162
+ def match_gitignore(spec: GitIgnoreSpec, rel_path: str, is_dir: bool) -> bool:
163
+ """True if a root-relative path is excluded by ``spec``. GitIgnoreSpec expects
164
+ a trailing '/' for directories."""
165
+ path_to_match = rel_path + "/" if is_dir else rel_path
166
+ return spec.match_file(path_to_match)
167
+
168
+
118
169
  class FileScanner:
119
170
  """Escanea un directorio de proyecto y produce un arbol de ficheros filtrado.
120
171
 
@@ -148,10 +199,7 @@ class FileScanner:
148
199
 
149
200
  def _is_excluded_by_gitignore(self, rel_path: str, is_dir: bool) -> bool:
150
201
  """Comprueba si una ruta relativa (a self.root) esta excluida por .gitignore."""
151
- spec = self._load_gitignore_spec()
152
- # GitIgnoreSpec espera rutas con / al final para directorios
153
- path_to_match = rel_path + "/" if is_dir else rel_path
154
- return spec.match_file(path_to_match)
202
+ return match_gitignore(self._load_gitignore_spec(), rel_path, is_dir)
155
203
 
156
204
  def scan_tree(self) -> dict[str, Any]:
157
205
  """Construye el arbol JSON anidado del proyecto.
@@ -223,38 +271,8 @@ class FileScanner:
223
271
  self, tree: dict[str, Any], parts: tuple[str, ...]
224
272
  ) -> dict[str, Any]:
225
273
  """Navega/crea el nodo del arbol para la ruta indicada."""
226
- node = tree
227
- for part in parts:
228
- if part not in node or node[part] is None:
229
- node[part] = {}
230
- node = cast(dict[str, Any], node[part])
231
- return node
274
+ return get_or_create_tree_node(tree, parts)
232
275
 
233
276
  def find_manifests(self) -> list[str]:
234
- """Encuentra ficheros de manifiesto en profundidad 0-1 (SCAN-04).
235
-
236
- Retorna:
237
- Lista de paths absolutos de manifiestos encontrados.
238
- """
239
- manifests: list[str] = []
240
- # Profundidad 0: raiz
241
- for name in MANIFEST_NAMES:
242
- candidate = self.root / name
243
- if candidate.exists() and not candidate.is_symlink():
244
- manifests.append(str(candidate))
245
- # Profundidad 1: primer nivel (excluir directorios ocultos — son tooling, no proyecto)
246
- try:
247
- for child in self.root.iterdir():
248
- if (
249
- child.is_dir()
250
- and not child.is_symlink()
251
- and child.name not in self._excludes
252
- and not child.name.startswith(".")
253
- ):
254
- for name in MANIFEST_NAMES:
255
- candidate = child / name
256
- if candidate.exists() and not candidate.is_symlink():
257
- manifests.append(str(candidate))
258
- except PermissionError:
259
- pass
260
- return manifests
277
+ """Encuentra ficheros de manifiesto en profundidad 0-1 (SCAN-04)."""
278
+ return find_manifest_paths(self.root, self._excludes)
sourcecode/serializer.py CHANGED
@@ -913,67 +913,6 @@ def _jndi_datasources(sm: "SourceMap") -> "Optional[list[dict[str, Any]]]":
913
913
  return datasources
914
914
 
915
915
 
916
- def _tiered_display_score(
917
- pre_bonus_combined: float,
918
- file_class: Any,
919
- path: str,
920
- entry_paths: set,
921
- has_structural_signals: bool = False,
922
- ) -> float:
923
- """Evidence-tiered display score [0.0, 1.0].
924
-
925
- Tiers enforce: strong evidence > medium evidence > filesystem/path only.
926
- M3 sort bonuses must NOT be included in pre_bonus_combined — they are for
927
- ordering only and must not inflate the displayed score.
928
-
929
- Tier ceilings:
930
- T1 confirmed production entrypoint 0.92–1.00
931
- T2 entrypoint (weaker category) 0.80–0.91
932
- T3 annotation-confirmed stereotype 0.40–0.90 (table-calibrated)
933
- T4 framework import evidence 0.55–0.79
934
- T5 code definitions + imports 0.38–0.54
935
- T6 build manifest / tooling / test 0.25–0.45
936
- T7 path/filesystem signal only 0.10–0.39
937
- """
938
- from sourcecode.file_classifier import JAVA_STEREOTYPE_CATEGORIES
939
-
940
- cat = file_class.category if file_class else None
941
- base_rel = file_class.relevance if file_class else 0.0
942
-
943
- # T1: confirmed production entrypoint
944
- if path in entry_paths and cat in ("runtime_core", "cli_entrypoint"):
945
- return round(min(1.0, max(0.92, base_rel)), 3)
946
-
947
- # T2: in entry_paths but weaker evidence category
948
- if path in entry_paths:
949
- return round(min(0.91, max(0.80, pre_bonus_combined / 2.0)), 3)
950
-
951
- # T3: annotation-confirmed stereotype — table values are already calibrated
952
- if file_class and cat in JAVA_STEREOTYPE_CATEGORIES:
953
- return round(base_rel, 3)
954
-
955
- # T4: framework import evidence (medium strength)
956
- if cat in ("api_layer", "database_layer", "infrastructure"):
957
- return round(min(0.79, max(0.55, pre_bonus_combined / 2.0)), 3)
958
-
959
- # T5: code definitions with imports (medium-low)
960
- if cat in ("application_logic", "domain_model"):
961
- return round(min(0.54, max(0.38, pre_bonus_combined / 2.0)), 3)
962
-
963
- # T6: build manifest / tooling / test
964
- if cat == "build_system":
965
- return round(min(0.45, base_rel), 3)
966
- if cat in ("tests", "tooling"):
967
- return round(min(0.35, base_rel), 3)
968
-
969
- # T7: no content classification — filesystem/structural signals only
970
- # has_structural_signals: fan_in, churn, export — allows up to 0.54
971
- # pure path/filename only — hard cap 0.39
972
- if has_structural_signals:
973
- return round(min(0.54, max(0.10, pre_bonus_combined / 2.0)), 3)
974
- return round(min(0.39, max(0.10, pre_bonus_combined / 2.0)), 3)
975
-
976
-
977
916
  def _build_file_signals(
978
917
  file_class: Any,
979
918
  path: str,
@@ -112,30 +112,6 @@ def _caught_types(catch_header_inner: str) -> list[str]:
112
112
  return types
113
113
 
114
114
 
115
- def _extract_method_body(source: str, method_name: str) -> str:
116
- """Extract the first method body matching method_name using brace counting.
117
-
118
- Returns the text from '{' to the matching '}', or empty string if not found.
119
- Needed to scope TX-005 regex to the specific method instead of the whole file.
120
- """
121
- pattern = re.compile(r'\b' + re.escape(method_name) + r'\s*\(')
122
- for m in pattern.finditer(source):
123
- brace_pos = source.find('{', m.end())
124
- if brace_pos < 0:
125
- continue
126
- depth = 1
127
- i = brace_pos + 1
128
- while i < len(source) and depth > 0:
129
- c = source[i]
130
- if c == '{':
131
- depth += 1
132
- elif c == '}':
133
- depth -= 1
134
- i += 1
135
- return source[brace_pos:i]
136
- return ""
137
-
138
-
139
115
  # ---------------------------------------------------------------------------
140
116
  # Pattern protocol
141
117
  # ---------------------------------------------------------------------------
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sourcecode
3
- Version: 2.5.16
3
+ Version: 2.5.17
4
4
  Summary: Persistent structural context and ultra-fast repeated analysis for AI coding agents
5
5
  License-File: LICENSE
6
6
  Keywords: agents,ai,codebase,context,developer-tools,llm
@@ -1,9 +1,9 @@
1
- sourcecode/__init__.py,sha256=1AEidIhoB0bOc0Hb9b3t-h8cPmjSPMex9CxZXJhKi98,309
2
- sourcecode/adaptive_scanner.py,sha256=XffluXKzJUXrMtjEiAOnSNPZnztdIcts17T9ouHeID0,10521
1
+ sourcecode/__init__.py,sha256=Ao5tzW0DQ-NV-o4Yno0H_QEOlx1oyQh_ih-rdREfXDs,309
2
+ sourcecode/adaptive_scanner.py,sha256=yJBKjNpkY6bpueYJ2YnRezen3sYZDecEt7WaaNWdqug,9466
3
3
  sourcecode/archetype.py,sha256=d7yoN6Tj4OBj-VgSMPEKg4WF9H8FypnZ5A6AkUh5oIE,34484
4
4
  sourcecode/architecture_analyzer.py,sha256=GFc4ek-s1IHWM7pl-0L32WahZ93AmDgrAMcOuBKA5Dk,61463
5
5
  sourcecode/architecture_summary.py,sha256=BVVRHd952cjRhjHnR6CPrvKgaa-tdM16l-pBi1yDCPs,32395
6
- sourcecode/ast_extractor.py,sha256=gBxHVDdmY5o6lcBxawYYA-2CpGbcJ8EEAewGLi5CfQ4,51477
6
+ sourcecode/ast_extractor.py,sha256=ZwHN3Y0iRp2gpv3t5Nm5uvX7Xw1KtULCJPZqKpZQRAE,51255
7
7
  sourcecode/cache.py,sha256=1V3vsaODAa2UBJAC0xpvxpmRdriCezQx5Q8JCcfgziE,31892
8
8
  sourcecode/call_surface.py,sha256=fiqYfHooxN1fX9oQoysq1LS3LoZcobhyUNjAGEZKpwk,4148
9
9
  sourcecode/caller_metrics.py,sha256=HG8RCOkpzzsEGdnMRob6byrwjoj5__t0TEsBj4yR7ks,2574
@@ -19,14 +19,14 @@ sourcecode/context_scorer.py,sha256=QpChSpsmaAYz91rXA4Ue5xzQmNz_ZboZN09YOHScq1U,
19
19
  sourcecode/context_summarizer.py,sha256=cI2TZMvEhl0BEma12VtPaX6z03ZVBAetVzuK5GaCOvg,6852
20
20
  sourcecode/contract_model.py,sha256=nRxJKPMs1VHwFTa8AVXhGmaLjti3Lr2sjHDpWgv1bfE,3917
21
21
  sourcecode/contract_pipeline.py,sha256=KfSgNkebcL5bYx3TDzEnvPLcTgm_JifJOAqqR8-0zb4,29774
22
- sourcecode/coverage_parser.py,sha256=q0LeZJaX1bnntLu-ImksdBsMlpsVmk_iUfSaB4eaJGo,19702
22
+ sourcecode/coverage_parser.py,sha256=X9scuUWxacahYTrTBGea2Ku-sf-WCVcnc9OEB35_3IU,19340
23
23
  sourcecode/dependency_analyzer.py,sha256=fQCaWQ7_BNcVgZv8gweJCwJ1CGlXsz8nw_tqN3aHJNE,63952
24
24
  sourcecode/doc_analyzer.py,sha256=05bjTUbDbmnbajD_cgRnACzS8T7xxBKVX4CjkJlhZg8,24411
25
25
  sourcecode/dynamic_argument_surface.py,sha256=iRzrJhs57UXrGvLhNPiTA-e_sdO6ka-wNqc0wIiegiM,2554
26
26
  sourcecode/endpoint_literals.py,sha256=Qf4gTZzvNSFDGDuOvF0YRL9NvaYKKj24klhR5LIOaXc,3263
27
27
  sourcecode/endpoint_metrics.py,sha256=sLSLUIgiIyvNdOynaxVgHd9SjRF_DbN3QxevaquykaU,2840
28
28
  sourcecode/entrypoint_classifier.py,sha256=jhTYlyqDJH2AtdEcLVaRU3lYRTJuF8DkxVzl4-W3zWE,5322
29
- sourcecode/env_analyzer.py,sha256=aNTyYgQk5noJDfJU6FmasmESOHfiomyJw5EvZqjy6qc,22213
29
+ sourcecode/env_analyzer.py,sha256=oLz4gDUE3BHlRRn6Qj4rnbjwyYjIZ0nlqO_SBQwL_H8,21999
30
30
  sourcecode/error_schema.py,sha256=uwosfNaSujtYm11_732Hu92z5ITV040fQDaIyefSvR4,1683
31
31
  sourcecode/evidence_provider.py,sha256=GSSL44JEaouO5AHks2sB3d1YvC9xIKIld1yBYxZpXxo,4277
32
32
  sourcecode/explain.py,sha256=HnHWVTNNf9fzeR3FP-A-eXKeKZvBcUEuODgIO3rJQkQ,22312
@@ -57,10 +57,10 @@ sourcecode/redactor.py,sha256=SB4hwIvg8h-hvcqKcDWaZvA-aSyn-at-BIRwa0tUv5E,3227
57
57
  sourcecode/relevance_scorer.py,sha256=0AgEt4KrV73nioMqBgjhGjtY7L2C7L7cSyKtj3IKcrw,9408
58
58
  sourcecode/rename_refactor.py,sha256=h6dNFlB9aZ_3q6heeHBkgXQeXaT03nvPSsYH6P8qxFg,12965
59
59
  sourcecode/repo_classifier.py,sha256=FG1vaWKdWXsWdl-S8hjVMiTqcwgaRXkDyvK4rPcOGtQ,22681
60
- sourcecode/repository_ir.py,sha256=mLsnKeZkbsEF2Jzl7FOKMtzo4lR9UTyrk2KhbeL4FcE,313566
60
+ sourcecode/repository_ir.py,sha256=Q2lMpm5x8ZAIY4MVKWEcLZ-BP26kUoP1dRfdER6gSbo,312316
61
61
  sourcecode/ris.py,sha256=Hw8TakTQ6hku-Abf2k8954NwkrH_sP73_8wVH8x5khc,22079
62
62
  sourcecode/runtime_classifier.py,sha256=uTAD6BDCiBLUZEDRfqk718kM4RTT_vAbfkcOI2_Xx58,18432
63
- sourcecode/scanner.py,sha256=WdOQ78mMzjR1NjmKTlbxdgwinnCTfAhxCVLBEFQiFHU,8899
63
+ sourcecode/scanner.py,sha256=z3CV0rcGunu0Y8mpNgp07wI7nxT0pxw1BkXRRtI0Rpo,9609
64
64
  sourcecode/schema.py,sha256=aHNXDf8LGyUC8ZDE_VS9kiskC2-Oswhi_WnpdGy6HDw,24897
65
65
  sourcecode/security_config.py,sha256=KblMEoRiEjrIE68YsPaUAFebxFp8UM7MS7lAk5CGD8U,3531
66
66
  sourcecode/security_posture.py,sha256=CAJw4oJD0aAW2yRewvd_fonkzi9_HpUjBZlIDZle00s,26034
@@ -68,14 +68,14 @@ sourcecode/semantic_analyzer.py,sha256=bpgdC6m0_ftVtRf3rSdwhbhWjnZnGxRXaZVcfe4Bb
68
68
  sourcecode/semantic_impact_engine.py,sha256=t09IirGC3JjQDy33JZd1_WKzQVKXkoNl3-XEUr5kjis,20563
69
69
  sourcecode/semantic_integration_engine.py,sha256=rxoCuP-uM_Y4-ELeBN0sz1a88e2eI1XTJDgsS57IOLI,15513
70
70
  sourcecode/semantic_services.py,sha256=nbUuPv-F01USTt_9CHT8iy_ucCIw3fz4W3Aquea_pd4,10782
71
- sourcecode/serializer.py,sha256=UCGwxPZw9jS_amhU4om9a4Z6VOGOpttNuPpLuhGnuuU,132052
71
+ sourcecode/serializer.py,sha256=zmN3pOcfxaQdxCE-jKoKudFjof9Sc_q7jpcBzNIA0EY,129493
72
72
  sourcecode/spring_event_topology.py,sha256=5_ON_21Le5zbG-1GRc5GLIi5HJfy_QjcXLVPC5WeUGQ,18055
73
73
  sourcecode/spring_findings.py,sha256=EX7kLZLN74CFyR9iZPm3CI115BfFKNd4WRPuErNljZM,5729
74
74
  sourcecode/spring_impact.py,sha256=MkUI27OCOhkjvBoA4f9X1eDBIY0SmyPuLVCWIfZgOcE,72430
75
75
  sourcecode/spring_model.py,sha256=zOAgFmrRbG4a6KLm1TJl55aWMyPNsz3OS3FSczqPG6A,16594
76
76
  sourcecode/spring_security_audit.py,sha256=Rk-aSohezdc7YDYbSoJquVnwpkDB8ty1BCD-4Hc4R5A,22832
77
77
  sourcecode/spring_semantic.py,sha256=jteQ1PkY9ArFJv0embg_jBIdbOxqrk9mQ2Xz8OF_FKA,14214
78
- sourcecode/spring_tx_analyzer.py,sha256=QMXkxa_hrqDVN3D8WJsd0nT7vfdZCT1E8ZWNoFFbvgU,34692
78
+ sourcecode/spring_tx_analyzer.py,sha256=7qXwQR9QbpVxbxJC-mawBMXM9xzydtZeq5L18cP_6GE,33884
79
79
  sourcecode/summarizer.py,sha256=sr0-tfecFKCr-fSkPPWbl-t9HC7SY2ZxkjnnXX8DB2A,26621
80
80
  sourcecode/tree_utils.py,sha256=8GAkIfQAsvtEudIeW1l4ooH_oRtrWR8cpJQJsEa_Pfw,2093
81
81
  sourcecode/type_usage_surface.py,sha256=51IrKRQoIoRnlsiDjHnqpJBn2rc6E59aRhgS0HTzAF0,4428
@@ -138,8 +138,8 @@ sourcecode/telemetry/consent.py,sha256=LIAO9ohJZF8OuZwM4u1VWtALlYfTCCKq4wV3Vwc7i
138
138
  sourcecode/telemetry/events.py,sha256=LtzYfaX9Ilckj5PTvAcTpDa9mLqDsYPDUiDkRa58piY,2580
139
139
  sourcecode/telemetry/filters.py,sha256=NHa5T-6DaZduQPFuC34jOqHWQgSizM-Ygq8aZ4j19ng,5834
140
140
  sourcecode/telemetry/transport.py,sha256=4gGHsq0WeY9VywEZXA3vUxykfiYnw9uuqfjAAec7F8o,1681
141
- sourcecode-2.5.16.dist-info/METADATA,sha256=zog1kb8UlXASniP5jKFyloD-2tLZ-sLMt80zRHaDqo0,10852
142
- sourcecode-2.5.16.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
143
- sourcecode-2.5.16.dist-info/entry_points.txt,sha256=-JEAdChrK5We51kZcb7OaDcyil-dHBjBPL-NhuO-QY8,89
144
- sourcecode-2.5.16.dist-info/licenses/LICENSE,sha256=7DdHrU9Z_3e7dSvq4ISijZNjnuHo5NIHNiHDouMQ9JU,10491
145
- sourcecode-2.5.16.dist-info/RECORD,,
141
+ sourcecode-2.5.17.dist-info/METADATA,sha256=Pp6k3FfuZdHiohzyuajk3p9MPq7gTCOecNy-m3iBI98,10852
142
+ sourcecode-2.5.17.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
143
+ sourcecode-2.5.17.dist-info/entry_points.txt,sha256=-JEAdChrK5We51kZcb7OaDcyil-dHBjBPL-NhuO-QY8,89
144
+ sourcecode-2.5.17.dist-info/licenses/LICENSE,sha256=7DdHrU9Z_3e7dSvq4ISijZNjnuHo5NIHNiHDouMQ9JU,10491
145
+ sourcecode-2.5.17.dist-info/RECORD,,