Teach V8 heap layout information to the inspector. Set the first map-space page by passing any pointer into that page.
(self, address)
| 3999 | return self.do_known_map(address) |
| 4000 | |
| 4001 | def do_known_map(self, address): |
| 4002 | """ |
| 4003 | Teach V8 heap layout information to the inspector. |
| 4004 | |
| 4005 | Set the first map-space page by passing any pointer into that page. |
| 4006 | """ |
| 4007 | address = self.ParseAddressExpr(address) |
| 4008 | page_address = address & ~self.heap.PageAlignmentMask() |
| 4009 | self.padawan.known_first_map_page = page_address |
| 4010 | |
| 4011 | def do_list(self, smth): |
| 4012 | """ |
no test coverage detected