MCPcopy Create free account
hub / github.com/cortex-js/compute-engine / symbolInfo

Method symbolInfo

src/compute-engine/index.ts:1202–1210  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

1200 discard(cp: EngineCheckpoint): void {
1201 discardCheckpoint(this, cp);
1202 }
1203
1204 /** The state-event choke point — see `IComputeEngine._noteStateEvent`.
1205 * @internal */
1206 _noteStateEvent(event: StateEvent): void {
1207 // Bypass canary (`CE_CHECKPOINT_CANARY`, off by default): tally the event
1208 // against the active journal window, so the differential harness can find
1209 // an event KIND the window saw with no journaling hook of that kind
1210 // behind it. Counts are never compared — first-write dedup makes them
1211 // incomparable by design.
1212 if (CHECKPOINT_CANARY) this._checkpointWindow?.noteEvent(event.kind);
1213 this._configurationLifecycle.noteStateEvent(event);

Callers

nothing calls this directly

Calls 2

lookupDefinitionMethod · 0.95
isValueDefFunction · 0.90

Tested by

no test coverage detected