Skip to content

Commit

Permalink
regenerate (#5127)
Browse files Browse the repository at this point in the history
  • Loading branch information
kairu-ms committed Jul 19, 2022
1 parent f4a9a46 commit 3ff68f7
Show file tree
Hide file tree
Showing 8 changed files with 485 additions and 420 deletions.
5 changes: 5 additions & 0 deletions src/scheduled-query/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Release History
===============

0.5.1
++++++
* Supress warning message from antlr 4.9.3

0.5.0
++++++
* Update API version to 2021-08-01
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"azext.isPreview": true,
"azext.minCliCoreVersion": "2.20.0"
"azext.minCliCoreVersion": "2.38.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
# pylint: disable=all
# Generated from ScheduleQueryCondition.g4 by ANTLR 4.7.2
# Generated from ScheduleQueryCondition.g4 by ANTLR 4.9.3
# encoding: utf-8
from antlr4 import *
from io import StringIO
from typing.io import TextIO
import sys
if sys.version_info[1] > 5:
from typing import TextIO
else:
from typing.io import TextIO



Expand Down Expand Up @@ -214,30 +217,30 @@ class ScheduleQueryConditionLexer(Lexer):
modeNames = [ "DEFAULT_MODE" ]

literalNames = [ "<INVALID>",
"'/'", "'.'", "'_'", "'\\'", "':'", "'%'", "'-'", "','", "'|'",
"'/'", "'.'", "'_'", "'\\'", "':'", "'%'", "'-'", "','", "'|'",
"'&'", "'('", "')'", "'=='", "'\\\"'", "'\\''", "'*'", "'~'" ]

symbolicNames = [ "<INVALID>",
"WHERE", "COMESFROM", "RESOURCE", "COLUMN", "AT", "LEAST", "OUT",
"OF", "VIOLATIONS", "AGGREGATED", "POINTS", "AND", "INCLUDES",
"EXCLUDES", "OR", "OPERATOR", "NUMBER", "QUOTE", "WHITESPACE",
"WHERE", "COMESFROM", "RESOURCE", "COLUMN", "AT", "LEAST", "OUT",
"OF", "VIOLATIONS", "AGGREGATED", "POINTS", "AND", "INCLUDES",
"EXCLUDES", "OR", "OPERATOR", "NUMBER", "QUOTE", "WHITESPACE",
"NEWLINE", "WORD" ]

ruleNames = [ "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6",
"T__7", "T__8", "T__9", "T__10", "T__11", "T__12", "T__13",
"T__14", "T__15", "T__16", "A", "C", "D", "E", "F", "G",
"H", "I", "L", "M", "N", "O", "P", "R", "S", "U", "V",
"W", "X", "T", "DIGIT", "LOWERCASE", "UPPERCASE", "WHERE",
"COMESFROM", "RESOURCE", "COLUMN", "AT", "LEAST", "OUT",
"OF", "VIOLATIONS", "AGGREGATED", "POINTS", "AND", "INCLUDES",
"EXCLUDES", "OR", "OPERATOR", "NUMBER", "QUOTE", "WHITESPACE",
ruleNames = [ "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6",
"T__7", "T__8", "T__9", "T__10", "T__11", "T__12", "T__13",
"T__14", "T__15", "T__16", "A", "C", "D", "E", "F", "G",
"H", "I", "L", "M", "N", "O", "P", "R", "S", "U", "V",
"W", "X", "T", "DIGIT", "LOWERCASE", "UPPERCASE", "WHERE",
"COMESFROM", "RESOURCE", "COLUMN", "AT", "LEAST", "OUT",
"OF", "VIOLATIONS", "AGGREGATED", "POINTS", "AND", "INCLUDES",
"EXCLUDES", "OR", "OPERATOR", "NUMBER", "QUOTE", "WHITESPACE",
"NEWLINE", "WORD" ]

grammarFileName = "ScheduleQueryCondition.g4"

def __init__(self, input=None, output:TextIO = sys.stdout):
super().__init__(input, output)
self.checkVersion("4.7.2")
self.checkVersion("4.9.3")
self._interp = LexerATNSimulator(self, self.atn, self.decisionsToDFA, PredictionContextCache())
self._actions = None
self._predicates = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
# pylint: disable=all
# Generated from ScheduleQueryCondition.g4 by ANTLR 4.7.2
# Generated from ScheduleQueryCondition.g4 by ANTLR 4.9.3
from antlr4 import *
if __name__ is not None and "." in __name__:
from .ScheduleQueryConditionParser import ScheduleQueryConditionParser
Expand Down Expand Up @@ -310,3 +310,5 @@ def exitDim_value(self, ctx:ScheduleQueryConditionParser.Dim_valueContext):
pass



del ScheduleQueryConditionParser
Loading

0 comments on commit 3ff68f7

Please sign in to comment.