2014-07-30 23:40:02 -07:00
|
|
|
#ifndef HELPERS_DUMMY_LANGUAGE_H_
|
|
|
|
|
#define HELPERS_DUMMY_LANGUAGE_H_
|
2014-06-08 16:31:45 -07:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-07-10 13:14:52 -07:00
|
|
|
#include "tree_sitter/runtime.h"
|
|
|
|
|
#include "tree_sitter/parser.h"
|
2014-06-08 16:31:45 -07:00
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
dummy_sym1 = 2,
|
|
|
|
|
dummy_sym2 = 3,
|
|
|
|
|
dummy_sym3 = 4,
|
|
|
|
|
};
|
|
|
|
|
|
2014-07-30 23:40:02 -07:00
|
|
|
extern TSLanguage *dummy_language;
|
2014-06-08 16:31:45 -07:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-07-30 23:40:02 -07:00
|
|
|
#endif // HELPERS_DUMMY_LANGUAGE_H_
|