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

Method __init__

deps/v8/tools/grokdump.py:3669–3677  ·  view source on GitHub ↗
(self, port_number, switches, minidump_name)

Source from the content-addressed store, hash-verified

3667class InspectionWebServer(http_server.HTTPServer):
3668
3669 def __init__(self, port_number, switches, minidump_name):
3670 super().__init__(('localhost', port_number), InspectionWebHandler)
3671 splitpath = os.path.split(minidump_name)
3672 self.dumppath = splitpath[0]
3673 self.dumpfilename = splitpath[1]
3674 self.default_formatter = InspectionWebFormatter(
3675 switches, minidump_name, self)
3676 self.formatters = { self.dumpfilename : self.default_formatter }
3677 self.switches = switches
3678
3679 def output_dump_desc_field(self, f, name):
3680 try:

Callers

nothing calls this directly

Calls 3

__init__Method · 0.45
splitMethod · 0.45

Tested by

no test coverage detected