SBLineEntry
is a proxy object in LLDB Python interface. SBLineEntry.GetColumn()
returns point in a line, but I am not sure what it actually means.
In C++ side source, it resolves to LineEntry.column
value, but it also lacks how it is measured in.
At first, I thought it as UTF-8 code unit offset. But it seems it isn't because when I measure it it looks like UTF-16 code unit offset. But I still couldn't find any definition for this value.
What is this value?
- Raw byte offset in source code file?
- UTF-8 code unit offset?
- UTF-16 code unit offset?
- Something else?