Clears a range of lines for multi-line comments.
(lines, begin, end)
| 1863 | |
| 1864 | |
| 1865 | def RemoveMultiLineCommentsFromRange(lines, begin, end): |
| 1866 | """Clears a range of lines for multi-line comments.""" |
| 1867 | # Having // <empty> comments makes the lines non-empty, so we will not get |
| 1868 | # unnecessary blank line warnings later in the code. |
| 1869 | for i in range(begin, end): |
| 1870 | lines[i] = '/**/' |
| 1871 | |
| 1872 | |
| 1873 | def RemoveMultiLineComments(filename, lines, error): |
no outgoing calls
no test coverage detected