Print a Map in a readable format.
(self, address)
| 3936 | DescriptorArray(FixedArray(self.heap, None, start)).Print(Printer()) |
| 3937 | |
| 3938 | def do_do_map(self, address): |
| 3939 | """ |
| 3940 | Print a Map in a readable format. |
| 3941 | """ |
| 3942 | start = self.ParseAddressExpr(address) |
| 3943 | if ((start & 1) == 1): start = start - 1 |
| 3944 | Map(self.heap, None, start).Print(Printer()) |
| 3945 | |
| 3946 | def do_do_trans(self, address): |
| 3947 | """ |
nothing calls this directly
no test coverage detected