2014-10-14 22:50:24 -07:00
|
|
|
#ifndef RUNTIME_DEBUGGER_H_
|
|
|
|
|
#define RUNTIME_DEBUGGER_H_
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "tree_sitter/runtime.h"
|
|
|
|
|
|
|
|
|
|
static inline TSDebugger ts_debugger_null() {
|
2014-10-16 12:36:08 -07:00
|
|
|
TSDebugger debugger = { 0, 0, 0 };
|
|
|
|
|
return debugger;
|
2014-10-14 22:50:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // RUNTIME_DEBUGGER_H_
|