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)
| 2133 | pass |
| 2134 | |
| 2135 | def CheckEnd(self, filename, clean_lines, linenum, error): |
| 2136 | """Run checks that applies to text after the closing brace. |
| 2137 | |
| 2138 | This is mostly used for checking end of namespace comments. |
| 2139 | |
| 2140 | Args: |
| 2141 | filename: The name of the current file. |
| 2142 | clean_lines: A CleansedLines instance containing the file. |
| 2143 | linenum: The number of the line to check. |
| 2144 | error: The function to call with any errors found. |
| 2145 | """ |
| 2146 | pass |
| 2147 | |
| 2148 | def IsBlockInfo(self): |
| 2149 | """Returns true if this block is a _BlockInfo. |