(filename, raw_lines_no_comments, linenum,
error)
| 6338 | # If the line above is blank (excluding comments) or the start of |
| 6339 | # an inner namespace, it cannot be indented. |
| 6340 | def CheckItemIndentationInNamespace(filename, raw_lines_no_comments, linenum, |
| 6341 | error): |
| 6342 | line = raw_lines_no_comments[linenum] |
| 6343 | if Match(r'^\s+', line): |
| 6344 | error(filename, linenum, 'runtime/indentation_namespace', 4, |
| 6345 | 'Do not indent within a namespace') |
| 6346 | |
| 6347 | |
| 6348 | def ProcessLine(filename, file_extension, clean_lines, line, |
no test coverage detected