(self, pc)
| 320 | print(code) |
| 321 | |
| 322 | def Find(self, pc): |
| 323 | if pc < self.min_address or pc >= self.max_address: |
| 324 | return None |
| 325 | page_id = CodePage.PageId(pc) |
| 326 | if page_id not in self.pages: |
| 327 | return None |
| 328 | return self.pages[page_id].Find(pc) |
| 329 | |
| 330 | |
| 331 | class CodeInfo(object): |
no test coverage detected