Clears a range of lines for multi-line comments.
(lines, begin, end)
| 1387 | |
| 1388 | |
| 1389 | def RemoveMultiLineCommentsFromRange(lines, begin, end): |
| 1390 | """Clears a range of lines for multi-line comments.""" |
| 1391 | # Having // dummy comments makes the lines non-empty, so we will not get |
| 1392 | # unnecessary blank line warnings later in the code. |
| 1393 | for i in range(begin, end): |
| 1394 | lines[i] = '/**/' |
| 1395 | |
| 1396 | |
| 1397 | def RemoveMultiLineComments(filename, lines, error): |
no outgoing calls
no test coverage detected