| 46 | |
| 47 | @dataclass |
| 48 | class StructDefinition(TypeDefinition): |
| 49 | Size: int |
| 50 | Aliases: list |
| 51 | Members: list |
| 52 | ExpectFEXMatch: bool |
| 53 | |
| 54 | def __init__(self, Name, Size): |
| 55 | super(StructDefinition, self).__init__(Name, TypeDefinition.TYPE_STRUCT) |
| 56 | self.Size = Size |
| 57 | self.Aliases = [] |
| 58 | self.Members = [] |
| 59 | self.ExpectFEXMatch = False |
| 60 | |
| 61 | @dataclass |
| 62 | class UnionDefinition(TypeDefinition): |
no outgoing calls
no test coverage detected