MCPcopy Create free account
hub / github.com/angular/angular / formatRuntimeErrorCode

Function formatRuntimeErrorCode

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

Source from the content-addressed store, hash-verified

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