()
| 258 | }; |
| 259 | |
| 260 | const pipeDefs = () => { |
| 261 | if (ngDevMode) { |
| 262 | for (const rawDep of imports) { |
| 263 | verifyStandaloneImport(rawDep, type); |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | if (!isComponent(type)) { |
| 268 | return []; |
| 269 | } |
| 270 | |
| 271 | const scope = depsTracker.getStandaloneComponentScope(type, imports); |
| 272 | |
| 273 | return [...scope.compilation.pipes].map((p) => getPipeDef(p)!).filter((d) => d !== null); |
| 274 | }; |
| 275 | |
| 276 | return { |
| 277 | directiveDefs, |
nothing calls this directly
no test coverage detected
searching dependent graphs…