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

Class V8PrintObject

deps/v8/tools/gdb-v8-support.py:155–162  ·  view source on GitHub ↗

Prints a v8 object.

Source from the content-addressed store, hash-verified

153
154
155class V8PrintObject(gdb.Command):
156 """Prints a v8 object."""
157 def __init__(self):
158 super(V8PrintObject, self).__init__("v8print", gdb.COMMAND_DATA)
159
160 def invoke(self, arg, from_tty):
161 v = v8_get_value(arg)
162 gdb.execute('call __gdb_print_v8_object(%d)' % v)
163
164
165V8PrintObject()

Callers 1

gdb-v8-support.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected