()
| 670 | } |
| 671 | |
| 672 | export function invalidResourceCreationInParams(): Error { |
| 673 | return new RuntimeError( |
| 674 | RuntimeErrorCode.INVALID_RESOURCE_CREATION_IN_PARAMS, |
| 675 | ngDevMode && `Cannot create a resource inside the \`params\` of another resource`, |
| 676 | ); |
| 677 | } |
| 678 | |
| 679 | export function rethrowFatalErrors(error: unknown) { |
| 680 | if ( |
no outgoing calls
no test coverage detected
searching dependent graphs…