sessionDiffAggregator.ts ×3

Frontier kind: Code frontier

unlabeled · c_f74ba8f18b51

17 tests · 19841 LOC · 64 files · introduces 0 tests · 19 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
3 ranges19 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
1722 ranges19841 lines · 64 files · Browse complete extent
All tests (intent)
17 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.

1 file ranked by introduced lines: 19 introduced LOC across 3 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/agentHost/node/sessionDiffAggregator.ts 19 introduced LOC · 3 ranges

Open complete file

102 * file and the total lines added/removed across the session.
103 */
104 > export async function computeSessionDiffs( sessionDiffAggregator.ts
105 > sessionUri: string,
106 > db: ISessionDatabase,
107 > diffService: IDiffComputeService,
108 > incremental?: IIncrementalDiffOptions,
109 > ): Promise<ISessionFileDiff[]> {
110 > // Full mode (no incremental) is the single-source case of the unioned
111 > // computation — delegate so the identity-graph + diff logic lives in one
112 > // place and multi-chat sessions reuse the exact same code path.
113 > if (!incremental) {
114 return computeUnionedDiffs([{ sessionUri, db }], diffService);
115 }
153 // Track which identity keys were touched by the incremental turn.
154 // In fast-path mode all identities are from the current turn, so no tracking needed.
155 > const touchedIdentityKeys = !fastPath ? new Set<string>() : undefined; sessionDiffAggregator.ts
156 >
157 > for (const edit of edits) {
158 let identityKey: string;
159
203 ? new Map(incremental.previousDiffs.map(d => [getFileEditUri(d), d]))
204 : undefined;
206 > // Compute diffs for each file identity
207 > const results: ISessionFileDiff[] = [];
208 > const diffPromises: Promise<void>[] = [];
209 >
210 > for (const [identityKey, identity] of identities) {
211 // In incremental slow-path mode, skip recomputation for untouched identities
212 if (touchedIdentityKeys && !touchedIdentityKeys.has(identityKey)) {