| 264 | } |
| 265 | |
| 266 | DebugScope DebugInfoManager::BuildDebugScope( |
| 267 | const DebugScope& callee_instr_scope, |
| 268 | DebugInlinedAtContext* inlined_at_ctx) { |
| 269 | return DebugScope(callee_instr_scope.GetLexicalScope(), |
| 270 | BuildDebugInlinedAtChain(callee_instr_scope.GetInlinedAt(), |
| 271 | inlined_at_ctx)); |
| 272 | } |
| 273 | |
| 274 | uint32_t DebugInfoManager::BuildDebugInlinedAtChain( |
| 275 | uint32_t callee_inlined_at, DebugInlinedAtContext* inlined_at_ctx) { |
no test coverage detected