mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:07:44 +00:00
LibJS: Add source location for Handle nodes in GC graph dumper output
With this change JS::Handle root nodes will contain source location where they were constructed like: ``` "94675029575744": { "root": "Handle activate_event_handler \ serenity/Userland/Libraries/LibWeb/DOM/EventTarget.cpp:564", "class_name": "HTMLButtonElement", "edges": [ "94675025955904", "94675026899520", "94675030831168", ```
This commit is contained in:
parent
4b06cef93a
commit
719a00df3a
9 changed files with 129 additions and 121 deletions
|
@ -10,8 +10,9 @@
|
|||
|
||||
namespace JS {
|
||||
|
||||
HandleImpl::HandleImpl(Cell* cell)
|
||||
HandleImpl::HandleImpl(Cell* cell, SourceLocation location)
|
||||
: m_cell(cell)
|
||||
, m_location(location)
|
||||
{
|
||||
m_cell->heap().did_create_handle({}, *this);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue