Skip to content

Commit

Permalink
fix ANTLR rules
Browse files Browse the repository at this point in the history
  • Loading branch information
AMagistroni committed Oct 7, 2021
1 parent 362c280 commit f4da6e8
Show file tree
Hide file tree
Showing 4 changed files with 19,599 additions and 19,523 deletions.
11 changes: 11 additions & 0 deletions SqlSchemaCompare.Core/TSql/ITSqlParserListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3450,6 +3450,17 @@ public interface ITSqlParserListener : IParseTreeListener {
/// <param name="context">The parse tree.</param>
void ExitDatabase_optionspec([NotNull] TSqlParser.Database_optionspecContext context);

/// <summary>
/// Enter a parse tree produced by <see cref="TSqlParser.query_store_options"/>.
/// </summary>
/// <param name="context">The parse tree.</param>
void EnterQuery_store_options([NotNull] TSqlParser.Query_store_optionsContext context);
/// <summary>
/// Exit a parse tree produced by <see cref="TSqlParser.query_store_options"/>.
/// </summary>
/// <param name="context">The parse tree.</param>
void ExitQuery_store_options([NotNull] TSqlParser.Query_store_optionsContext context);

/// <summary>
/// Enter a parse tree produced by <see cref="TSqlParser.auto_option"/>.
/// </summary>
Expand Down
Loading

0 comments on commit f4da6e8

Please sign in to comment.