MCPcopy Index your code
hub / github.com/angular/angular / createDebugNameObject

Function createDebugNameObject

packages/core/rxjs-interop/src/to_signal.ts:237–244  ·  view source on GitHub ↗

* Creates a debug name object for an internal toSignal signal.

(
  toSignalDebugName: string | undefined,
  internalSignalDebugName: string,
)

Source from the content-addressed store, hash-verified

235 * Creates a debug name object for an internal toSignal signal.
236 */
237function createDebugNameObject(
238 toSignalDebugName: string | undefined,
239 internalSignalDebugName: string,
240): {debugName?: string} {
241 return {
242 debugName: `toSignal${toSignalDebugName ? '#' + toSignalDebugName : ''}.${internalSignalDebugName}`,
243 };
244}
245
246const enum StateKind {
247 NoValue,

Callers 1

toSignalFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…