(self, name)
| 116 | self.enum_list = [] |
| 117 | |
| 118 | def get_struct(self, name): |
| 119 | for struct in self.structs: |
| 120 | if name == struct.name: |
| 121 | return struct |
| 122 | raise Exception("No struct named: " + str(name)) |
| 123 | |
| 124 | def get_enum(self, name): |
| 125 | for s in self.enums: |
no outgoing calls
no test coverage detected