tree-sitter/src/compiler/generate_code/helpers.h

17 lines
468 B
C
Raw Normal View History

2014-03-09 22:05:17 -07:00
#ifndef COMPILER_GENERATE_CODE_HELPERS_H_
#define COMPILER_GENERATE_CODE_HELPERS_H_
#include <string>
#include <vector>
namespace tree_sitter {
namespace generate_code {
std::string indent(std::string input);
std::string join(std::vector<std::string> lines, std::string separator);
std::string join(std::vector<std::string> lines);
std::string character_code(char character);
}
}
2014-03-09 22:05:17 -07:00
#endif // COMPILER_GENERATE_CODE_HELPERS_H_