Stores information about a constructor. For detecting member initializer lists.
| 3158 | |
| 3159 | |
| 3160 | class _ConstructorInfo(_BlockInfo): |
| 3161 | """Stores information about a constructor. |
| 3162 | For detecting member initializer lists.""" |
| 3163 | |
| 3164 | def __init__(self, linenum: int): |
| 3165 | _BlockInfo.__init__(self, linenum, seen_open_brace=False) |
| 3166 | |
| 3167 | |
| 3168 | class _NamespaceInfo(_BlockInfo): |