tree-sitter/src/compiler/build_tables/build_tables.h
2014-03-09 19:49:35 -07:00

15 lines
343 B
C++

#ifndef __TreeSitter__build_tables__
#define __TreeSitter__build_tables__
#include "parse_table.h"
#include "lex_table.h"
namespace tree_sitter {
class PreparedGrammar;
namespace build_tables {
std::pair<ParseTable, LexTable> build_tables(const PreparedGrammar &grammar, const PreparedGrammar &lex_grammar);
}
}
#endif