| 10437 | }; |
| 10438 | |
| 10439 | PUGI__FN xpath_string evaluate_string_impl(xpath_query_impl* impl, const xpath_node& n, xpath_stack_data& sd) |
| 10440 | { |
| 10441 | if (!impl) |
| 10442 | return xpath_string(); |
| 10443 | |
| 10444 | #ifdef PUGIXML_NO_EXCEPTIONS |
| 10445 | if (setjmp(sd.error_handler)) |
| 10446 | return xpath_string(); |
| 10447 | #endif |
| 10448 | |
| 10449 | xpath_context c(n, 1, 1); |
| 10450 | |
| 10451 | return impl->root->eval_string(c, sd.stack); |
| 10452 | } |
| 10453 | PUGI__NS_END |
| 10454 | |
| 10455 | namespace pugi |
nothing calls this directly
no test coverage detected