Stores information about a constructor. For detecting member initializer lists.
| 3098 | |
| 3099 | |
| 3100 | class _ConstructorInfo(_BlockInfo): |
| 3101 | """Stores information about a constructor. |
| 3102 | For detecting member initializer lists.""" |
| 3103 | |
| 3104 | def __init__(self, linenum: int): |
| 3105 | _BlockInfo.__init__(self, linenum, seen_open_brace=False) |
| 3106 | |
| 3107 | |
| 3108 | class _NamespaceInfo(_BlockInfo): |