sessionState.ts ×2

Frontier kind: Code frontier

unlabeled · c_a181ea2d4ebc

505 tests · 12674 LOC · 56 files · introduces 0 tests · 32 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
2 ranges32 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
872 ranges12674 lines · 56 files · Browse complete extent
All tests (intent)
505 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: 32 introduced LOC across 2 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

src/vs/platform/agentHost/common/state/sessionState.ts 32 introduced LOC · 2 ranges

Open complete file

634 */
635 export function createChatState(summary: ChatSummary): ChatState {
636 > return { sessionState.ts
637 > resource: summary.resource,
638 > title: summary.title,
639 > status: summary.status,
640 > activity: summary.activity,
641 > modifiedAt: summary.modifiedAt,
642 > origin: summary.origin,
643 > interactivity: summary.interactivity,
644 > workingDirectories: summary.workingDirectories,
645 > primaryWorkingDirectory: summary.primaryWorkingDirectory,
646 > turns: [],
647 > activeTurn: undefined,
648 > };
649 > }
650
651 /**
657 */
658 export function createDefaultChatSummary(session: SessionSummary, chatUri: ProtocolURI): ChatSummary {
659 > const summary: ChatSummary = { sessionState.ts
660 > resource: chatUri,
661 > title: session.title,
662 > status: session.status,
663 > modifiedAt: session.modifiedAt,
664 > origin: { kind: ChatOriginKind.User },
665 > };
666 > if (session.activity !== undefined) { summary.activity = session.activity; }
667 > // `workingDirectories` is deliberately NOT copied: per the protocol it is a
668 > // per-chat SUBSET override and, when absent, the chat inherits the session's
669 > // full set of working directories (see `mergeSessionWithDefaultChat`).
670 > // Seeding it here would denormalize the session default onto every chat as a
671 > // fake override, which then goes stale when the session's working
672 > // directories are resolved later (e.g. a worktree resolved at
673 > // materialization). `primaryWorkingDirectory` is per-chat and fixed at chat
674 > // creation (the session has no primary), so it is likewise not seeded here.
675 > return summary;
676 > }
677
678 /** Activity bits (0-4) of {@link SessionStatus}; the high bits carry orthogonal flags (IsRead / IsArchived). */