public void ExitQuery(QueryParser.QueryContext context) { }
/// <summary> /// Exit a parse tree produced by <see cref="QueryParser.query"/>. /// <para>The default implementation does nothing.</para> /// </summary> /// <param name="context">The parse tree.</param> public virtual void ExitQuery([NotNull] QueryParser.QueryContext context) { }
// All methods in this group are either no-ops or they pop one query from the _queries // stack, transform it and push the transfromed query back to the _queries stack. // ExitSource is a source of queries. It only pushes 1 query to the _queries stack. // No queries will be removed from the stack in this method. public void EnterQuery(QueryParser.QueryContext context) { }