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

Method parse

src/pugiXML/pugixml.cpp:9554–9565  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9552 }
9553
9554 xpath_ast_node* parse()
9555 {
9556 xpath_ast_node* result = parse_expression();
9557
9558 if (_lexer.current() != lex_eof)
9559 {
9560 // there are still unparsed tokens left, error
9561 throw_error("Incorrect query");
9562 }
9563
9564 return result;
9565 }
9566
9567 static xpath_ast_node* parse(const char_t* query, xpath_variable_set* variables, xpath_allocator* alloc, xpath_parse_result* result)
9568 {

Callers

nothing calls this directly

Calls 2

currentMethod · 0.80
parseMethod · 0.45

Tested by

no test coverage detected