(self, arg, from_tty)
| 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 | |
| 165 | V8PrintObject() |
nothing calls this directly
no test coverage detected