(parser, **kwargs)
| 359 | |
| 360 | |
| 361 | def _cli_analyze(parser, **kwargs): |
| 362 | process_progress = add_progress_cli(parser) |
| 363 | process_output = add_output_cli(parser) |
| 364 | process_files = add_files_cli(parser, **kwargs) |
| 365 | return [ |
| 366 | process_progress, |
| 367 | process_output, |
| 368 | process_files, |
| 369 | ] |
| 370 | |
| 371 | |
| 372 | # XXX Support filtering by kind. |
nothing calls this directly
no test coverage detected
searching dependent graphs…