tree-sitter-ggsql 0.4.0

Tree-sitter grammar for ggsql visualization language
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TREE_SITTER_WASM_ASSERT_H_
#define TREE_SITTER_WASM_ASSERT_H_

#ifdef NDEBUG
#define assert(e) ((void)0)
#else
__attribute__((noreturn)) static inline void __assert_fail(const char *assertion, const char *file, unsigned line, const char *function) {
    __builtin_trap();
}
#define assert(expression) \
  ((expression) ? (void)0 : __assert_fail(#expression, __FILE__, __LINE__, __func__))
#endif

#endif // TREE_SITTER_WASM_ASSERT_H_