Struct

GskParseLocation

Description [src]

struct GskParseLocation {
  gsize bytes;
  gsize chars;
  gsize lines;
  gsize line_bytes;
  gsize line_chars;
}

A location in a parse buffer.

Structure members
bytes: gsize

The offset of the location in the parse buffer, as bytes.

chars: gsize

The offset of the location in the parse buffer, as characters.

lines: gsize

The line of the location in the parse buffer.

line_bytes: gsize

The position in the line, as bytes.

line_chars: gsize

The position in the line, as characters.