2014-03-09 22:05:17 -07:00
|
|
|
#ifndef COMPILER_GENERATE_CODE_C_CODE_H_
|
|
|
|
|
#define COMPILER_GENERATE_CODE_C_CODE_H_
|
2013-12-15 19:33:34 -08:00
|
|
|
|
2014-03-09 21:37:21 -07:00
|
|
|
#include "compiler/parse_table.h"
|
|
|
|
|
#include "compiler/lex_table.h"
|
2013-12-15 19:33:34 -08:00
|
|
|
|
|
|
|
|
namespace tree_sitter {
|
2014-01-11 15:14:17 -08:00
|
|
|
namespace generate_code {
|
2014-01-25 20:44:02 -08:00
|
|
|
std::string c_code(std::string name, const ParseTable &parse_table, const LexTable &lex_table);
|
2013-12-15 19:33:34 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-09 22:05:17 -07:00
|
|
|
#endif // COMPILER_GENERATE_CODE_C_CODE_H_
|