| 7977 | |
| 7978 | public: |
| 7979 | xpath_ast_node(ast_type_t type, xpath_value_type rettype_, const char_t* value): |
| 7980 | _type(static_cast<char>(type)), _rettype(static_cast<char>(rettype_)), _axis(0), _test(0), _left(0), _right(0), _next(0) |
| 7981 | { |
| 7982 | assert(type == ast_string_constant); |
| 7983 | _data.string = value; |
| 7984 | } |
| 7985 | |
| 7986 | xpath_ast_node(ast_type_t type, xpath_value_type rettype_, double value): |
| 7987 | _type(static_cast<char>(type)), _rettype(static_cast<char>(rettype_)), _axis(0), _test(0), _left(0), _right(0), _next(0) |
nothing calls this directly
no outgoing calls
no test coverage detected