agentHostToolCallTracker.ts ×2

Frontier kind: Code frontier

unlabeled · c_26bfb87a4038

72 tests · 42581 LOC · 237 files · introduces 0 tests · 8 LOC · 2 files

Introduces — evidence that enters the hierarchy at this concept

Code
4 ranges8 lines · 2 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
4039 ranges42581 lines · 237 files · Browse complete extent
All tests (intent)
72 testsBrowse complete intent

Neighbourhood graph

The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.

Introduced files, introduced tests, and structurally relevant concept specialization

In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.

Graph controls are ready.

Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

2 files ranked by introduced lines: 8 introduced LOC across 4 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/agentHost/node/agentHostToolCallTracker.ts 4 introduced LOC · 2 ranges

Open complete file

165
166 toolCallUnblocked(session: string, requestId: string): void {
167 > this._toolCallStallTimers.deleteAndDispose(this._key(session, requestId)); agentHostToolCallTracker.ts
168 > }
169
170 /**
199
200 private _key(session: string, toolCallId: string): string {
201 > return `${session}\0${toolCallId}`; agentHostToolCallTracker.ts
202 > }
203 }
src/vs/platform/agentHost/node/agentSideEffects.ts 4 introduced LOC · 2 ranges

Open complete file

457
458 private _removeSessionInputNeeded(chatUri: ProtocolURI, id: string): void {
459 > const sessionUri = parseRequiredSessionUriFromChatUri(chatUri); agentSideEffects.ts
460 > this._toolCallTracker.toolCallUnblocked(chatUri, id);
461 > if (!this._stateManager.getSessionState(sessionUri)?.inputNeeded?.some(r => r.id === id)) {
462 return;
463 }
464 this._stateManager.dispatchServerAction(sessionUri, { type: ActionType.SessionInputNeededRemoved, id });
466
467 private _removeSessionInputNeededForChat(chatUri: ProtocolURI): void {