| 65 | |
| 66 | @dataclass |
| 67 | class StructDefinition(TypeDefinition): |
| 68 | Size: int |
| 69 | Aliases: list |
| 70 | Members: list |
| 71 | ExpectFEXMatch: bool |
| 72 | |
| 73 | def __init__(self, Name, Size): |
| 74 | super(StructDefinition, self).__init__(Name, TypeDefinition.TYPE_STRUCT) |
| 75 | self.Size = Size |
| 76 | self.Aliases = [] |
| 77 | self.Members = [] |
| 78 | self.ExpectFEXMatch = False |
| 79 | |
| 80 | @dataclass |
| 81 | class UnionDefinition(TypeDefinition): |
no outgoing calls
no test coverage detected