(directory, source, absolutePath)
| 284 | } |
| 285 | |
| 286 | function parseJsConfig(directory, source, absolutePath) { |
| 287 | if (!source) return null; |
| 288 | void directory; |
| 289 | void absolutePath; |
| 290 | try { |
| 291 | return extractConfigFromProgram(source); |
| 292 | } catch (_) { |
| 293 | return null; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | function parseProgram(source) { |
| 298 | try { |
no test coverage detected