Clears a range of lines for multi-line comments.
(lines, begin, end)
| 2075 | |
| 2076 | |
| 2077 | def RemoveMultiLineCommentsFromRange(lines, begin, end): |
| 2078 | """Clears a range of lines for multi-line comments.""" |
| 2079 | # Having // <empty> comments makes the lines non-empty, so we will not get |
| 2080 | # unnecessary blank line warnings later in the code. |
| 2081 | for i in range(begin, end): |
| 2082 | lines[i] = "/**/" |
| 2083 | |
| 2084 | |
| 2085 | def RemoveMultiLineComments(filename, lines, error): |
nothing calls this directly
no test coverage detected
searching dependent graphs…