( _strings: TemplateStringsArray, ..._values: unknown[] )
| 128 | |
| 129 | // Must be regular functions (not arrows) to access `arguments` |
| 130 | function slowLoggingAnt( |
| 131 | _strings: TemplateStringsArray, |
| 132 | ..._values: unknown[] |
| 133 | ): AntSlowLogger { |
| 134 | // eslint-disable-next-line prefer-rest-params |
| 135 | return new AntSlowLogger(arguments) |
| 136 | } |
| 137 | |
| 138 | function slowLoggingExternal(): Disposable { |
| 139 | return NOOP_LOGGER |
nothing calls this directly
no outgoing calls
no test coverage detected