125126127128129130131132133134
* @throws Exception */ private static Request parseQuery() throws Exception { parseSymbol('?'); parseString(":-"); Request request = new Request(parsePredicate()); parseSymbol('.'); return request; }