tree-sitter/lib/src/reduce_action.h

35 lines
772 B
C
Raw Normal View History

#ifndef TREE_SITTER_REDUCE_ACTION_H_
#define TREE_SITTER_REDUCE_ACTION_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "./array.h"
#include "tree_sitter/api.h"
typedef struct {
uint32_t count;
TSSymbol symbol;
int dynamic_precedence;
2019-02-12 11:06:18 -08:00
unsigned short production_id;
} ReduceAction;
typedef Array(ReduceAction) ReduceActionSet;
2016-11-04 09:18:38 -07:00
static inline void ts_reduce_action_set_add(ReduceActionSet *self,
ReduceAction new_action) {
for (uint32_t i = 0; i < self->size; i++) {
ReduceAction action = self->contents[i];
if (action.symbol == new_action.symbol && action.count == new_action.count)
2016-11-04 09:18:38 -07:00
return;
}
2016-11-04 09:18:38 -07:00
array_push(self, new_action);
}
#ifdef __cplusplus
}
#endif
#endif // TREE_SITTER_REDUCE_ACTION_H_