2016-01-15 11:19:24 -08:00
|
|
|
#ifndef HELPERS_LOAD_LANGUAGE_H_
|
|
|
|
|
#define HELPERS_LOAD_LANGUAGE_H_
|
|
|
|
|
|
|
|
|
|
#include "tree_sitter/compiler.h"
|
|
|
|
|
#include "tree_sitter/runtime.h"
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
const TSLanguage *load_language(const std::string &, const TSCompileResult &);
|
2016-03-03 12:05:04 -08:00
|
|
|
const TSLanguage *get_test_language(const std::string &language_name);
|
2016-01-15 11:19:24 -08:00
|
|
|
|
|
|
|
|
#endif // HELPERS_LOAD_LANGUAGE_H_
|