tree-sitter/src/compiler/compile.h

13 lines
207 B
C
Raw Normal View History

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