tree sitter update

This commit is contained in:
ProgramSnail 2024-09-19 20:46:15 +03:00
parent c0377d1a1b
commit aaabbb5d6a
22 changed files with 505 additions and 45 deletions

16
bindings/swift/TreeSitterLang/lang.h generated Normal file
View file

@ -0,0 +1,16 @@
#ifndef TREE_SITTER_LANG_H_
#define TREE_SITTER_LANG_H_
typedef struct TSLanguage TSLanguage;
#ifdef __cplusplus
extern "C" {
#endif
const TSLanguage *tree_sitter_lang(void);
#ifdef __cplusplus
}
#endif
#endif // TREE_SITTER_LANG_H_