(error: unknown)
| 1270 | } |
| 1271 | |
| 1272 | isValidationError(error: unknown): error is WebpackError { |
| 1273 | return (error as Error).name === "ValidationError"; |
| 1274 | } |
| 1275 | |
| 1276 | // Cache the expensive schema-to-arguments walk per webpack module and schema, held via `WeakRef` so the GC can reclaim the ~1MB result after command setup (a miss simply rebuilds it). |
| 1277 | #argumentsCache = new WeakMap< |
no outgoing calls
no test coverage detected