| 9609 | }; |
| 9610 | |
| 9611 | PUGI__FN xpath_string evaluate_string_impl(xpath_query_impl* impl, const xpath_node& n, xpath_stack_data& sd) |
| 9612 | { |
| 9613 | if (!impl) return xpath_string(); |
| 9614 | |
| 9615 | #ifdef PUGIXML_NO_EXCEPTIONS |
| 9616 | if (setjmp(sd.error_handler)) return xpath_string(); |
| 9617 | #endif |
| 9618 | |
| 9619 | xpath_context c(n, 1, 1); |
| 9620 | |
| 9621 | return impl->root->eval_string(c, sd.stack); |
| 9622 | } |
| 9623 | PUGI__NS_END |
| 9624 | |
| 9625 | namespace pugi |
nothing calls this directly
no test coverage detected