2014-01-11 17:59:45 -08:00
|
|
|
#ifndef __tree_sitter_spec_helper_h__
|
|
|
|
|
#define __tree_sitter_spec_helper_h__
|
2013-11-10 14:24:25 -08:00
|
|
|
|
2013-12-28 15:09:52 -08:00
|
|
|
#include "bandit/bandit.h"
|
2014-02-17 12:45:53 -08:00
|
|
|
#include "helpers/stream_methods.h"
|
|
|
|
|
#include "helpers/equals_pointer.h"
|
2014-02-17 12:53:57 -08:00
|
|
|
#include "tree_sitter/compiler.h"
|
2014-02-18 09:07:00 -08:00
|
|
|
#include "tree_sitter/runtime.h"
|
2013-12-15 23:57:30 -08:00
|
|
|
|
2013-11-10 14:24:25 -08:00
|
|
|
using namespace tree_sitter;
|
|
|
|
|
using namespace std;
|
2013-12-28 15:09:52 -08:00
|
|
|
using namespace bandit;
|
|
|
|
|
|
|
|
|
|
#define START_TEST go_bandit([]() {
|
|
|
|
|
#define END_TEST });
|
2013-11-10 14:24:25 -08:00
|
|
|
|
2013-12-15 19:33:34 -08:00
|
|
|
string src_dir();
|
|
|
|
|
|
2013-11-10 14:24:25 -08:00
|
|
|
#endif
|