| 177 | } |
| 178 | |
| 179 | void GDScriptParser::clear() { |
| 180 | GDScriptParser tmp; |
| 181 | tmp = *this; |
| 182 | *this = GDScriptParser(); |
| 183 | } |
| 184 | |
| 185 | void GDScriptParser::push_error(const String &p_message, const Node *p_origin) { |
| 186 | /// @todo Improve error reporting by pointing at source code. |
no test coverage detected