| 395 | } |
| 396 | |
| 397 | String XMLParser::get_node_data() const { |
| 398 | ERR_FAIL_COND_V(node_type != NODE_TEXT, ""); |
| 399 | return node_name; |
| 400 | } |
| 401 | |
| 402 | String XMLParser::get_node_name() const { |
| 403 | ERR_FAIL_COND_V(node_type == NODE_TEXT, ""); |
no outgoing calls
no test coverage detected