Clears a range of lines for multi-line comments.
(lines, begin, end)
| 1356 | |
| 1357 | |
| 1358 | def RemoveMultiLineCommentsFromRange(lines, begin, end): |
| 1359 | """Clears a range of lines for multi-line comments.""" |
| 1360 | # Having // dummy comments makes the lines non-empty, so we will not get |
| 1361 | # unnecessary blank line warnings later in the code. |
| 1362 | for i in range(begin, end): |
| 1363 | lines[i] = '/**/' |
| 1364 | |
| 1365 | |
| 1366 | def RemoveMultiLineComments(filename, lines, error): |
no outgoing calls
no test coverage detected