(self, value)
| 2115 | return None |
| 2116 | |
| 2117 | def FrameMarkerName(self, value): |
| 2118 | # The frame marker is Smi-tagged but not Smi encoded and 0 is not a valid |
| 2119 | # frame type. |
| 2120 | value = (value >> 1) - 1 |
| 2121 | if 0 <= value < len(FRAME_MARKERS): |
| 2122 | return "Possibly %s frame marker" % FRAME_MARKERS[value] |
| 2123 | return None |
| 2124 | |
| 2125 | def IsFrameMarker(self, slot, address): |
| 2126 | if not slot: return False |