Make stack_print_dot_graph function take a language as an argument

This commit is contained in:
Max Brunsfeld 2018-04-08 13:49:20 -07:00
parent 379a2fd121
commit 33820253e8
4 changed files with 16 additions and 20 deletions

View file

@ -120,7 +120,7 @@ void ts_stack_remove_version(Stack *, StackVersion);
void ts_stack_clear(Stack *);
bool ts_stack_print_dot_graph(Stack *, const char **, FILE *);
bool ts_stack_print_dot_graph(Stack *, const TSLanguage *, FILE *);
typedef void (*StackIterateCallback)(void *, TSStateId, uint32_t);