MCPcopy Create free account
hub / github.com/nodejs/node / FrameMarkerName

Method FrameMarkerName

deps/v8/tools/grokdump.py:2117–2123  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

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

Callers 1

SenseObjectMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected