tree-sitter/src/compiler/build_tables/build_lex_table.h
2014-05-04 23:04:34 -07:00

17 lines
433 B
C++

#ifndef COMPILER_BUILD_TABLES_BUILD_LEX_TABLE_H_
#define COMPILER_BUILD_TABLES_BUILD_LEX_TABLE_H_
#include "tree_sitter/compiler.h"
#include "compiler/lex_table.h"
namespace tree_sitter {
class PreparedGrammar;
class ParseTable;
namespace build_tables {
LexTable
build_lex_table(ParseTable *parse_table, const PreparedGrammar &lex_grammar);
}
}
#endif // COMPILER_BUILD_TABLES_BUILD_LEX_TABLE_H_