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

Method do_do_desc

deps/v8/tools/grokdump.py:3930–3936  ·  view source on GitHub ↗

Print a descriptor array in a readable format.

(self, address)

Source from the content-addressed store, hash-verified

3928 print("%s %s" % (self.padawan.FormatIntPtr(address), info))
3929
3930 def do_do_desc(self, address):
3931 """
3932 Print a descriptor array in a readable format.
3933 """
3934 start = self.ParseAddressExpr(address)
3935 if ((start & 1) == 1): start = start - 1
3936 DescriptorArray(FixedArray(self.heap, None, start)).Print(Printer())
3937
3938 def do_do_map(self, address):
3939 """

Callers

nothing calls this directly

Calls 5

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

Tested by

no test coverage detected