| 8751 | } |
| 8752 | |
| 8753 | void* alloc_node() |
| 8754 | { |
| 8755 | void* result = _alloc->allocate_nothrow(sizeof(xpath_ast_node)); |
| 8756 | |
| 8757 | if (!result) throw_error_oom(); |
| 8758 | |
| 8759 | return result; |
| 8760 | } |
| 8761 | |
| 8762 | const char_t* alloc_string(const xpath_lexer_string& value) |
| 8763 | { |
nothing calls this directly
no test coverage detected