17 lines
433 B
C++
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_
|