2014-04-22 23:38:26 -07:00
|
|
|
#ifndef COMPILER_GENERATE_CODE_TOKEN_DESCRIPTION_H_
|
|
|
|
|
#define COMPILER_GENERATE_CODE_TOKEN_DESCRIPTION_H_
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include "tree_sitter/compiler.h"
|
|
|
|
|
|
|
|
|
|
namespace tree_sitter {
|
|
|
|
|
namespace generate_code {
|
|
|
|
|
std::string token_description(const rules::rule_ptr &);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-28 21:46:43 -07:00
|
|
|
#endif // COMPILER_GENERATE_CODE_TOKEN_DESCRIPTION_H_
|