java-codebase-rag 0.6.2__py3-none-any.whl → 0.6.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.
ast_java.py CHANGED
@@ -14,8 +14,8 @@ from __future__ import annotations
14
14
 
15
15
  import posixpath
16
16
  import sys
17
+ import threading
17
18
  from dataclasses import dataclass, field
18
- from functools import lru_cache
19
19
  from typing import Iterable
20
20
 
21
21
  import tree_sitter_java as _ts_java
@@ -215,10 +215,23 @@ _ANON_SUPER_AS_INTERFACE: frozenset[str] = frozenset({
215
215
  })
216
216
 
217
217
 
218
- @lru_cache(maxsize=1)
218
+ # tree-sitter's ``Parser`` mutates internal state during ``parse()`` and is NOT
219
+ # thread-safe, so each OS thread gets its own instance. ``parse_java`` is called
220
+ # concurrently from worker threads when indexing runs with cocoindex's inflight
221
+ # parallelism — both directly (java_index_flow_lancedb.py: process_java_file
222
+ # offloads parse+enrich to asyncio.to_thread) and transitively
223
+ # (graph_enrich.collect_annotation_meta_chain -> _collect_annotation_decl_index
224
+ # -> parse_java, reached from enrich_chunk). The ``Language`` is immutable and
225
+ # shared; per-thread ``Parser`` construction is lazy and cheap (once per thread),
226
+ # which also preserves parse parallelism instead of serializing it.
227
+ _parser_tls = threading.local()
228
+
229
+
219
230
  def _parser() -> Parser:
220
- lang = Language(_ts_java.language())
221
- return Parser(lang)
231
+ p = getattr(_parser_tls, "parser", None)
232
+ if p is None:
233
+ _parser_tls.parser = p = Parser(Language(_ts_java.language()))
234
+ return p
222
235
 
223
236
 
224
237
  # ---------- dataclasses ----------
@@ -1565,62 +1578,20 @@ def _parse_codebase_http_route_inner_annotation(
1565
1578
  return out
1566
1579
 
1567
1580
 
1568
- def _codebase_route_inner_annotation_nodes(container_ann: Node, src: bytes) -> list[Node]:
1569
- found: list[Node] = []
1570
-
1571
- def visit(n: Node) -> None:
1572
- if n.type == "annotation":
1573
- name_node = n.child_by_field_name("name")
1574
- n_simple = _txt(name_node, src).rsplit(".", 1)[-1] if name_node is not None else ""
1575
- if n_simple == "CodebaseHttpRoute":
1576
- found.append(n)
1577
- for c in n.children:
1578
- visit(c)
1581
+ def _inner_annotation_nodes(container_ann: Node, src: bytes, target_simple: str) -> list[Node]:
1582
+ """Collect nested ``@<target_simple>`` annotations anywhere under ``container_ann``.
1579
1583
 
1580
- visit(container_ann)
1581
- return found
1582
-
1583
-
1584
- def _codebase_async_route_inner_annotation_nodes(container_ann: Node, src: bytes) -> list[Node]:
1585
- found: list[Node] = []
1586
-
1587
- def visit(n: Node) -> None:
1588
- if n.type == "annotation":
1589
- name_node = n.child_by_field_name("name")
1590
- n_simple = _txt(name_node, src).rsplit(".", 1)[-1] if name_node is not None else ""
1591
- if n_simple == "CodebaseAsyncRoute":
1592
- found.append(n)
1593
- for c in n.children:
1594
- visit(c)
1595
-
1596
- visit(container_ann)
1597
- return found
1598
-
1599
-
1600
- def _codebase_http_client_inner_annotation_nodes(container_ann: Node, src: bytes) -> list[Node]:
1601
- found: list[Node] = []
1602
-
1603
- def visit(n: Node) -> None:
1604
- if n.type == "annotation":
1605
- name_node = n.child_by_field_name("name")
1606
- n_simple = _txt(name_node, src).rsplit(".", 1)[-1] if name_node is not None else ""
1607
- if n_simple == "CodebaseHttpClient":
1608
- found.append(n)
1609
- for c in n.children:
1610
- visit(c)
1611
-
1612
- visit(container_ann)
1613
- return found
1614
-
1615
-
1616
- def _codebase_producer_inner_annotation_nodes(container_ann: Node, src: bytes) -> list[Node]:
1584
+ Shared by the four brownfield container walkers — ``CodebaseHttpRoute``,
1585
+ ``CodebaseAsyncRoute``, ``CodebaseHttpClient``, ``CodebaseProducer`` — which
1586
+ differ only by the target annotation simple name.
1587
+ """
1617
1588
  found: list[Node] = []
1618
1589
 
1619
1590
  def visit(n: Node) -> None:
1620
1591
  if n.type == "annotation":
1621
1592
  name_node = n.child_by_field_name("name")
1622
1593
  n_simple = _txt(name_node, src).rsplit(".", 1)[-1] if name_node is not None else ""
1623
- if n_simple == "CodebaseProducer":
1594
+ if n_simple == target_simple:
1624
1595
  found.append(n)
1625
1596
  for c in n.children:
1626
1597
  visit(c)
@@ -1842,7 +1813,7 @@ def _outgoing_calls_from_codebase_http_client_producer_annotations(
1842
1813
  ),
1843
1814
  )
