(self, name, linenum)
| 2826 | """Stores information about a namespace.""" |
| 2827 | |
| 2828 | def __init__(self, name, linenum): |
| 2829 | _BlockInfo.__init__(self, linenum, False) |
| 2830 | self.name = name or '' |
| 2831 | self.check_namespace_indentation = True |
| 2832 | |
| 2833 | def CheckEnd(self, filename, clean_lines, linenum, error): |
| 2834 | """Check end of namespace comments.""" |