ResolvedLocation

Describes a code location in exact byte offset, line number and column for a given source code this was resolved against.

struct ResolvedLocation {}

Members

Variables

column
uint column;

one-based character offset inside the line in bytes

index
ulong index;

byte offset of the character in question - may be 0 if line and column are set

line
uint line;

one-based line

Meta