@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface ScopeInspection

    What a scope is still holding, as plain data.

    Exists because a count on its own is not actionable. "Four registrations survived shutdown" starts an investigation; "sample/projects still holds four" ends one. Only names and counts cross this boundary — the entries themselves are opaque callbacks, and a diagnostic gets logged and shared.

    interface ScopeInspection {
        children: readonly ScopeInspection[];
        name: string;
        size: number;
    }
    Index
    children: readonly ScopeInspection[]

    Attached children, which is where module and operation names appear.

    name: string

    The scope's diagnostic name, including its parent path.

    size: number

    Cleanup entries still held, including anonymous defer callbacks.