We are inside a comment, find the end marker.
(lines, lineix)
| 935 | |
| 936 | |
| 937 | def FindNextMultiLineCommentEnd(lines, lineix): |
| 938 | """We are inside a comment, find the end marker.""" |
| 939 | while lineix < len(lines): |
| 940 | if lines[lineix].strip().endswith('*/'): |
| 941 | return lineix |
| 942 | lineix += 1 |
| 943 | return len(lines) |
| 944 | |
| 945 | |
| 946 | def RemoveMultiLineCommentsFromRange(lines, begin, end): |
no outgoing calls
no test coverage detected