(
e: string | RollupError,
position?: number | { column: number; line: number },
)
| 908 | } |
| 909 | |
| 910 | override error( |
| 911 | e: string | RollupError, |
| 912 | position?: number | { column: number; line: number }, |
| 913 | ): never { |
| 914 | // error thrown here is caught by the transform middleware and passed on |
| 915 | // the error middleware. |
| 916 | throw this._formatLog(e, position) |
| 917 | } |
| 918 | |
| 919 | private _formatLog<E extends RollupLog>( |
| 920 | e: string | E, |
nothing calls this directly
no test coverage detected