// // Created by Administrator on 2021/4/30. // #ifndef SYNTAXPARSER_PRODUCTION_H #define SYNTAXPARSER_PRODUCTION_H #include // ²úÉúʽ struct Production { const int index; const int left; const std::vector right; Production(int index, int left, std::vector right): index(index), left(left), right(std::move(right)) {} }; #endif //SYNTAXPARSER_PRODUCTION_H