MCPcopy Create free account
hub / github.com/YACReader/yacreader / notExpression

Method notExpression

YACReaderLibrary/db/query_parser.cpp:281–288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281QueryParser::TreeNode QueryParser::notExpression()
282{
283 if (lcaseToken() == "not") {
284 advance();
285 return TreeNode("not", { notExpression() });
286 }
287 return locationExpression();
288}
289
290QueryParser::TreeNode QueryParser::locationExpression()
291{

Callers

nothing calls this directly

Calls 1

TreeNodeClass · 0.85

Tested by

no test coverage detected