| 24 | |
| 25 | |
| 26 | Error::Error(const char *error, int line, int column) |
| 27 | { |
| 28 | std::ostringstream estream; |
| 29 | |
| 30 | estream << "line " << line << ", column " << column << ": " << error; |
| 31 | |
| 32 | m_error = estream.str(); |
| 33 | } |
| 34 | |
| 35 | Node::Node(const char *n, const char **a) |
| 36 | : name(n) |
nothing calls this directly
no outgoing calls
no test coverage detected