We are inside a comment, find the end marker.
(lines, lineix)
| 1347 | |
| 1348 | |
| 1349 | def FindNextMultiLineCommentEnd(lines, lineix): |
| 1350 | """We are inside a comment, find the end marker.""" |
| 1351 | while lineix < len(lines): |
| 1352 | if lines[lineix].strip().endswith('*/'): |
| 1353 | return lineix |
| 1354 | lineix += 1 |
| 1355 | return len(lines) |
| 1356 | |
| 1357 | |
| 1358 | def RemoveMultiLineCommentsFromRange(lines, begin, end): |
no outgoing calls
no test coverage detected