Changed types

This commit is contained in:
Maix0 2024-07-03 20:10:38 +02:00
parent d609da4e96
commit 634a8762f1
19 changed files with 144 additions and 144 deletions

View file

@ -14,7 +14,7 @@ typedef struct Lexer
Length token_end_position;
TSRange *included_ranges;
const char *chunk;
const t_u8 *chunk;
TSInput input;
TSLogger logger;
@ -25,7 +25,7 @@ typedef struct Lexer
t_u32 lookahead_size;
bool did_get_column;
char debug_buffer[TREE_SITTER_SERIALIZATION_BUFFER_SIZE];
t_u8 debug_buffer[TREE_SITTER_SERIALIZATION_BUFFER_SIZE];
} Lexer;
void ts_lexer_init(Lexer *);