| 8978 | }; |
| 8979 | |
| 8980 | xpath_string evaluate_string_impl(xpath_query_impl* impl, const xpath_node& n, xpath_stack_data& sd) |
| 8981 | { |
| 8982 | if (!impl) return xpath_string(); |
| 8983 | |
| 8984 | #ifdef PUGIXML_NO_EXCEPTIONS |
| 8985 | if (setjmp(sd.error_handler)) return xpath_string(); |
| 8986 | #endif |
| 8987 | |
| 8988 | xpath_context c(n, 1, 1); |
| 8989 | |
| 8990 | return impl->root->eval_string(c, sd.stack); |
| 8991 | } |
| 8992 | } |
| 8993 | |
| 8994 | namespace pugi |
no test coverage detected