MCPcopy Index your code
hub / github.com/nodejs/node / do_do_trans

Method do_do_trans

deps/v8/tools/grokdump.py:3946–3952  ·  view source on GitHub ↗

Print a transition array in a readable format.

(self, address)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 5

ParseAddressExprMethod · 0.95
TransitionArrayClass · 0.85
FixedArrayClass · 0.85
PrinterClass · 0.85
PrintMethod · 0.45

Tested by

no test coverage detected