(self, name, linenum)
| 1853 | """Stores information about a namespace.""" |
| 1854 | |
| 1855 | def __init__(self, name, linenum): |
| 1856 | _BlockInfo.__init__(self, False) |
| 1857 | self.name = name or '' |
| 1858 | self.starting_linenum = linenum |
| 1859 | |
| 1860 | def CheckEnd(self, filename, clean_lines, linenum, error): |
| 1861 | """Check end of namespace comments.""" |