MCPcopy
hub / github.com/angular/angular / formatRuntimeErrorCode

Function formatRuntimeErrorCode

packages/core/src/errors.ts:187–192  ·  view source on GitHub ↗
(code: T)

Source from the content-addressed store, hash-verified

185}
186
187export function formatRuntimeErrorCode<T extends number = RuntimeErrorCode>(code: T): string {
188 // Error code might be a negative number, which is a special marker that instructs the logic to
189 // generate a link to the error details page on angular.io.
190 // We also prepend `0` to non-compile-time errors.
191 return `NG0${Math.abs(code)}`;
192}
193
194/**
195 * Called to format a runtime error.

Callers 2

defer_spec.tsFile · 0.90
formatRuntimeErrorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…