[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://r
[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://reviews.llvm.org/D128077
show more ...
[lldb/API] Turn SBCompileUnit::GetIndexForLineEntry into FindLineEntryIndex (NFC)This patch renames the `SBCompileUnit::GetIndexForLineEntry` api to bean overload of `SBCompileUnit::FindLineEntryI
[lldb/API] Turn SBCompileUnit::GetIndexForLineEntry into FindLineEntryIndex (NFC)This patch renames the `SBCompileUnit::GetIndexForLineEntry` api to bean overload of `SBCompileUnit::FindLineEntryIndex`Differential Revision: https://reviews.llvm.org/D125594Signed-off-by: Med Ismail Bennani <[email protected]>
[lldb/API] Add SBCompileUnit::GetIndexForLineEntry method to SB APIThis patch adds a new `GetIndexForLineEntry` method to the `SBCompileUnit`class. As the name suggests, given an `SBLineEntry` obj
[lldb/API] Add SBCompileUnit::GetIndexForLineEntry method to SB APIThis patch adds a new `GetIndexForLineEntry` method to the `SBCompileUnit`class. As the name suggests, given an `SBLineEntry` object, this willreturn the line entry index within a specific compile unit.This method can take a `exact` boolean that will make sure that theprovided line entry matches perfectly another line entry in the compile unit.rdar://47450887Differention Revision: https://reviews.llvm.org/D125437Signed-off-by: Med Ismail Bennani <[email protected]>