(filename, raw_lines_no_comments, linenum,
error)
| 5692 | # If the line above is blank (excluding comments) or the start of |
| 5693 | # an inner namespace, it cannot be indented. |
| 5694 | def CheckItemIndentationInNamespace(filename, raw_lines_no_comments, linenum, |
| 5695 | error): |
| 5696 | line = raw_lines_no_comments[linenum] |
| 5697 | if Match(r'^\s+', line): |
| 5698 | error(filename, linenum, 'runtime/indentation_namespace', 4, |
| 5699 | 'Do not indent within a namespace') |
| 5700 | |
| 5701 | |
| 5702 | def ProcessLine(filename, file_extension, clean_lines, line, |
no test coverage detected