1844
1815
  elif simple == "CodebaseHttpClients":
1845
- for inner in _codebase_http_client_inner_annotation_nodes(ann, src):
1816
+ for inner in _inner_annotation_nodes(ann, src, "CodebaseHttpClient"):
1846
1817
  out.append(
1847
1818
  _parse_codebase_http_client_annotation(
1848
1819
  inner,
@@ -1869,7 +1840,7 @@ def _outgoing_calls_from_codebase_http_client_producer_annotations(
1869
1840
  ),
1870
1841
  )
1871
1842
  elif simple == "CodebaseProducers":
1872
- for inner in _codebase_producer_inner_annotation_nodes(ann, src):
1843
+ for inner in _inner_annotation_nodes(ann, src, "CodebaseProducer"):
1873
1844
  out.append(
1874
1845
  _parse_codebase_producer_annotation(
1875
1846
  inner,
@@ -2343,7 +2314,7 @@ def _collect_routes(
2343
2314
  ),
2344
2315
  )
2345
2316
  elif simple == "CodebaseHttpRoutes":
2346
- for inner in _codebase_route_inner_annotation_nodes(node, src):
2317
+ for inner in _inner_annotation_nodes(node, src, "CodebaseHttpRoute"):
2347
2318
  routes.extend(
2348
2319
  _parse_codebase_http_route_inner_annotation(
2349
2320
  inner,
@@ -2359,7 +2330,7 @@ def _collect_routes(
2359
2330
  elif simple in ("CodebaseAsyncRoute", "CodebaseAsyncRoutes"):
2360
2331
  nodes = [node]
2361
2332
  if simple == "CodebaseAsyncRoutes":
2362
- nodes = list(_codebase_async_route_inner_annotation_nodes(node, src))
2333
+ nodes = list(_inner_annotation_nodes(node, src, "CodebaseAsyncRoute"))
2363
2334
  for ann in nodes:
2364
2335
  pairs, _ = _annotation_kv_nodes(ann, src)
2365
2336
  topic_node = pairs.get("topic")
build_ast_graph.py CHANGED
@@ -25,6 +25,7 @@ The LadybugDB DB is dropped and rebuilt on every run (Phase 1 is a full rebuild)
25
25
  from __future__ import annotations
26
26
 
27
27
  import argparse
28
+ import contextlib
28
29
  import hashlib
29
30
  import json
30
31
  import logging
@@ -84,6 +85,53 @@ def _verbose_stderr_line(content: str) -> None:
84
85
  print(content, file=sys.stderr, flush=True)
85
86
 
86
87
 
88
+ def _emit_graph_progress(parts: dict[str, object], *, verbose: bool) -> None:
89
+ """Emit one ``JCIRAG_PROGRESS kind=graph …`` line to stderr (gated by verbose).
90
+
91
+ The parent process (``pipeline.run_build_ast_graph`` /
92
+ ``run_incremental_graph``) passes ``--verbose`` in default AND verbose modes
93
+ (only suppressed for ``--quiet``), so this structured progress surfaces in
94
+ default mode (where the parent renders it) and verbose mode (raw relay). In
95
+ ``--quiet`` the builder is never invoked with ``--verbose`` so nothing is
96
+ emitted. Field order is fixed so the parser and tests can pin substrings.
97
+ """
98
+ if not verbose:
99
+ return
100
+ fields = ["kind=graph"]
101
+ for key in ("pass", "done", "total", "status", "elapsed_s"):
102
+ if key in parts:
103
+ fields.append(f"{key}={parts[key]}")
104
+ line = "JCIRAG_PROGRESS " + " ".join(fields)
105
+ _verbose_stderr_line(line)
106
+
107
+
108
+ # Pass-1 per-file tick cadence: bound stderr volume on huge trees without making
109
+ # the bar feel stale. A final tick on pass completion carries status=done.
110
+ _PASS1_TICK_EVERY = 25
111
+
112
+
113
+ @contextlib.contextmanager
114
+ def _graph_pass_progress(pass_label: str, *, verbose: bool):
115
+ """Emit ``pass=N/6 status=running`` on entry and ``status=done elapsed_s=…``
116
+ on exit for passes 2–6 (each advances the rendered bar by 1/6).
117
+
118
+ Usage: ``with _graph_pass_progress("2/6", verbose=verbose): …``
119
+ """
120
+ if not verbose:
121
+ yield
122
+ return
123
+ _emit_graph_progress({"pass": pass_label, "status": "running"}, verbose=verbose)
124
+ t0 = time.time()
125
+ try:
126
+ yield
127
+ finally:
128
+ elapsed = time.time() - t0
129
+ _emit_graph_progress(
130
+ {"pass": pass_label, "status": "done", "elapsed_s": f"{elapsed:.2f}"},
131
+ verbose=verbose,
132
+ )
133
+
134
+
87
135
  class _VerbosePassHeartbeats:
88
136
  """Emit ``[tag] running … Ns elapsed`` every 5s on stderr while in scope (verbose only)."""
89
137
 
@@ -837,7 +885,14 @@ def _register_type(
837
885
  return entry
838
886
 
839
887
 
840
- def pass1_parse(root: Path, tables: GraphTables, *, verbose: bool, scope_files: set[str] | None = None) -> dict[str, JavaFileAst]:
888
+ def pass1_parse(
889
+ root: Path,
890
+ tables: GraphTables,
891
+ *,
892
+ verbose: bool,
893
+ scope_files: set[str] | None = None,
894
+ removed_files: set[str] | None = None,
895
+ ) -> dict[str, JavaFileAst]:
841
896
  """Walk files, parse them, populate node indexes. Returns path -> AST.
842
897
 
843
898
  Args:
@@ -845,6 +900,11 @@ def pass1_parse(root: Path, tables: GraphTables, *, verbose: bool, scope_files:
845
900
  tables: GraphTables to populate.
846
901
  verbose: Whether to emit progress output.
847
902
  scope_files: Optional set of relative POSIX paths to parse. If None, parse all files.
903
+ removed_files: Optional set of relative POSIX paths that no longer exist
904
+ on disk (incremental deletions). These are members of ``scope_files``
905
+ (they were deleted, so they participate in scoped deletion) but are
906
+ never visited by the parse walk, so they must be excluded from the
907
+ pass-1 total to keep ``done`` from undercounting then two-way-clamping.
848
908
  """
849
909
  asts: dict[str, JavaFileAst] = {}
850
910
  ignore = LayeredIgnore(root)
@@ -852,6 +912,23 @@ def pass1_parse(root: Path, tables: GraphTables, *, verbose: bool, scope_files:
852
912
  n_files = 0
853
913
  if verbose:
854
914
  _verbose_stderr_line(_PASS1_START)
915
+ # Count-first: one filtered walk (no parsing) to set the EXACT total before
916
+ # the parse loop ticks. Single-layer ignore → the count is exact, so the
917
+ # rendered bar is determinate. For a scoped (incremental) parse the total is
918
+ # the number of files that will actually be visited: scope minus any removed
919
+ # files (which are members of scope for deletion but gone from disk, so the
920
+ # parse walk never ticks them); for a full rebuild it is the non-ignored
921
+ # .java count.
922
+ if verbose:
923
+ if scope_files is not None:
924
+ removed = removed_files if removed_files is not None else set()
925
+ pass1_total = len(scope_files - removed)
926
+ else:
927
+ pass1_total = sum(1 for _ in iter_java_source_files(root, ignore=ignore))
928
+ _emit_graph_progress(
929
+ {"pass": "1/6", "done": 0, "total": pass1_total, "status": "running"},
930
+ verbose=verbose,
931
+ )
855
932
  slow_sec = 0.0
856
933
  raw_slow = os.environ.get("JAVA_CODEBASE_RAG_TEST_GRAPH_SLOW_SEC", "").strip()
857
934
  if raw_slow:
@@ -871,6 +948,11 @@ def pass1_parse(root: Path, tables: GraphTables, *, verbose: bool, scope_files:
871
948
  if scope_files is not None and rel not in scope_files:
872
949
  continue
873
950
  n_files += 1
951
+ if verbose and (n_files % _PASS1_TICK_EVERY == 0):
952
+ _emit_graph_progress(
953
+ {"pass": "1/6", "done": n_files, "status": "running"},
954
+ verbose=verbose,
955
+ )
874
956
  try:
875
957
  content = p.read_bytes()
876
958
  except OSError:
@@ -906,6 +988,10 @@ def pass1_parse(root: Path, tables: GraphTables, *, verbose: bool, scope_files:
906
988
 
907
989
  if verbose:
908
990
  elapsed = time.time() - t0
991
+ _emit_graph_progress(
992
+ {"pass": "1/6", "done": n_files, "status": "done", "elapsed_s": f"{elapsed:.2f}"},
993
+ verbose=verbose,
994
+ )
909
995
  _verbose_stderr_line(
910
996
  f"[graph] pass 1 · parsed {n_files} files in {elapsed:.2f}s: "
911
997
  f"{len(tables.types)} types, {len(tables.members)} members, "
@@ -1145,7 +1231,7 @@ def pass2_edges(tables: GraphTables, asts: dict[str, JavaFileAst], *, verbose: b
1145
1231
  seen_inj: set[tuple[str, str, str, str]] = set()
1146
1232
  if verbose:
1147
1233
  _verbose_stderr_line(_PASS2_START)
1148
- with _VerbosePassHeartbeats("[graph] pass 2", verbose=verbose):
1234
+ with _graph_pass_progress("2/6", verbose=verbose), _VerbosePassHeartbeats("[graph] pass 2", verbose=verbose):
1149
1235
  for fqn, entry in tables.types.items():
1150
1236
  ast = asts.get(entry.file_path)
1151
1237
  if ast is None:
@@ -1818,7 +1904,7 @@ def pass3_calls(tables: GraphTables, asts: dict[str, JavaFileAst], *, verbose: b
1818
1904
  _verbose_stderr_line(_PASS3_START)
1819
1905
  _build_member_indexes(tables)
1820
1906
  stats = CallResolutionStats()
1821
- with _VerbosePassHeartbeats("[graph] pass 3", verbose=verbose):
1907
+ with _graph_pass_progress("3/6", verbose=verbose), _VerbosePassHeartbeats("[graph] pass 3", verbose=verbose):
1822
1908
  for rel_path, file_ast in asts.items():
1823
1909
  try:
1824
1910
  _process_file_calls(file_ast, rel_path, tables, stats)
@@ -1924,8 +2010,21 @@ def _producer_id(
1924
2010
  return f"p:{hashlib.sha1(key.encode()).hexdigest()[:16]}"
1925
2011
 
1926
2012
 
2013
+ # The four brownfield source layers — single source of truth. Consumed by the
2014
+ # client/producer source-layer classifiers, the *_from_brownfield_pct stats
2015
+ # (via brownfield_strategies), and the brownfield_only authoritativeness gate in
2016
+ # _is_brownfield_sourced. codebase_client/codebase_producer are caller-side
2017
+ # declaration strategies, not layers — they extend brownfield_strategies only.
2018
+ _BROWNFIELD_LAYERS = frozenset({
2019
+ "layer_a_meta",
2020
+ "layer_b_ann",
2021
+ "layer_b_fqn",
2022
+ "layer_c_source",
2023
+ })
2024
+
2025
+
1927
2026
  def _client_source_layer(strategy: str) -> str:
1928
- if strategy in {"layer_a_meta", "layer_b_ann", "layer_b_fqn", "layer_c_source"}:
2027
+ if strategy in _BROWNFIELD_LAYERS:
1929
2028
  return strategy
1930
2029
  # Some caller extraction paths emit client kind as strategy; treat those
1931
2030
  # as builtin-source declarations instead of warning on every row.
@@ -1937,7 +2036,7 @@ def _client_source_layer(strategy: str) -> str:
1937
2036
 
1938
2037
 
1939
2038
  def _producer_source_layer(strategy: str) -> str:
1940
- if strategy in {"layer_a_meta", "layer_b_ann", "layer_b_fqn", "layer_c_source"}:
2039
+ if strategy in _BROWNFIELD_LAYERS:
1941
2040
  return strategy
1942
2041
  if strategy in VALID_PRODUCER_KINDS:
1943
2042
  return "builtin"
@@ -1972,7 +2071,7 @@ def pass4_routes(
1972
2071
  meta_chain = collect_annotation_meta_chain(prs)
1973
2072
  if verbose:
1974
2073
  _verbose_stderr_line(_PASS4_START)
1975
- with _VerbosePassHeartbeats("[graph] pass 4", verbose=verbose):
2074
+ with _graph_pass_progress("4/6", verbose=verbose), _VerbosePassHeartbeats("[graph] pass 4", verbose=verbose):
1976
2075
 
1977
2076
  for ast in asts.values():
1978
2077
  stats.routes_skipped_unresolved += ast.routes_skipped_unresolved
@@ -2149,7 +2248,7 @@ def pass5_imperative_edges(
2149
2248
 
2150
2249
  if verbose:
2151
2250
  _verbose_stderr_line(_PASS5_START)
2152
- with _VerbosePassHeartbeats("[graph] pass 5", verbose=verbose):
2251
+ with _graph_pass_progress("5/6", verbose=verbose), _VerbosePassHeartbeats("[graph] pass 5", verbose=verbose):
2153
2252
  for member in sorted(tables.members, key=lambda x: x.node_id):
2154
2253
  if member.decl.is_constructor:
2155
2254
  continue
@@ -2372,15 +2471,14 @@ def pass5_imperative_edges(
2372
2471
  tables.producer_stats.producers_by_kind = defaultdict(int)
2373
2472
  for row in tables.producer_rows:
2374
2473
  tables.producer_stats.producers_by_kind[row.producer_kind] += 1
2375
- brownfield_strategies = frozenset(
2376
- (
2377
- "layer_b_ann",
2378
- "layer_a_meta",
2379
- "layer_c_source",
2380
- "layer_b_fqn",
2381
- "codebase_client",
2382
- "codebase_producer",
2383
- ),
2474
+ # brownfield_strategies = the four brownfield layers plus the two
2475
+ # caller-side declaration strategies (@CodebaseHttpClient /
2476
+ # @CodebaseProducer). These extend _BROWNFIELD_LAYERS deliberately:
2477
+ # the *_from_brownfield_pct stats count annotation-declared callers as
2478
+ # brownfield-sourced even though they are not "layers" and so do not
2479
+ # gate brownfield_only authoritativeness in _is_brownfield_sourced.
2480
+ brownfield_strategies = _BROWNFIELD_LAYERS | frozenset(
2481
+ {"codebase_client", "codebase_producer"},
2384
2482
  )
2385
2483
  if tables.call_edge_stats.http_calls_total:
2386
2484
  n_http = sum(
@@ -2482,14 +2580,6 @@ def _match_call_edge(
2482
2580
  return "cross_service", candidates
2483
2581
 
2484
2582
 
2485
- _BROWNFIELD_LAYERS = frozenset({
2486
- "layer_c_source",
2487
- "layer_b_ann",
2488
- "layer_b_fqn",
2489
- "layer_a_meta",
2490
- })
2491
-
2492
-
2493
2583
  def _is_brownfield_sourced(
2494
2584
  call_strategy: str,
2495
2585
  candidates: list[RouteRow],
@@ -2551,7 +2641,7 @@ def pass6_match_edges(
2551
2641
 
2552
2642
  if verbose:
2553
2643
  _verbose_stderr_line(_PASS6_START)
2554
- with _VerbosePassHeartbeats("[graph] pass 6", verbose=verbose):
2644
+ with _graph_pass_progress("6/6", verbose=verbose), _VerbosePassHeartbeats("[graph] pass 6", verbose=verbose):
2555
2645
  for row in tables.http_call_rows:
2556
2646
  if row.match != "unresolved":
2557
2647
  continue
@@ -3586,7 +3676,9 @@ def incremental_rebuild(
3586
3676
  _verbose_stderr_line("[increment] rebuilding scoped files (passes 1-4)")
3587
3677
 
3588
3678
  tables = GraphTables()
3589
- asts = pass1_parse(source_root, tables, verbose=verbose, scope_files=scope_files)
3679
+ asts = pass1_parse(
3680
+ source_root, tables, verbose=verbose, scope_files=scope_files, removed_files=removed
3681
+ )
3590
3682
 
3591
3683
  # Load existing types and members for cross-file resolution (only from unchanged files)
3592
3684
  _load_existing_types(conn, tables, exclude_files=scope_files)
graph_enrich.py CHANGED
@@ -23,7 +23,7 @@ import sys
23
23
  from dataclasses import dataclass, field, replace
24
24
  from functools import lru_cache
25
25
  from pathlib import Path
26
- from typing import Any
26
+ from typing import Any, TypeVar
27
27
  from ast_java import (
28
28
  AnnotationRef,
29
29
  JavaFileAst,
@@ -820,7 +820,15 @@ def _route_path_atom(raw_value: str, value_kind: str | None) -> tuple[str, str,
820
820
  return "", "constant_ref", 0.7, False
821
821
 
822
822
 
823
- def _route_hint_lookup(ann: AnnotationRef, hints: dict[str, RouteHint]) -> RouteHint | None:
823
+ _HINT = TypeVar("_HINT")
824
+
825
+
826
+ def _hint_lookup(ann: AnnotationRef, hints: dict[str, _HINT]) -> _HINT | None:
827
+ """Resolve a brownfield hint by qualified name, then simple name, then suffix.
828
+
829
+ Shared by route / http-client / async-producer hint resolution; the three
830
+ former copies differed only in the hint value type.
831
+ """
824
832
  q = ann.qualified.strip()
825
833
  if q in hints:
826
834
  return hints[q]
@@ -1118,7 +1126,7 @@ def resolve_routes_for_method(
1118
1126
 
1119
1127
  # ----- Step 2: Layer B — annotation route hints -----
1120
1128
  for _is_m, ann in combined_anns:
1121
- hint = _route_hint_lookup(ann, overrides.annotation_to_route_hint)
1129
+ hint = _hint_lookup(ann, overrides.annotation_to_route_hint)
1122
1130
  if hint is None:
1123
1131
  continue
1124
1132
  working.append(
@@ -1172,36 +1180,6 @@ def resolve_routes_for_method(
1172
1180
  return working
1173
1181
 
1174
1182
 
1175
- def _client_hint_lookup(
1176
- ann: AnnotationRef,
1177
- hints: dict[str, HttpClientHint],
1178
- ) -> HttpClientHint | None:
1179
- q = ann.qualified.strip()
1180
- if q in hints:
1181
- return hints[q]
1182
- if ann.name in hints:
1183
- return hints[ann.name]
1184
- for k, h in sorted(hints.items(), key=lambda kv: kv[0]):
1185
- if k.endswith("." + ann.name):
1186
- return h
1187
- return None
1188
-
1189
-
1190
- def _async_hint_lookup(
1191
- ann: AnnotationRef,
1192
- hints: dict[str, AsyncProducerHint],
1193
- ) -> AsyncProducerHint | None:
1194
- q = ann.qualified.strip()
1195
- if q in hints:
1196
- return hints[q]
1197
- if ann.name in hints:
1198
- return hints[ann.name]
1199
- for k, h in sorted(hints.items(), key=lambda kv: kv[0]):
1200
- if k.endswith("." + ann.name):
1201
- return h
1202
- return None
1203
-
1204
-
1205
1183
  def _call_from_http_hint(
1206
1184
  *,
1207
1185
  hint: HttpClientHint,
@@ -1296,7 +1274,7 @@ def resolve_http_client_for_method(
1296
1274
  anchor = builtin_http[0] if builtin_http else (layer_c_src[0] if layer_c_src else None)
1297
1275
 
1298
1276
  for _is_m, ann in combined_anns:
1299
- hint = _client_hint_lookup(ann, overrides.annotation_to_http_client_hint)
1277
+ hint = _hint_lookup(ann, overrides.annotation_to_http_client_hint)
1300
1278
  if hint is None:
1301
1279
  continue
1302
1280
  brownfield_calls.append(
@@ -1388,7 +1366,7 @@ def resolve_async_producer_for_method(
1388
1366
  anchor = builtin_async[0] if builtin_async else (layer_c_src[0] if layer_c_src else None)
1389
1367
 
1390
1368
  for _is_m, ann in combined_anns:
1391
- hint = _async_hint_lookup(ann, overrides.annotation_to_async_producer_hint)
1369
+ hint = _hint_lookup(ann, overrides.annotation_to_async_producer_hint)
1392
1370
  if hint is None:
1393
1371
  continue
1394
1372
  brownfield_calls.append(