1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:47:35 +00:00

LibCoreDump: Include source locations of inlined functions in backtrace

This commit is contained in:
Itamar 2021-06-11 14:39:16 +03:00 committed by Andreas Kling
parent a45b5ccd96
commit 03ef2a479a
5 changed files with 46 additions and 8 deletions

View file

@ -30,7 +30,7 @@ public:
FlatPtr eip;
String object_name;
String function_name;
Optional<Debug::DebugInfo::SourcePosition> source_position;
Debug::DebugInfo::SourcePositionWithInlines source_position_with_inlines;
String to_string(bool color = false) const;
};