Include byte offsets in TSRange

Co-Authored-By: Ashi Krishnan <queerviolet@github.com>
This commit is contained in:
Max Brunsfeld 2018-06-20 11:46:44 -07:00
parent be81989de2
commit 6632cb3d5c
5 changed files with 35 additions and 33 deletions

View file

@ -34,8 +34,10 @@ typedef struct {
} TSPoint;
typedef struct {
TSPoint start;
TSPoint end;
TSPoint start_point;
TSPoint end_point;
uint32_t start_byte;
uint32_t end_byte;
} TSRange;
typedef struct {