parent
2dc63f2c30
commit
4cbc4b8bcf
2 changed files with 2 additions and 2 deletions
|
|
@ -63,7 +63,7 @@ static inline bool ts_length_eq(TSLength len1, TSLength len2) {
|
|||
}
|
||||
|
||||
static inline TSPoint ts_point_zero() {
|
||||
return (TSPoint){ .row = 1, .column = 1 };
|
||||
return (TSPoint){ .row = 0, .column = 0 };
|
||||
}
|
||||
|
||||
static inline TSPoint ts_point_make(size_t row, size_t column) {
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ static bool ts_lexer__advance(TSLexer *self, TSStateId state) {
|
|||
|
||||
if (self->lookahead == '\n') {
|
||||
self->current_point.row += 1;
|
||||
self->current_point.column = 1;
|
||||
self->current_point.column = 0;
|
||||
} else {
|
||||
self->current_point.column += 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue