tree-sitter/src/compiler/compile.h
Max Brunsfeld 5776846227 Make compile take a name argument
Start work on JSON fixture grammar
2014-01-23 13:48:07 -08:00

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