(srclines, **srckwargs)
| 123 | |
| 124 | |
| 125 | def parse(srclines, **srckwargs): |
| 126 | if isinstance(srclines, str): # a filename |
| 127 | raise NotImplementedError |
| 128 | |
| 129 | anon_name = anonymous_names() |
| 130 | for result in _parse(srclines, anon_name, **srckwargs): |
| 131 | yield ParsedItem.from_raw(result) |
| 132 | |
| 133 | |
| 134 | # XXX Later: Add a separate function to deal with preprocessor directives |
nothing calls this directly
no test coverage detected
searching dependent graphs…