mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-05 17:16:04 +00:00
LibDebug: Implement support for AttributeDataForm::{UData,LineStrP}
This commit is contained in:
parent
d2f0984fef
commit
d0a7547537
Notes:
sideshowbarker
2024-07-18 18:59:41 +09:00
Author: https://github.com/gunnarbeutner
Commit: d0a7547537
Pull-request: https://github.com/SerenityOS/serenity/pull/6714
2 changed files with 21 additions and 0 deletions
|
@ -49,6 +49,7 @@ public:
|
|||
ReadonlyBytes debug_info_data() const { return m_debug_info_data; }
|
||||
ReadonlyBytes abbreviation_data() const { return m_abbreviation_data; }
|
||||
ReadonlyBytes debug_strings_data() const { return m_debug_strings_data; }
|
||||
ReadonlyBytes debug_line_strings_data() const { return m_debug_line_strings_data; }
|
||||
|
||||
template<typename Callback>
|
||||
void for_each_compilation_unit(Callback) const;
|
||||
|
@ -65,6 +66,7 @@ private:
|
|||
ReadonlyBytes m_debug_info_data;
|
||||
ReadonlyBytes m_abbreviation_data;
|
||||
ReadonlyBytes m_debug_strings_data;
|
||||
ReadonlyBytes m_debug_line_strings_data;
|
||||
|
||||
Vector<Dwarf::CompilationUnit> m_compilation_units;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue