(filenames=None, **kwargs)
| 178 | |
| 179 | |
| 180 | def cmd_analyze(filenames=None, **kwargs): |
| 181 | formats = dict(c_analyzer.FORMATS) |
| 182 | formats['summary'] = fmt_summary |
| 183 | filenames = _resolve_filenames(filenames) |
| 184 | kwargs['get_file_preprocessor'] = _parser.get_preprocessor(log_err=print) |
| 185 | c_analyzer.cmd_analyze( |
| 186 | filenames, |
| 187 | relroot=REPO_ROOT, |
| 188 | _analyze=_analyzer.analyze, |
| 189 | formats=formats, |
| 190 | file_maxsizes=_parser.MAX_SIZES, |
| 191 | **kwargs |
| 192 | ) |
| 193 | |
| 194 | |
| 195 | def _cli_data(parser): |
nothing calls this directly
no test coverage detected
searching dependent graphs…