| 729 | Error(const std::string& where, const std::string& what) |
| 730 | : msg(where+": "+what) {} |
| 731 | Error(const std::string& where, const std::string& what, AST::Array *const ann) |
| 732 | : msg(make_message(where, what, ann)) {} |
| 733 | const std::string& toString(void) const { return msg; } |
| 734 | private: |
| 735 | static std::string make_message(const std::string &where, const std::string &what, AST::Array *const ann) { |
no outgoing calls
no test coverage detected