pickle-jar 1.0.7 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/dist/src/feature-file-visitor.js +27 -14
- package/dist/src/feature-file-visitor.js.map +1 -1
- package/dist/src/grammar/GherkinLexer.d.ts +8 -6
- package/dist/src/grammar/GherkinLexer.js +153 -140
- package/dist/src/grammar/GherkinLexer.js.map +1 -1
- package/dist/src/grammar/GherkinParser.d.ts +12 -6
- package/dist/src/grammar/GherkinParser.js +125 -94
- package/dist/src/grammar/GherkinParser.js.map +1 -1
- package/package.json +1 -1
|
@@ -20,12 +20,14 @@ export declare class GherkinParser extends Parser {
|
|
|
20
20
|
static readonly EXAMPLES = 11;
|
|
21
21
|
static readonly BACKGROUND = 12;
|
|
22
22
|
static readonly PIPE = 13;
|
|
23
|
-
static readonly
|
|
24
|
-
static readonly
|
|
25
|
-
static readonly
|
|
26
|
-
static readonly
|
|
27
|
-
static readonly
|
|
28
|
-
static readonly
|
|
23
|
+
static readonly ONLY_TAG = 14;
|
|
24
|
+
static readonly SKIP_TAG = 15;
|
|
25
|
+
static readonly TAG = 16;
|
|
26
|
+
static readonly COMMENT = 17;
|
|
27
|
+
static readonly TEXT_CHARACTER = 18;
|
|
28
|
+
static readonly WS = 19;
|
|
29
|
+
static readonly WSS = 20;
|
|
30
|
+
static readonly DOC_STRING = 21;
|
|
29
31
|
static readonly RULE_featureFile = 0;
|
|
30
32
|
static readonly RULE_feature = 1;
|
|
31
33
|
static readonly RULE_background = 2;
|
|
@@ -249,6 +251,10 @@ export declare class DocStringContext extends ParserRuleContext {
|
|
|
249
251
|
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
250
252
|
}
|
|
251
253
|
export declare class TagsContext extends ParserRuleContext {
|
|
254
|
+
ONLY_TAG(): TerminalNode[];
|
|
255
|
+
ONLY_TAG(i: number): TerminalNode;
|
|
256
|
+
SKIP_TAG(): TerminalNode[];
|
|
257
|
+
SKIP_TAG(i: number): TerminalNode;
|
|
252
258
|
TAG(): TerminalNode[];
|
|
253
259
|
TAG(i: number): TerminalNode;
|
|
254
260
|
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
@@ -12,6 +12,7 @@ const Parser_1 = require("antlr4ts/Parser");
|
|
|
12
12
|
const ParserRuleContext_1 = require("antlr4ts/ParserRuleContext");
|
|
13
13
|
const ParserATNSimulator_1 = require("antlr4ts/atn/ParserATNSimulator");
|
|
14
14
|
const RecognitionException_1 = require("antlr4ts/RecognitionException");
|
|
15
|
+
const Token_1 = require("antlr4ts/Token");
|
|
15
16
|
const VocabularyImpl_1 = require("antlr4ts/VocabularyImpl");
|
|
16
17
|
const Utils = tslib_1.__importStar(require("antlr4ts/misc/Utils"));
|
|
17
18
|
class GherkinParser extends Parser_1.Parser {
|
|
@@ -93,7 +94,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
93
94
|
this.state = 49;
|
|
94
95
|
this._errHandler.sync(this);
|
|
95
96
|
_la = this._input.LA(1);
|
|
96
|
-
if (_la === GherkinParser.BACKGROUND
|
|
97
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.BACKGROUND) | (1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
97
98
|
{
|
|
98
99
|
this.state = 48;
|
|
99
100
|
this.background();
|
|
@@ -106,7 +107,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
106
107
|
this.state = 55;
|
|
107
108
|
this._errHandler.sync(this);
|
|
108
109
|
_la = this._input.LA(1);
|
|
109
|
-
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.SCENARIO) | (1 << GherkinParser.SCENARIO_OUTLINE) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
110
|
+
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.SCENARIO) | (1 << GherkinParser.SCENARIO_OUTLINE) | (1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
110
111
|
{
|
|
111
112
|
this.state = 53;
|
|
112
113
|
this._errHandler.sync(this);
|
|
@@ -161,7 +162,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
161
162
|
this.state = 61;
|
|
162
163
|
this._errHandler.sync(this);
|
|
163
164
|
_la = this._input.LA(1);
|
|
164
|
-
if (_la === GherkinParser.TAG) {
|
|
165
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
165
166
|
{
|
|
166
167
|
this.state = 60;
|
|
167
168
|
this.tags();
|
|
@@ -192,7 +193,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
192
193
|
this.state = 76;
|
|
193
194
|
this._errHandler.sync(this);
|
|
194
195
|
_la = this._input.LA(1);
|
|
195
|
-
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.SCENARIO) | (1 << GherkinParser.SCENARIO_OUTLINE) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
196
|
+
while ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.SCENARIO) | (1 << GherkinParser.SCENARIO_OUTLINE) | (1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
196
197
|
{
|
|
197
198
|
this.state = 74;
|
|
198
199
|
this._errHandler.sync(this);
|
|
@@ -243,7 +244,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
243
244
|
this.state = 80;
|
|
244
245
|
this._errHandler.sync(this);
|
|
245
246
|
_la = this._input.LA(1);
|
|
246
|
-
if (_la === GherkinParser.TAG) {
|
|
247
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
247
248
|
{
|
|
248
249
|
this.state = 79;
|
|
249
250
|
this.tags();
|
|
@@ -283,7 +284,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
283
284
|
this.state = 87;
|
|
284
285
|
this._errHandler.sync(this);
|
|
285
286
|
_la = this._input.LA(1);
|
|
286
|
-
if (_la === GherkinParser.TAG) {
|
|
287
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
287
288
|
{
|
|
288
289
|
this.state = 86;
|
|
289
290
|
this.tags();
|
|
@@ -589,7 +590,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
589
590
|
this.state = 152;
|
|
590
591
|
this._errHandler.sync(this);
|
|
591
592
|
_la = this._input.LA(1);
|
|
592
|
-
if (_la === GherkinParser.TAG) {
|
|
593
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
593
594
|
{
|
|
594
595
|
this.state = 151;
|
|
595
596
|
this.tags();
|
|
@@ -636,7 +637,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
636
637
|
this.state = 160;
|
|
637
638
|
this._errHandler.sync(this);
|
|
638
639
|
_la = this._input.LA(1);
|
|
639
|
-
if (_la === GherkinParser.TAG) {
|
|
640
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
640
641
|
{
|
|
641
642
|
this.state = 159;
|
|
642
643
|
this.tags();
|
|
@@ -683,7 +684,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
683
684
|
this.state = 168;
|
|
684
685
|
this._errHandler.sync(this);
|
|
685
686
|
_la = this._input.LA(1);
|
|
686
|
-
if (_la === GherkinParser.TAG) {
|
|
687
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
687
688
|
{
|
|
688
689
|
this.state = 167;
|
|
689
690
|
this.tags();
|
|
@@ -730,7 +731,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
730
731
|
this.state = 176;
|
|
731
732
|
this._errHandler.sync(this);
|
|
732
733
|
_la = this._input.LA(1);
|
|
733
|
-
if (_la === GherkinParser.TAG) {
|
|
734
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
734
735
|
{
|
|
735
736
|
this.state = 175;
|
|
736
737
|
this.tags();
|
|
@@ -777,7 +778,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
777
778
|
this.state = 184;
|
|
778
779
|
this._errHandler.sync(this);
|
|
779
780
|
_la = this._input.LA(1);
|
|
780
|
-
if (_la === GherkinParser.TAG) {
|
|
781
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
781
782
|
{
|
|
782
783
|
this.state = 183;
|
|
783
784
|
this.tags();
|
|
@@ -824,7 +825,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
824
825
|
this.state = 192;
|
|
825
826
|
this._errHandler.sync(this);
|
|
826
827
|
_la = this._input.LA(1);
|
|
827
|
-
if (_la === GherkinParser.TAG) {
|
|
828
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
828
829
|
{
|
|
829
830
|
this.state = 191;
|
|
830
831
|
this.tags();
|
|
@@ -871,7 +872,7 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
871
872
|
this.state = 200;
|
|
872
873
|
this._errHandler.sync(this);
|
|
873
874
|
_la = this._input.LA(1);
|
|
874
|
-
if (_la === GherkinParser.TAG) {
|
|
875
|
+
if ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0)) {
|
|
875
876
|
{
|
|
876
877
|
this.state = 199;
|
|
877
878
|
this.tags();
|
|
@@ -948,13 +949,23 @@ class GherkinParser extends Parser_1.Parser {
|
|
|
948
949
|
{
|
|
949
950
|
{
|
|
950
951
|
this.state = 209;
|
|
951
|
-
this.
|
|
952
|
+
_la = this._input.LA(1);
|
|
953
|
+
if (!((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0))) {
|
|
954
|
+
this._errHandler.recoverInline(this);
|
|
955
|
+
}
|
|
956
|
+
else {
|
|
957
|
+
if (this._input.LA(1) === Token_1.Token.EOF) {
|
|
958
|
+
this.matchedEOF = true;
|
|
959
|
+
}
|
|
960
|
+
this._errHandler.reportMatch(this);
|
|
961
|
+
this.consume();
|
|
962
|
+
}
|
|
952
963
|
}
|
|
953
964
|
}
|
|
954
965
|
this.state = 212;
|
|
955
966
|
this._errHandler.sync(this);
|
|
956
967
|
_la = this._input.LA(1);
|
|
957
|
-
} while (_la === GherkinParser.TAG);
|
|
968
|
+
} while ((((_la) & ~0x1F) === 0 && ((1 << _la) & ((1 << GherkinParser.ONLY_TAG) | (1 << GherkinParser.SKIP_TAG) | (1 << GherkinParser.TAG))) !== 0));
|
|
958
969
|
}
|
|
959
970
|
}
|
|
960
971
|
catch (re) {
|
|
@@ -1038,12 +1049,14 @@ GherkinParser.BUT = 10;
|
|
|
1038
1049
|
GherkinParser.EXAMPLES = 11;
|
|
1039
1050
|
GherkinParser.BACKGROUND = 12;
|
|
1040
1051
|
GherkinParser.PIPE = 13;
|
|
1041
|
-
GherkinParser.
|
|
1042
|
-
GherkinParser.
|
|
1043
|
-
GherkinParser.
|
|
1044
|
-
GherkinParser.
|
|
1045
|
-
GherkinParser.
|
|
1046
|
-
GherkinParser.
|
|
1052
|
+
GherkinParser.ONLY_TAG = 14;
|
|
1053
|
+
GherkinParser.SKIP_TAG = 15;
|
|
1054
|
+
GherkinParser.TAG = 16;
|
|
1055
|
+
GherkinParser.COMMENT = 17;
|
|
1056
|
+
GherkinParser.TEXT_CHARACTER = 18;
|
|
1057
|
+
GherkinParser.WS = 19;
|
|
1058
|
+
GherkinParser.WSS = 20;
|
|
1059
|
+
GherkinParser.DOC_STRING = 21;
|
|
1047
1060
|
GherkinParser.RULE_featureFile = 0;
|
|
1048
1061
|
GherkinParser.RULE_feature = 1;
|
|
1049
1062
|
GherkinParser.RULE_background = 2;
|
|
@@ -1074,14 +1087,16 @@ GherkinParser.ruleNames = [
|
|
|
1074
1087
|
GherkinParser._LITERAL_NAMES = [
|
|
1075
1088
|
undefined, undefined, undefined, undefined, undefined, undefined, undefined,
|
|
1076
1089
|
undefined, undefined, undefined, undefined, undefined, undefined, "'|'",
|
|
1090
|
+
"'@only'", "'@skip'",
|
|
1077
1091
|
];
|
|
1078
1092
|
GherkinParser._SYMBOLIC_NAMES = [
|
|
1079
1093
|
undefined, "FEATURE", "SCENARIO", "SCENARIO_OUTLINE", "GIVEN", "AND_GIVEN",
|
|
1080
1094
|
"WHEN", "AND_WHEN", "THEN", "AND", "BUT", "EXAMPLES", "BACKGROUND", "PIPE",
|
|
1081
|
-
"TAG", "COMMENT", "TEXT_CHARACTER", "WS", "WSS",
|
|
1095
|
+
"ONLY_TAG", "SKIP_TAG", "TAG", "COMMENT", "TEXT_CHARACTER", "WS", "WSS",
|
|
1096
|
+
"DOC_STRING",
|
|
1082
1097
|
];
|
|
1083
1098
|
GherkinParser.VOCABULARY = new VocabularyImpl_1.VocabularyImpl(GherkinParser._LITERAL_NAMES, GherkinParser._SYMBOLIC_NAMES, []);
|
|
1084
|
-
GherkinParser._serializedATN = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03\
|
|
1099
|
+
GherkinParser._serializedATN = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x03\x17\xDE\x04\x02" +
|
|
1085
1100
|
"\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06\t\x06\x04\x07" +
|
|
1086
1101
|
"\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f\x04\r\t\r\x04" +
|
|
1087
1102
|
"\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04\x12\t\x12\x04" +
|
|
@@ -1106,77 +1121,77 @@ GherkinParser._serializedATN = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\u
|
|
|
1106
1121
|
"\x14\xD5\n\x14\r\x14\x0E\x14\xD6\x03\x15\x06\x15\xDA\n\x15\r\x15\x0E\x15" +
|
|
1107
1122
|
"\xDB\x03\x15\x02\x02\x02\x16\x02\x02\x04\x02\x06\x02\b\x02\n\x02\f\x02" +
|
|
1108
1123
|
"\x0E\x02\x10\x02\x12\x02\x14\x02\x16\x02\x18\x02\x1A\x02\x1C\x02\x1E\x02" +
|
|
1109
|
-
" \x02\"\x02$\x02&\x02(\x02\x02\x02\x02\xEC\x02-\x03\x02
|
|
1110
|
-
"\x02\x02\
|
|
1111
|
-
"\
|
|
1112
|
-
"\x02\x02\x02\x14~\x03\x02\x02\x02\x16\x9A\x03\x02\x02
|
|
1113
|
-
"\x02\x02\x02\x1A\xAA\x03\x02\x02\x02\x1C\xB2\x03\x02\x02
|
|
1114
|
-
"\x02\x02\x02 \xC2\x03\x02\x02\x02\"\xCA\x03\x02\x02\x02
|
|
1115
|
-
"\x02&\xD4\x03\x02\x02\x02(\xD9\x03\x02\x02\x02*,\x05
|
|
1116
|
-
"\
|
|
1117
|
-
"\x03\x02\x02\x02/-\x03\x02\x02\x0201\x07\x03\x02\
|
|
1118
|
-
"\x05\x06\x04\x0232\x03\x02\x02\x0234\x03\x02\x02\
|
|
1119
|
-
"
|
|
1120
|
-
"
|
|
1121
|
-
";9\x03\x02\x02\x02<3\x03\x02\x02\x02<9\x03\x02\x02\x02
|
|
1122
|
-
"\x02>@\x05&\x14\x02?>\x03\x02\x02\x02?@\x03\x02\x02\x02
|
|
1123
|
-
"\x02AB\x07\x0E\x02\x02BC\x05(\x15\x02CG\x05\x16\f\x02DF
|
|
1124
|
-
"
|
|
1125
|
-
"
|
|
1126
|
-
"
|
|
1127
|
-
"
|
|
1128
|
-
"
|
|
1129
|
-
"
|
|
1130
|
-
"\x02\x02\x02YZ\x03\x02\x02\x02Z[\x03\x02\x02\x02
|
|
1131
|
-
"]\x05(\x15\x02]^\x05\x14\v\x02^_\x05\f\x07\x02_\v
|
|
1132
|
-
"\r\x02\x02ac\x05\x0E\b\x02bd\x05\x10\t\x02cb\x03
|
|
1133
|
-
"\x02\
|
|
1134
|
-
"\x10\t\x02h\x0F\x03\x02\x02\x02ik\x07\x0F\x02\
|
|
1135
|
-
"\
|
|
1136
|
-
"\x02\x02\x02oq\x07\x0F\x02\x02pr\x05\x12\n\
|
|
1137
|
-
"\x02\x02\
|
|
1138
|
-
"\x02\x02\
|
|
1139
|
-
"\x02\x02\
|
|
1140
|
-
"|}\x05(\x15\x02}\x13\x03\x02\x02\x02~\x82\x05\x16
|
|
1141
|
-
"\r\x02\x80\x7F\x03\x02\x02\x02\x81\x84\x03\x02\x02
|
|
1142
|
-
"\x02\
|
|
1143
|
-
"\x02\x02\x85\x89\x05\x1A\x0E\x02\x86\x88\x05\x1C\x0F
|
|
1144
|
-
"\x02\
|
|
1145
|
-
"\x02\
|
|
1146
|
-
"\x10\x02\x8D\x8F\x05 \x11\x02\x8E\x8D\x03\x02\x02
|
|
1147
|
-
"\x02\
|
|
1148
|
-
"\x02\x02\x92\x90\x03\x02\x02\x02\x93\x95\x05\"\x12
|
|
1149
|
-
"\x02\
|
|
1150
|
-
"\x02\x02\x97\x15\x03\x02\x02\x02\x98\x96\x03\x02\x02
|
|
1151
|
-
"\x14\x02\x9A\x99\x03\x02\x02\x02\x9A\x9B\x03\x02\x02
|
|
1152
|
-
"\x02\x02\x9C\x9D\x07\x06\x02\x02\x9D\x9F\x05(\x15
|
|
1153
|
-
"\x02\
|
|
1154
|
-
"\x02\
|
|
1155
|
-
"\x02\xA3\
|
|
1156
|
-
"\x02\xA6\xA8\x05$\x13\x02\xA7\xA6\x03\x02\x02\x02
|
|
1157
|
-
"\x02\xA8\x19\x03\x02\x02\x02\xA9\xAB\x05&\x14\x02
|
|
1158
|
-
"\
|
|
1159
|
-
"\x02\xAD\xAF\x05(\x15\x02\xAE\xB0\x05$\x13\x02\xAF\xAE
|
|
1160
|
-
"\xAF\xB0\x03\x02\x02\x02\xB0\x1B\x03\x02\x02\x02\xB1\xB3
|
|
1161
|
-
"\xB2\xB1\x03\x02\x02\x02\xB2\xB3\x03\x02\x02\x02\xB3\xB4
|
|
1162
|
-
"\xB4\xB5\x07\t\x02\x02\xB5\xB7\x05(\x15\x02\xB6\xB8\x05
|
|
1163
|
-
"\x03\x02\x02\x02\xB7\xB8\x03\x02\x02\x02\xB8\x1D\x03
|
|
1164
|
-
"\x05&\x14\x02\xBA\xB9\x03\x02\x02\x02\xBA\xBB\x03
|
|
1165
|
-
"\x03\x02\x02\x02\xBC\xBD\x07\n\x02\x02\xBD\xBF\x05
|
|
1166
|
-
"$\x13\x02\xBF\xBE\x03\x02\x02\x02\xBF\xC0\x03\x02
|
|
1167
|
-
"\x02\x02\x02\xC1\xC3\x05&\x14\x02\xC2\xC1\x03\x02
|
|
1168
|
-
"\x02\x02\
|
|
1169
|
-
"(\x15\x02\xC6\xC8\x05$\x13\x02\xC7\xC6\x03\x02\x02
|
|
1170
|
-
"\x02\x02\xC8!\x03\x02\x02\x02\xC9\xCB\x05&\x14\x02
|
|
1171
|
-
"\
|
|
1172
|
-
"\x02\xCD\xCF\x05(\x15\x02\xCE\xD0\x05$\x13\x02\xCF\xCE
|
|
1173
|
-
"\xCF\xD0\x03\x02\x02\x02\xD0#\x03\x02\x02\x02\xD1\xD2
|
|
1174
|
-
"\xD2%\x03\x02\x02\x02\xD3\xD5\
|
|
1175
|
-
"\xD5\xD6\x03\x02\x02\x02\xD6\xD4\x03\x02\x02\x02\xD6\xD7\x03
|
|
1176
|
-
"\xD7\'\x03\x02\x02\x02\xD8\xDA\x07\
|
|
1177
|
-
"\xDA\xDB\x03\x02\x02\x02\xDB\xD9\x03\x02\x02\x02\xDB\xDC\x03
|
|
1178
|
-
"\xDC)\x03\x02\x02\x02%-379<?GLNRYemsw\x82\x89\x90\x96\x9A
|
|
1179
|
-
"\xAA\xAF\xB2\xB7\xBA\xBF\xC2\xC7\xCA\xCF\xD6\xDB";
|
|
1124
|
+
" \x02\"\x02$\x02&\x02(\x02\x02\x03\x03\x02\x10\x12\x02\xEC\x02-\x03\x02" +
|
|
1125
|
+
"\x02\x02\x040\x03\x02\x02\x02\x06?\x03\x02\x02\x02\bR\x03\x02\x02\x02" +
|
|
1126
|
+
"\nY\x03\x02\x02\x02\f`\x03\x02\x02\x02\x0Eg\x03\x02\x02\x02\x10i\x03\x02" +
|
|
1127
|
+
"\x02\x02\x12|\x03\x02\x02\x02\x14~\x03\x02\x02\x02\x16\x9A\x03\x02\x02" +
|
|
1128
|
+
"\x02\x18\xA2\x03\x02\x02\x02\x1A\xAA\x03\x02\x02\x02\x1C\xB2\x03\x02\x02" +
|
|
1129
|
+
"\x02\x1E\xBA\x03\x02\x02\x02 \xC2\x03\x02\x02\x02\"\xCA\x03\x02\x02\x02" +
|
|
1130
|
+
"$\xD1\x03\x02\x02\x02&\xD4\x03\x02\x02\x02(\xD9\x03\x02\x02\x02*,\x05" +
|
|
1131
|
+
"\x04\x03\x02+*\x03\x02\x02\x02,/\x03\x02\x02\x02-+\x03\x02\x02\x02-.\x03" +
|
|
1132
|
+
"\x02\x02\x02.\x03\x03\x02\x02\x02/-\x03\x02\x02\x0201\x07\x03\x02\x02" +
|
|
1133
|
+
"1<\x05(\x15\x0224\x05\x06\x04\x0232\x03\x02\x02\x0234\x03\x02\x02\x02" +
|
|
1134
|
+
"4=\x03\x02\x02\x0258\x05\b\x05\x0268\x05\n\x06\x0275\x03\x02\x02\x027" +
|
|
1135
|
+
"6\x03\x02\x02\x028;\x03\x02\x02\x0297\x03\x02\x02\x029:\x03\x02\x02\x02" +
|
|
1136
|
+
":=\x03\x02\x02\x02;9\x03\x02\x02\x02<3\x03\x02\x02\x02<9\x03\x02\x02\x02" +
|
|
1137
|
+
"=\x05\x03\x02\x02\x02>@\x05&\x14\x02?>\x03\x02\x02\x02?@\x03\x02\x02\x02" +
|
|
1138
|
+
"@A\x03\x02\x02\x02AB\x07\x0E\x02\x02BC\x05(\x15\x02CG\x05\x16\f\x02DF" +
|
|
1139
|
+
"\x05\x18\r\x02ED\x03\x02\x02\x02FI\x03\x02\x02\x02GE\x03\x02\x02\x02G" +
|
|
1140
|
+
"H\x03\x02\x02\x02HN\x03\x02\x02\x02IG\x03\x02\x02\x02JM\x05\b\x05\x02" +
|
|
1141
|
+
"KM\x05\n\x06\x02LJ\x03\x02\x02\x02LK\x03\x02\x02\x02MP\x03\x02\x02\x02" +
|
|
1142
|
+
"NL\x03\x02\x02\x02NO\x03\x02\x02\x02O\x07\x03\x02\x02\x02PN\x03\x02\x02" +
|
|
1143
|
+
"\x02QS\x05&\x14\x02RQ\x03\x02\x02\x02RS\x03\x02\x02\x02ST\x03\x02\x02" +
|
|
1144
|
+
"\x02TU\x07\x04\x02\x02UV\x05(\x15\x02VW\x05\x14\v\x02W\t\x03\x02\x02\x02" +
|
|
1145
|
+
"XZ\x05&\x14\x02YX\x03\x02\x02\x02YZ\x03\x02\x02\x02Z[\x03\x02\x02\x02" +
|
|
1146
|
+
"[\\\x07\x05\x02\x02\\]\x05(\x15\x02]^\x05\x14\v\x02^_\x05\f\x07\x02_\v" +
|
|
1147
|
+
"\x03\x02\x02\x02`a\x07\r\x02\x02ac\x05\x0E\b\x02bd\x05\x10\t\x02cb\x03" +
|
|
1148
|
+
"\x02\x02\x02de\x03\x02\x02\x02ec\x03\x02\x02\x02ef\x03\x02\x02\x02f\r" +
|
|
1149
|
+
"\x03\x02\x02\x02gh\x05\x10\t\x02h\x0F\x03\x02\x02\x02ik\x07\x0F\x02\x02" +
|
|
1150
|
+
"jl\x05\x12\n\x02kj\x03\x02\x02\x02lm\x03\x02\x02\x02mk\x03\x02\x02\x02" +
|
|
1151
|
+
"mn\x03\x02\x02\x02nw\x03\x02\x02\x02oq\x07\x0F\x02\x02pr\x05\x12\n\x02" +
|
|
1152
|
+
"qp\x03\x02\x02\x02rs\x03\x02\x02\x02sq\x03\x02\x02\x02st\x03\x02\x02\x02" +
|
|
1153
|
+
"tv\x03\x02\x02\x02uo\x03\x02\x02\x02vy\x03\x02\x02\x02wu\x03\x02\x02\x02" +
|
|
1154
|
+
"wx\x03\x02\x02\x02xz\x03\x02\x02\x02yw\x03\x02\x02\x02z{\x07\x0F\x02\x02" +
|
|
1155
|
+
"{\x11\x03\x02\x02\x02|}\x05(\x15\x02}\x13\x03\x02\x02\x02~\x82\x05\x16" +
|
|
1156
|
+
"\f\x02\x7F\x81\x05\x18\r\x02\x80\x7F\x03\x02\x02\x02\x81\x84\x03\x02\x02" +
|
|
1157
|
+
"\x02\x82\x80\x03\x02\x02\x02\x82\x83\x03\x02\x02\x02\x83\x85\x03\x02\x02" +
|
|
1158
|
+
"\x02\x84\x82\x03\x02\x02\x02\x85\x89\x05\x1A\x0E\x02\x86\x88\x05\x1C\x0F" +
|
|
1159
|
+
"\x02\x87\x86\x03\x02\x02\x02\x88\x8B\x03\x02\x02\x02\x89\x87\x03\x02\x02" +
|
|
1160
|
+
"\x02\x89\x8A\x03\x02\x02\x02\x8A\x8C\x03\x02\x02\x02\x8B\x89\x03\x02\x02" +
|
|
1161
|
+
"\x02\x8C\x90\x05\x1E\x10\x02\x8D\x8F\x05 \x11\x02\x8E\x8D\x03\x02\x02" +
|
|
1162
|
+
"\x02\x8F\x92\x03\x02\x02\x02\x90\x8E\x03\x02\x02\x02\x90\x91\x03\x02\x02" +
|
|
1163
|
+
"\x02\x91\x96\x03\x02\x02\x02\x92\x90\x03\x02\x02\x02\x93\x95\x05\"\x12" +
|
|
1164
|
+
"\x02\x94\x93\x03\x02\x02\x02\x95\x98\x03\x02\x02\x02\x96\x94\x03\x02\x02" +
|
|
1165
|
+
"\x02\x96\x97\x03\x02\x02\x02\x97\x15\x03\x02\x02\x02\x98\x96\x03\x02\x02" +
|
|
1166
|
+
"\x02\x99\x9B\x05&\x14\x02\x9A\x99\x03\x02\x02\x02\x9A\x9B\x03\x02\x02" +
|
|
1167
|
+
"\x02\x9B\x9C\x03\x02\x02\x02\x9C\x9D\x07\x06\x02\x02\x9D\x9F\x05(\x15" +
|
|
1168
|
+
"\x02\x9E\xA0\x05$\x13\x02\x9F\x9E\x03\x02\x02\x02\x9F\xA0\x03\x02\x02" +
|
|
1169
|
+
"\x02\xA0\x17\x03\x02\x02\x02\xA1\xA3\x05&\x14\x02\xA2\xA1\x03\x02\x02" +
|
|
1170
|
+
"\x02\xA2\xA3\x03\x02\x02\x02\xA3\xA4\x03\x02\x02\x02\xA4\xA5\x07\x07\x02" +
|
|
1171
|
+
"\x02\xA5\xA7\x05(\x15\x02\xA6\xA8\x05$\x13\x02\xA7\xA6\x03\x02\x02\x02" +
|
|
1172
|
+
"\xA7\xA8\x03\x02\x02\x02\xA8\x19\x03\x02\x02\x02\xA9\xAB\x05&\x14\x02" +
|
|
1173
|
+
"\xAA\xA9\x03\x02\x02\x02\xAA\xAB\x03\x02\x02\x02\xAB\xAC\x03\x02\x02\x02" +
|
|
1174
|
+
"\xAC\xAD\x07\b\x02\x02\xAD\xAF\x05(\x15\x02\xAE\xB0\x05$\x13\x02\xAF\xAE" +
|
|
1175
|
+
"\x03\x02\x02\x02\xAF\xB0\x03\x02\x02\x02\xB0\x1B\x03\x02\x02\x02\xB1\xB3" +
|
|
1176
|
+
"\x05&\x14\x02\xB2\xB1\x03\x02\x02\x02\xB2\xB3\x03\x02\x02\x02\xB3\xB4" +
|
|
1177
|
+
"\x03\x02\x02\x02\xB4\xB5\x07\t\x02\x02\xB5\xB7\x05(\x15\x02\xB6\xB8\x05" +
|
|
1178
|
+
"$\x13\x02\xB7\xB6\x03\x02\x02\x02\xB7\xB8\x03\x02\x02\x02\xB8\x1D\x03" +
|
|
1179
|
+
"\x02\x02\x02\xB9\xBB\x05&\x14\x02\xBA\xB9\x03\x02\x02\x02\xBA\xBB\x03" +
|
|
1180
|
+
"\x02\x02\x02\xBB\xBC\x03\x02\x02\x02\xBC\xBD\x07\n\x02\x02\xBD\xBF\x05" +
|
|
1181
|
+
"(\x15\x02\xBE\xC0\x05$\x13\x02\xBF\xBE\x03\x02\x02\x02\xBF\xC0\x03\x02" +
|
|
1182
|
+
"\x02\x02\xC0\x1F\x03\x02\x02\x02\xC1\xC3\x05&\x14\x02\xC2\xC1\x03\x02" +
|
|
1183
|
+
"\x02\x02\xC2\xC3\x03\x02\x02\x02\xC3\xC4\x03\x02\x02\x02\xC4\xC5\x07\v" +
|
|
1184
|
+
"\x02\x02\xC5\xC7\x05(\x15\x02\xC6\xC8\x05$\x13\x02\xC7\xC6\x03\x02\x02" +
|
|
1185
|
+
"\x02\xC7\xC8\x03\x02\x02\x02\xC8!\x03\x02\x02\x02\xC9\xCB\x05&\x14\x02" +
|
|
1186
|
+
"\xCA\xC9\x03\x02\x02\x02\xCA\xCB\x03\x02\x02\x02\xCB\xCC\x03\x02\x02\x02" +
|
|
1187
|
+
"\xCC\xCD\x07\f\x02\x02\xCD\xCF\x05(\x15\x02\xCE\xD0\x05$\x13\x02\xCF\xCE" +
|
|
1188
|
+
"\x03\x02\x02\x02\xCF\xD0\x03\x02\x02\x02\xD0#\x03\x02\x02\x02\xD1\xD2" +
|
|
1189
|
+
"\x07\x17\x02\x02\xD2%\x03\x02\x02\x02\xD3\xD5\t\x02\x02\x02\xD4\xD3\x03" +
|
|
1190
|
+
"\x02\x02\x02\xD5\xD6\x03\x02\x02\x02\xD6\xD4\x03\x02\x02\x02\xD6\xD7\x03" +
|
|
1191
|
+
"\x02\x02\x02\xD7\'\x03\x02\x02\x02\xD8\xDA\x07\x14\x02\x02\xD9\xD8\x03" +
|
|
1192
|
+
"\x02\x02\x02\xDA\xDB\x03\x02\x02\x02\xDB\xD9\x03\x02\x02\x02\xDB\xDC\x03" +
|
|
1193
|
+
"\x02\x02\x02\xDC)\x03\x02\x02\x02%-379<?GLNRYemsw\x82\x89\x90\x96\x9A" +
|
|
1194
|
+
"\x9F\xA2\xA7\xAA\xAF\xB2\xB7\xBA\xBF\xC2\xC7\xCA\xCF\xD6\xDB";
|
|
1180
1195
|
class FeatureFileContext extends ParserRuleContext_1.ParserRuleContext {
|
|
1181
1196
|
feature(i) {
|
|
1182
1197
|
if (i === undefined) {
|
|
@@ -1718,6 +1733,22 @@ class DocStringContext extends ParserRuleContext_1.ParserRuleContext {
|
|
|
1718
1733
|
}
|
|
1719
1734
|
exports.DocStringContext = DocStringContext;
|
|
1720
1735
|
class TagsContext extends ParserRuleContext_1.ParserRuleContext {
|
|
1736
|
+
ONLY_TAG(i) {
|
|
1737
|
+
if (i === undefined) {
|
|
1738
|
+
return this.getTokens(GherkinParser.ONLY_TAG);
|
|
1739
|
+
}
|
|
1740
|
+
else {
|
|
1741
|
+
return this.getToken(GherkinParser.ONLY_TAG, i);
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
SKIP_TAG(i) {
|
|
1745
|
+
if (i === undefined) {
|
|
1746
|
+
return this.getTokens(GherkinParser.SKIP_TAG);
|
|
1747
|
+
}
|
|
1748
|
+
else {
|
|
1749
|
+
return this.getToken(GherkinParser.SKIP_TAG, i);
|
|
1750
|
+
}
|
|
1751
|
+
}
|
|
1721
1752
|
TAG(i) {
|
|
1722
1753
|
if (i === undefined) {
|
|
1723
1754
|
return this.getTokens(GherkinParser.TAG);
|