2014-01-11 15:14:17 -08:00
|
|
|
#ifndef __tree_sitter__compile__
|
|
|
|
|
#define __tree_sitter__compile__
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
namespace tree_sitter {
|
|
|
|
|
class Grammar;
|
|
|
|
|
|
2014-01-23 13:44:49 -08:00
|
|
|
std::string compile(const Grammar &grammar, std::string name);
|
2014-01-11 15:14:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|