11 lines
340 B
C++
11 lines
340 B
C++
#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 &);
|
|
const TSLanguage *get_test_language(const std::string &language_name);
|
|
|
|
#endif // HELPERS_LOAD_LANGUAGE_H_
|