#ifndef COMPILER_COMPILE_H_ #define COMPILER_COMPILE_H_ #include #include #include "compiler/compile_error.h" namespace tree_sitter { struct InputGrammar; std::pair compile(const InputGrammar &, std::string); } // namespace tree_sitter #endif // COMPILER_COMPILE_H_