We are inside a comment, find the end marker.
(lines, lineix)
| 1865 | |
| 1866 | |
| 1867 | def FindNextMultiLineCommentEnd(lines, lineix): |
| 1868 | """We are inside a comment, find the end marker.""" |
| 1869 | while lineix < len(lines): |
| 1870 | if lines[lineix].strip().endswith('*/'): |
| 1871 | return lineix |
| 1872 | lineix += 1 |
| 1873 | return len(lines) |
| 1874 | |
| 1875 | |
| 1876 | def RemoveMultiLineCommentsFromRange(lines, begin, end): |
no outgoing calls
no test coverage detected