MCPcopy Create free account
hub / github.com/Aloshi/EmulationStation / xpath_ast_node

Method xpath_ast_node

src/pugiXML/pugixml.cpp:7979–7984  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected