(self, filename, clean_lines, linenum, error)
| 1419 | break |
| 1420 | |
| 1421 | def CheckBegin(self, filename, clean_lines, linenum, error): |
| 1422 | # Look for a bare ':' |
| 1423 | if Search('(^|[^:]):($|[^:])', clean_lines.elided[linenum]): |
| 1424 | self.is_derived = True |
| 1425 | |
| 1426 | |
| 1427 | class _NamespaceInfo(_BlockInfo): |