Clears a range of lines for multi-line comments.
(lines, begin, end)
| 1874 | |
| 1875 | |
| 1876 | def RemoveMultiLineCommentsFromRange(lines, begin, end): |
| 1877 | """Clears a range of lines for multi-line comments.""" |
| 1878 | # Having // dummy comments makes the lines non-empty, so we will not get |
| 1879 | # unnecessary blank line warnings later in the code. |
| 1880 | for i in range(begin, end): |
| 1881 | lines[i] = '/**/' |
| 1882 | |
| 1883 | |
| 1884 | def RemoveMultiLineComments(filename, lines, error): |
no outgoing calls
no test coverage detected