\brief Convenience type for file positions
| 89 | |
| 90 | /// \brief Convenience type for file positions |
| 91 | struct File_Position { |
| 92 | int line; |
| 93 | int column; |
| 94 | |
| 95 | File_Position(int t_file_line, int t_file_column) |
| 96 | : line(t_file_line), column(t_file_column) { } |
| 97 | |
| 98 | File_Position() : line(0), column(0) { } |
| 99 | }; |
| 100 | |
| 101 | struct Parse_Location { |
| 102 | Parse_Location(std::string t_fname="", const int t_start_line=0, const int t_start_col=0, |
no outgoing calls
no test coverage detected