clang-format

This commit is contained in:
Max Brunsfeld 2016-06-22 14:11:08 -07:00
parent 3ceb3a1eb2
commit 57f669dfda
3 changed files with 9 additions and 7 deletions

View file

@ -12,8 +12,9 @@ void ts_language_table_entry(const TSLanguage *self, TSStateId state,
result->action_count = 1;
result->is_reusable = false;
result->depends_on_lookahead = false;
result->actions = (symbol == ts_builtin_sym_error) ? &ERROR_SHIFT_EXTRA
: &self->recovery_actions[symbol];
result->actions = (symbol == ts_builtin_sym_error)
? &ERROR_SHIFT_EXTRA
: &self->recovery_actions[symbol];
return;
}