How to decode the line number for inline function?

Kotlin use a special line number offset for the lines which in the inline function. How to recover the raw line number back?

I’m not fully sure I understand what you’re talking about, but when you’re debugging Kotlin code in IntelliJ, if you click on a line in a stack trace where an inline function is called, usually a little menu will pop up, asking if you want to navigate to the function definition, or the inline body call site, or something like that. If you navigate to the call site, it’ll take you to the place in the code where the inline function is called from.

Does that help at all?