LineColumn

Line and column, both 0-based byte 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
Column column;

< 0-based column byte offset.

line
Line line;

< 0-based line byte offset.

Meta