12 lines
207 B
C++
12 lines
207 B
C++
#ifndef __tree_sitter__compile__
|
|
#define __tree_sitter__compile__
|
|
|
|
#include <string>
|
|
|
|
namespace tree_sitter {
|
|
class Grammar;
|
|
|
|
std::string compile(const Grammar &grammar, std::string name);
|
|
}
|
|
|
|
#endif
|