/
krasninja
/
querycat
Обзор
Документация
Войти
/
krasninja
/
querycat
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
src/QueryCat.Backend/Parser/QueryCatParserBaseVisitor.cs
1 557 строк
83 KB
Ivan Kozhin
Add "except" keyword for "select" command
31 май 2024, 13:34
31 май 2024, 13:34
53f6355
Код
Авторство
О чём код?
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // ANTLR Version: 4.13.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ // Generated from ../QueryCat.Backend/Parser/QueryCatParser.g4 by ANTLR 4.13.1 // Unreachable code detected #pragma warning disable 0162 // The variable '...' is assigned but its value is never used #pragma warning disable 0219 // Missing XML comment for publicly visible type or member '...' #pragma warning disable 1591 // Ambiguous reference in cref attribute #pragma warning disable 419 namespace QueryCat.Backend.Parser { using Antlr4.Runtime.Misc; using Antlr4.Runtime.Tree; using IToken = Antlr4.Runtime.IToken; using ParserRuleContext = Antlr4.Runtime.ParserRuleContext; /// <summary> /// This class provides an empty implementation of <see cref="IQueryCatParserVisitor{Result}"/>, /// which can be extended to create a visitor which only needs to handle a subset /// of the available methods. /// </summary> /// <typeparam name="Result">The return type of the visit operation.</typeparam> [System.CodeDom.Compiler.GeneratedCode("ANTLR", "4.13.1")] [System.Diagnostics.DebuggerNonUserCode] [System.CLSCompliant(false)] public partial class QueryCatParserBaseVisitor<Result> : AbstractParseTreeVisitor<Result>, IQueryCatParserVisitor<Result> { /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.program"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitProgram([NotNull] QueryCatParser.ProgramContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementFunctionCall</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementFunctionCall([NotNull] QueryCatParser.StatementFunctionCallContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementDeclareVariable</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementDeclareVariable([NotNull] QueryCatParser.StatementDeclareVariableContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementSetVariable</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementSetVariable([NotNull] QueryCatParser.StatementSetVariableContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementSelectExpression</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementSelectExpression([NotNull] QueryCatParser.StatementSelectExpressionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementUpdateExpression</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementUpdateExpression([NotNull] QueryCatParser.StatementUpdateExpressionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementInsertExpression</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementInsertExpression([NotNull] QueryCatParser.StatementInsertExpressionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementEcho</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementEcho([NotNull] QueryCatParser.StatementEchoContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementCall</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementCall([NotNull] QueryCatParser.StatementCallContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementIf</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementIf([NotNull] QueryCatParser.StatementIfContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>StatementExpression</c> /// labeled alternative in <see cref="QueryCatParser.statement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStatementExpression([NotNull] QueryCatParser.StatementExpressionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.functionSignature"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitFunctionSignature([NotNull] QueryCatParser.FunctionSignatureContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.functionType"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitFunctionType([NotNull] QueryCatParser.FunctionTypeContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.functionArg"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitFunctionArg([NotNull] QueryCatParser.FunctionArgContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.functionCall"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitFunctionCall([NotNull] QueryCatParser.FunctionCallContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.functionCallArg"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitFunctionCallArg([NotNull] QueryCatParser.FunctionCallArgContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.declareVariable"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitDeclareVariable([NotNull] QueryCatParser.DeclareVariableContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.setVariable"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSetVariable([NotNull] QueryCatParser.SetVariableContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectStatement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectStatement([NotNull] QueryCatParser.SelectStatementContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectOrderByClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectOrderByClause([NotNull] QueryCatParser.SelectOrderByClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectSortSpecification"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectSortSpecification([NotNull] QueryCatParser.SelectSortSpecificationContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectAlias"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectAlias([NotNull] QueryCatParser.SelectAliasContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectQueryExpressionSimple</c> /// labeled alternative in <see cref="QueryCatParser.selectQueryExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectQueryExpressionSimple([NotNull] QueryCatParser.SelectQueryExpressionSimpleContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectQueryExpressionFull</c> /// labeled alternative in <see cref="QueryCatParser.selectQueryExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectQueryExpressionFull([NotNull] QueryCatParser.SelectQueryExpressionFullContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectQueryExpressionBodyUnionExcept</c> /// labeled alternative in <see cref="QueryCatParser.selectQueryExpressionBody"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectQueryExpressionBodyUnionExcept([NotNull] QueryCatParser.SelectQueryExpressionBodyUnionExceptContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectQueryExpressionBodyIntersect</c> /// labeled alternative in <see cref="QueryCatParser.selectQueryExpressionBody"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectQueryExpressionBodyIntersect([NotNull] QueryCatParser.SelectQueryExpressionBodyIntersectContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectQueryExpressionBodyPrimary</c> /// labeled alternative in <see cref="QueryCatParser.selectQueryExpressionBody"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectQueryExpressionBodyPrimary([NotNull] QueryCatParser.SelectQueryExpressionBodyPrimaryContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectQueryPrimaryNoParens</c> /// labeled alternative in <see cref="QueryCatParser.selectQueryPrimary"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectQueryPrimaryNoParens([NotNull] QueryCatParser.SelectQueryPrimaryNoParensContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectQueryPrimaryParens</c> /// labeled alternative in <see cref="QueryCatParser.selectQueryPrimary"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectQueryPrimaryParens([NotNull] QueryCatParser.SelectQueryPrimaryParensContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectQuerySpecificationFull</c> /// labeled alternative in <see cref="QueryCatParser.selectQuerySpecification"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectQuerySpecificationFull([NotNull] QueryCatParser.SelectQuerySpecificationFullContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectQuerySpecificationSingle</c> /// labeled alternative in <see cref="QueryCatParser.selectQuerySpecification"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectQuerySpecificationSingle([NotNull] QueryCatParser.SelectQuerySpecificationSingleContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectList"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectList([NotNull] QueryCatParser.SelectListContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectExcept"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectExcept([NotNull] QueryCatParser.SelectExceptContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectDistinctClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectDistinctClause([NotNull] QueryCatParser.SelectDistinctClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectDistinctOnClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectDistinctOnClause([NotNull] QueryCatParser.SelectDistinctOnClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectWithClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectWithClause([NotNull] QueryCatParser.SelectWithClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectWithElement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectWithElement([NotNull] QueryCatParser.SelectWithElementContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectWithColumnList"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectWithColumnList([NotNull] QueryCatParser.SelectWithColumnListContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectSublistAll</c> /// labeled alternative in <see cref="QueryCatParser.selectSublist"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectSublistAll([NotNull] QueryCatParser.SelectSublistAllContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectSublistWindow</c> /// labeled alternative in <see cref="QueryCatParser.selectSublist"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectSublistWindow([NotNull] QueryCatParser.SelectSublistWindowContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectSublistExpression</c> /// labeled alternative in <see cref="QueryCatParser.selectSublist"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectSublistExpression([NotNull] QueryCatParser.SelectSublistExpressionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectTarget"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTarget([NotNull] QueryCatParser.SelectTargetContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectFromClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectFromClause([NotNull] QueryCatParser.SelectFromClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectTableReferenceList"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTableReferenceList([NotNull] QueryCatParser.SelectTableReferenceListContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectTableReference"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTableReference([NotNull] QueryCatParser.SelectTableReferenceContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectTableValuesRow"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTableValuesRow([NotNull] QueryCatParser.SelectTableValuesRowContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectTableValues"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTableValues([NotNull] QueryCatParser.SelectTableValuesContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectTablePrimaryNoFormat</c> /// labeled alternative in <see cref="QueryCatParser.selectTablePrimary"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTablePrimaryNoFormat([NotNull] QueryCatParser.SelectTablePrimaryNoFormatContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectTablePrimaryStdin</c> /// labeled alternative in <see cref="QueryCatParser.selectTablePrimary"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTablePrimaryStdin([NotNull] QueryCatParser.SelectTablePrimaryStdinContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectTablePrimaryWithFormat</c> /// labeled alternative in <see cref="QueryCatParser.selectTablePrimary"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTablePrimaryWithFormat([NotNull] QueryCatParser.SelectTablePrimaryWithFormatContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectTablePrimarySubquery</c> /// labeled alternative in <see cref="QueryCatParser.selectTablePrimary"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTablePrimarySubquery([NotNull] QueryCatParser.SelectTablePrimarySubqueryContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectTablePrimaryIdentifier</c> /// labeled alternative in <see cref="QueryCatParser.selectTablePrimary"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTablePrimaryIdentifier([NotNull] QueryCatParser.SelectTablePrimaryIdentifierContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectTablePrimaryTableValues</c> /// labeled alternative in <see cref="QueryCatParser.selectTablePrimary"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTablePrimaryTableValues([NotNull] QueryCatParser.SelectTablePrimaryTableValuesContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectTablePrimaryExpression</c> /// labeled alternative in <see cref="QueryCatParser.selectTablePrimary"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTablePrimaryExpression([NotNull] QueryCatParser.SelectTablePrimaryExpressionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectTableJoinedOn</c> /// labeled alternative in <see cref="QueryCatParser.selectTableJoined"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTableJoinedOn([NotNull] QueryCatParser.SelectTableJoinedOnContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SelectTableJoinedUsing</c> /// labeled alternative in <see cref="QueryCatParser.selectTableJoined"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTableJoinedUsing([NotNull] QueryCatParser.SelectTableJoinedUsingContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectJoinType"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectJoinType([NotNull] QueryCatParser.SelectJoinTypeContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectGroupBy"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectGroupBy([NotNull] QueryCatParser.SelectGroupByContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectHaving"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectHaving([NotNull] QueryCatParser.SelectHavingContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectSearchCondition"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectSearchCondition([NotNull] QueryCatParser.SelectSearchConditionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectWindowSpecification"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectWindowSpecification([NotNull] QueryCatParser.SelectWindowSpecificationContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectWindowPartitionClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectWindowPartitionClause([NotNull] QueryCatParser.SelectWindowPartitionClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectWindowOrderClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectWindowOrderClause([NotNull] QueryCatParser.SelectWindowOrderClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectWindow"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectWindow([NotNull] QueryCatParser.SelectWindowContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectWindowDefinitionList"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectWindowDefinitionList([NotNull] QueryCatParser.SelectWindowDefinitionListContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectOffsetClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectOffsetClause([NotNull] QueryCatParser.SelectOffsetClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectFetchFirstClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectFetchFirstClause([NotNull] QueryCatParser.SelectFetchFirstClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectTopClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectTopClause([NotNull] QueryCatParser.SelectTopClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.selectLimitClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSelectLimitClause([NotNull] QueryCatParser.SelectLimitClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.updateStatement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitUpdateStatement([NotNull] QueryCatParser.UpdateStatementContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>UpdateNoFormat</c> /// labeled alternative in <see cref="QueryCatParser.updateSource"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitUpdateNoFormat([NotNull] QueryCatParser.UpdateNoFormatContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>UpdateWithFormat</c> /// labeled alternative in <see cref="QueryCatParser.updateSource"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitUpdateWithFormat([NotNull] QueryCatParser.UpdateWithFormatContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>UpdateFromVariable</c> /// labeled alternative in <see cref="QueryCatParser.updateSource"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitUpdateFromVariable([NotNull] QueryCatParser.UpdateFromVariableContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.updateSetClause"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitUpdateSetClause([NotNull] QueryCatParser.UpdateSetClauseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.insertStatement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitInsertStatement([NotNull] QueryCatParser.InsertStatementContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>InsertNoFormat</c> /// labeled alternative in <see cref="QueryCatParser.insertToSource"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitInsertNoFormat([NotNull] QueryCatParser.InsertNoFormatContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>InsertWithFormat</c> /// labeled alternative in <see cref="QueryCatParser.insertToSource"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitInsertWithFormat([NotNull] QueryCatParser.InsertWithFormatContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>InsertFromVariable</c> /// labeled alternative in <see cref="QueryCatParser.insertToSource"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitInsertFromVariable([NotNull] QueryCatParser.InsertFromVariableContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.insertColumnsList"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitInsertColumnsList([NotNull] QueryCatParser.InsertColumnsListContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>InsertSourceQuery</c> /// labeled alternative in <see cref="QueryCatParser.insertFromSource"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitInsertSourceQuery([NotNull] QueryCatParser.InsertSourceQueryContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>InsertSourceTable</c> /// labeled alternative in <see cref="QueryCatParser.insertFromSource"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitInsertSourceTable([NotNull] QueryCatParser.InsertSourceTableContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.echoStatement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitEchoStatement([NotNull] QueryCatParser.EchoStatementContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.callStatement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitCallStatement([NotNull] QueryCatParser.CallStatementContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.ifStatement"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIfStatement([NotNull] QueryCatParser.IfStatementContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.ifCondition"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIfCondition([NotNull] QueryCatParser.IfConditionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>IdentifierSimpleNoQuotes</c> /// labeled alternative in <see cref="QueryCatParser.identifierSimple"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIdentifierSimpleNoQuotes([NotNull] QueryCatParser.IdentifierSimpleNoQuotesContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>IdentifierSimpleQuotes</c> /// labeled alternative in <see cref="QueryCatParser.identifierSimple"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIdentifierSimpleQuotes([NotNull] QueryCatParser.IdentifierSimpleQuotesContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>IdentifierSimpleCurrent</c> /// labeled alternative in <see cref="QueryCatParser.identifierSimple"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIdentifierSimpleCurrent([NotNull] QueryCatParser.IdentifierSimpleCurrentContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>IdentifierWithSelector</c> /// labeled alternative in <see cref="QueryCatParser.identifier"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIdentifierWithSelector([NotNull] QueryCatParser.IdentifierWithSelectorContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>IdentifierWithoutSource</c> /// labeled alternative in <see cref="QueryCatParser.identifier"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIdentifierWithoutSource([NotNull] QueryCatParser.IdentifierWithoutSourceContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>IdentifierSelectorProperty</c> /// labeled alternative in <see cref="QueryCatParser.identifierSelector"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIdentifierSelectorProperty([NotNull] QueryCatParser.IdentifierSelectorPropertyContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>IdentifierSelectorIndex</c> /// labeled alternative in <see cref="QueryCatParser.identifierSelector"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIdentifierSelectorIndex([NotNull] QueryCatParser.IdentifierSelectorIndexContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>IdentifierSelectorFilterExpression</c> /// labeled alternative in <see cref="QueryCatParser.identifierSelector"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIdentifierSelectorFilterExpression([NotNull] QueryCatParser.IdentifierSelectorFilterExpressionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.array"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitArray([NotNull] QueryCatParser.ArrayContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.intervalLiteral"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitIntervalLiteral([NotNull] QueryCatParser.IntervalLiteralContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.blockExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitBlockExpression([NotNull] QueryCatParser.BlockExpressionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.castOperand"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitCastOperand([NotNull] QueryCatParser.CastOperandContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.atTimeZone"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitAtTimeZone([NotNull] QueryCatParser.AtTimeZoneContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.caseExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitCaseExpression([NotNull] QueryCatParser.CaseExpressionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.caseWhen"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitCaseWhen([NotNull] QueryCatParser.CaseWhenContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardFunctionCurrentDate</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardFunctionCurrentDate([NotNull] QueryCatParser.StandardFunctionCurrentDateContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardFunctionCurrentTimestamp</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardFunctionCurrentTimestamp([NotNull] QueryCatParser.StandardFunctionCurrentTimestampContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardFunctionTrim</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardFunctionTrim([NotNull] QueryCatParser.StandardFunctionTrimContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardFunctionPosition</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardFunctionPosition([NotNull] QueryCatParser.StandardFunctionPositionContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardFunctionExtract</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardFunctionExtract([NotNull] QueryCatParser.StandardFunctionExtractContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardFunctionCoalesce</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardFunctionCoalesce([NotNull] QueryCatParser.StandardFunctionCoalesceContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardOccurrencesRegex</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardOccurrencesRegex([NotNull] QueryCatParser.StandardOccurrencesRegexContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardSubstringRegex</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardSubstringRegex([NotNull] QueryCatParser.StandardSubstringRegexContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardPositionRegex</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardPositionRegex([NotNull] QueryCatParser.StandardPositionRegexContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>standardTranslateRegex</c> /// labeled alternative in <see cref="QueryCatParser.standardFunction"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitStandardTranslateRegex([NotNull] QueryCatParser.StandardTranslateRegexContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.dateTimeField"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitDateTimeField([NotNull] QueryCatParser.DateTimeFieldContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by <see cref="QueryCatParser.type"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitType([NotNull] QueryCatParser.TypeContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionBinaryInSubquery</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionBinaryInSubquery([NotNull] QueryCatParser.ExpressionBinaryInSubqueryContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionBinary</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionBinary([NotNull] QueryCatParser.ExpressionBinaryContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionStandardFunctionCall</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionStandardFunctionCall([NotNull] QueryCatParser.ExpressionStandardFunctionCallContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionBlock</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionBlock([NotNull] QueryCatParser.ExpressionBlockContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionInParens</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionInParens([NotNull] QueryCatParser.ExpressionInParensContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionAtTimeZone</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionAtTimeZone([NotNull] QueryCatParser.ExpressionAtTimeZoneContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionCase</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionCase([NotNull] QueryCatParser.ExpressionCaseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionCast</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionCast([NotNull] QueryCatParser.ExpressionCastContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionBetween</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionBetween([NotNull] QueryCatParser.ExpressionBetweenContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionUnary</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionUnary([NotNull] QueryCatParser.ExpressionUnaryContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionSubquery</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionSubquery([NotNull] QueryCatParser.ExpressionSubqueryContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionBinaryInArray</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionBinaryInArray([NotNull] QueryCatParser.ExpressionBinaryInArrayContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionBinaryCast</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionBinaryCast([NotNull] QueryCatParser.ExpressionBinaryCastContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionSelect</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionSelect([NotNull] QueryCatParser.ExpressionSelectContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionIdentifier</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionIdentifier([NotNull] QueryCatParser.ExpressionIdentifierContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionLiteral</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionLiteral([NotNull] QueryCatParser.ExpressionLiteralContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionFunctionCall</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionFunctionCall([NotNull] QueryCatParser.ExpressionFunctionCallContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>ExpressionExists</c> /// labeled alternative in <see cref="QueryCatParser.expression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitExpressionExists([NotNull] QueryCatParser.ExpressionExistsContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionCase</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionCase([NotNull] QueryCatParser.SimpleExpressionCaseContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionLiteral</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionLiteral([NotNull] QueryCatParser.SimpleExpressionLiteralContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionCast</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionCast([NotNull] QueryCatParser.SimpleExpressionCastContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionAtTimeZone</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionAtTimeZone([NotNull] QueryCatParser.SimpleExpressionAtTimeZoneContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionStandardFunctionCall</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionStandardFunctionCall([NotNull] QueryCatParser.SimpleExpressionStandardFunctionCallContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionUnary</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionUnary([NotNull] QueryCatParser.SimpleExpressionUnaryContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionBinary</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionBinary([NotNull] QueryCatParser.SimpleExpressionBinaryContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionBinaryCast</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionBinaryCast([NotNull] QueryCatParser.SimpleExpressionBinaryCastContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionFunctionCall</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionFunctionCall([NotNull] QueryCatParser.SimpleExpressionFunctionCallContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionInParens</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionInParens([NotNull] QueryCatParser.SimpleExpressionInParensContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>SimpleExpressionIdentifier</c> /// labeled alternative in <see cref="QueryCatParser.simpleExpression"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitSimpleExpressionIdentifier([NotNull] QueryCatParser.SimpleExpressionIdentifierContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>literalPlain</c> /// labeled alternative in <see cref="QueryCatParser.literal"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitLiteralPlain([NotNull] QueryCatParser.LiteralPlainContext context) { return VisitChildren(context); } /// <summary> /// Visit a parse tree produced by the <c>literalInterval</c> /// labeled alternative in <see cref="QueryCatParser.literal"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitLiteralInterval([NotNull] QueryCatParser.LiteralIntervalContext context) { return VisitChildren(context); } } } // namespace QueryCat.Backend.Parser