This means regenerating all the tree-sitter files, and adding newly generated outputs (mostly new bindings). The `--apply-all-captures` flag has been removed, it is now the default (and only) matching behaviour.
This commit is contained in:
parent
b04cd92189
commit
bc4db561ca
26 changed files with 718 additions and 59 deletions
11
src/parser.c
generated
11
src/parser.c
generated
|
|
@ -1,7 +1,6 @@
|
|||
#include "tree_sitter/parser.h"
|
||||
|
||||
#if defined(__GNUC__) || defined(__clang__)
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
|
||||
#endif
|
||||
|
||||
|
|
@ -7820,11 +7819,15 @@ static const TSParseActionEntry ts_parse_actions[] = {
|
|||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#ifdef _WIN32
|
||||
#define extern __declspec(dllexport)
|
||||
#ifdef TREE_SITTER_HIDE_SYMBOLS
|
||||
#define TS_PUBLIC
|
||||
#elif defined(_WIN32)
|
||||
#define TS_PUBLIC __declspec(dllexport)
|
||||
#else
|
||||
#define TS_PUBLIC __attribute__((visibility("default")))
|
||||
#endif
|
||||
|
||||
extern const TSLanguage *tree_sitter_bp(void) {
|
||||
TS_PUBLIC const TSLanguage *tree_sitter_bp() {
|
||||
static const TSLanguage language = {
|
||||
.version = LANGUAGE_VERSION,
|
||||
.symbol_count = SYMBOL_COUNT,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue