MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/OpenImageIO / parse

Method parse

src/include/pugixml.cpp:9558–9569  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

currentMethod · 0.80
parseMethod · 0.45

Tested by

no test coverage detected