Add key for symbol param in debug output

This commit is contained in:
Max Brunsfeld 2014-10-14 10:49:14 -07:00
parent 87df0a24eb
commit 8c4607c486

View file

@ -119,7 +119,7 @@ static TSTree *break_down_right_stack(TSParser *parser) {
break;
TSTree *child = children[i];
DEBUG_PARSE("push_right %s", SYM_NAME(child->symbol));
DEBUG_PARSE("push_right sym:%s", SYM_NAME(child->symbol));
ts_stack_push(stack, 0, child);
right_subtree_start -= ts_tree_total_size(child).chars;
}