Run checks that applies to text after the closing brace. This is mostly used for checking end of namespace comments. Args: filename: The name of the current file. clean_lines: A CleansedLines instance containing the file. linenum: The number of the line to check. er
(self, filename, clean_lines, linenum, error)
| 1780 | pass |
| 1781 | |
| 1782 | def CheckEnd(self, filename, clean_lines, linenum, error): |
| 1783 | """Run checks that applies to text after the closing brace. |
| 1784 | |
| 1785 | This is mostly used for checking end of namespace comments. |
| 1786 | |
| 1787 | Args: |
| 1788 | filename: The name of the current file. |
| 1789 | clean_lines: A CleansedLines instance containing the file. |
| 1790 | linenum: The number of the line to check. |
| 1791 | error: The function to call with any errors found. |
| 1792 | """ |
| 1793 | pass |
| 1794 | |
| 1795 | |
| 1796 | class _ClassInfo(_BlockInfo): |