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)
| 2733 | pass |
| 2734 | |
| 2735 | def CheckEnd(self, filename, clean_lines, linenum, error): |
| 2736 | """Run checks that applies to text after the closing brace. |
| 2737 | |
| 2738 | This is mostly used for checking end of namespace comments. |
| 2739 | |
| 2740 | Args: |
| 2741 | filename: The name of the current file. |
| 2742 | clean_lines: A CleansedLines instance containing the file. |
| 2743 | linenum: The number of the line to check. |
| 2744 | error: The function to call with any errors found. |
| 2745 | """ |
| 2746 | pass |
| 2747 | |
| 2748 | def IsBlockInfo(self): |
| 2749 | """Returns true if this block is a _BlockInfo. |