tree-sitter/spec/runtime/helpers/spy_debugger.h
Max Brunsfeld ebd60213d9 Drop release functions from callback structs
The caller can just as easily take care of the cleanup explicitly
2015-09-08 23:24:33 -07:00

15 lines
281 B
C++

#ifndef HELPERS_SPY_DEBUGGER_H_
#define HELPERS_SPY_DEBUGGER_H_
#include <string>
#include <vector>
#include "tree_sitter/runtime.h"
class SpyDebugger {
public:
void clear();
TSDebugger debugger();
std::vector<std::string> messages;
};
#endif // HELPERS_SPY_DEBUGGER_H_