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

Method __init__

deps/v8/tools/grokdump.py:3753–3763  ·  view source on GitHub ↗
(self, reader, heap)

Source from the content-addressed store, hash-verified

3751
3752class InspectionShell(cmd.Cmd):
3753 def __init__(self, reader, heap):
3754 cmd.Cmd.__init__(self)
3755 self.reader = reader
3756 self.heap = heap
3757 self.padawan = InspectionPadawan(reader, heap)
3758 self.prompt = "(grok) "
3759
3760 self.dd_start = 0
3761 self.dd_num = 0x10
3762 self.u_start = 0
3763 self.u_num = 0
3764
3765 def EvalExpression(self, expr):
3766 # Auto convert hex numbers to a python compatible format

Callers

nothing calls this directly

Calls 2

InspectionPadawanClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected