| 882 | } |
| 883 | |
| 884 | BeDbgLoc* BeDbgLoc::GetInlinedAt(int idx) |
| 885 | { |
| 886 | if (idx == -1) |
| 887 | return this; |
| 888 | auto checkDbgLoc = mDbgInlinedAt; |
| 889 | for (int i = 0; i < idx; i++) |
| 890 | checkDbgLoc = checkDbgLoc->mDbgInlinedAt; |
| 891 | return checkDbgLoc; |
| 892 | } |
| 893 | |
| 894 | BeDbgLoc* BeDbgLoc::GetRoot() |
| 895 | { |
no outgoing calls
no test coverage detected