LineColumn

Line and column, both 0-based offsets.

Uses 32-bit unsigned precision for line and column offet, for now, like tree-sitter does.

@safe pure nothrow @nogc
struct LineColumn {}

Members

Variables

column
uint column;

< 0-based column offset.

line
uint line;

< 0-based line offset.

Meta