Print a transition array in a readable format.
(self, address)
| 3944 | Map(self.heap, None, start).Print(Printer()) |
| 3945 | |
| 3946 | def do_do_trans(self, address): |
| 3947 | """ |
| 3948 | Print a transition array in a readable format. |
| 3949 | """ |
| 3950 | start = self.ParseAddressExpr(address) |
| 3951 | if ((start & 1) == 1): start = start - 1 |
| 3952 | TransitionArray(FixedArray(self.heap, None, start)).Print(Printer()) |
| 3953 | |
| 3954 | def do_dp(self, address): |
| 3955 | """ see display_page """ |
nothing calls this directly
no test coverage detected