pickle-jar 1.4.2 → 1.5.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 +30 -24
- package/package.json +15 -12
- package/dist/src/feature-context.d.ts +0 -6
- package/dist/src/feature-context.js +0 -3
- package/dist/src/feature-context.js.map +0 -1
- package/dist/src/feature-file-visitor.d.ts +0 -29
- package/dist/src/feature-file-visitor.js +0 -217
- package/dist/src/feature-file-visitor.js.map +0 -1
- package/dist/src/get-call-sites.d.ts +0 -2
- package/dist/src/get-call-sites.js +0 -12
- package/dist/src/get-call-sites.js.map +0 -1
- package/dist/src/grammar/GherkinLexer.d.ts +0 -46
- package/dist/src/grammar/GherkinLexer.js +0 -245
- package/dist/src/grammar/GherkinLexer.js.map +0 -1
- package/dist/src/grammar/GherkinParser.d.ts +0 -330
- package/dist/src/grammar/GherkinParser.js +0 -2896
- package/dist/src/grammar/GherkinParser.js.map +0 -1
- package/dist/src/grammar/GherkinParserVisitor.d.ts +0 -164
- package/dist/src/grammar/GherkinParserVisitor.js +0 -4
- package/dist/src/grammar/GherkinParserVisitor.js.map +0 -1
- package/dist/src/index.d.ts +0 -8
- package/dist/src/index.js +0 -12
- package/dist/src/index.js.map +0 -1
- package/dist/src/jest-error-listener.d.ts +0 -8
- package/dist/src/jest-error-listener.js +0 -22
- package/dist/src/jest-error-listener.js.map +0 -1
- package/dist/src/step-definition.d.ts +0 -5
- package/dist/src/step-definition.js +0 -3
- package/dist/src/step-definition.js.map +0 -1
- package/dist/src/step-tags.d.ts +0 -7
- package/dist/src/step-tags.js +0 -3
- package/dist/src/step-tags.js.map +0 -1
- package/dist/src/step.d.ts +0 -1
- package/dist/src/step.js +0 -3
- package/dist/src/step.js.map +0 -1
- package/dist/src/tags.d.ts +0 -4
- package/dist/src/tags.js +0 -22
- package/dist/src/tags.js.map +0 -1
- package/dist/src/test-runner.d.ts +0 -3
- package/dist/src/test-runner.js +0 -49
- package/dist/src/test-runner.js.map +0 -1
- package/dist/src/world.d.ts +0 -2
- package/dist/src/world.js +0 -3
- package/dist/src/world.js.map +0 -1
|
@@ -1,245 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
// Generated from ./src/grammar/GherkinLexer.g4 by ANTLR 4.9.0-SNAPSHOT
|
|
4
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.GherkinLexer = void 0;
|
|
6
|
-
const tslib_1 = require("tslib");
|
|
7
|
-
const ATNDeserializer_1 = require("antlr4ts/atn/ATNDeserializer");
|
|
8
|
-
const Lexer_1 = require("antlr4ts/Lexer");
|
|
9
|
-
const LexerATNSimulator_1 = require("antlr4ts/atn/LexerATNSimulator");
|
|
10
|
-
const VocabularyImpl_1 = require("antlr4ts/VocabularyImpl");
|
|
11
|
-
const Utils = tslib_1.__importStar(require("antlr4ts/misc/Utils"));
|
|
12
|
-
class GherkinLexer extends Lexer_1.Lexer {
|
|
13
|
-
// @Override
|
|
14
|
-
// @NotNull
|
|
15
|
-
get vocabulary() {
|
|
16
|
-
return GherkinLexer.VOCABULARY;
|
|
17
|
-
}
|
|
18
|
-
// tslint:enable:no-trailing-whitespace
|
|
19
|
-
constructor(input) {
|
|
20
|
-
super(input);
|
|
21
|
-
this._interp = new LexerATNSimulator_1.LexerATNSimulator(GherkinLexer._ATN, this);
|
|
22
|
-
}
|
|
23
|
-
// @Override
|
|
24
|
-
get grammarFileName() { return "GherkinLexer.g4"; }
|
|
25
|
-
// @Override
|
|
26
|
-
get ruleNames() { return GherkinLexer.ruleNames; }
|
|
27
|
-
// @Override
|
|
28
|
-
get serializedATN() { return GherkinLexer._serializedATN; }
|
|
29
|
-
// @Override
|
|
30
|
-
get channelNames() { return GherkinLexer.channelNames; }
|
|
31
|
-
// @Override
|
|
32
|
-
get modeNames() { return GherkinLexer.modeNames; }
|
|
33
|
-
static get _ATN() {
|
|
34
|
-
if (!GherkinLexer.__ATN) {
|
|
35
|
-
GherkinLexer.__ATN = new ATNDeserializer_1.ATNDeserializer().deserialize(Utils.toCharArray(GherkinLexer._serializedATN));
|
|
36
|
-
}
|
|
37
|
-
return GherkinLexer.__ATN;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
exports.GherkinLexer = GherkinLexer;
|
|
41
|
-
GherkinLexer.FEATURE = 1;
|
|
42
|
-
GherkinLexer.SCENARIO = 2;
|
|
43
|
-
GherkinLexer.SCENARIO_OUTLINE = 3;
|
|
44
|
-
GherkinLexer.GIVEN = 4;
|
|
45
|
-
GherkinLexer.AND_GIVEN = 5;
|
|
46
|
-
GherkinLexer.WHEN = 6;
|
|
47
|
-
GherkinLexer.AND_WHEN = 7;
|
|
48
|
-
GherkinLexer.THEN = 8;
|
|
49
|
-
GherkinLexer.AND = 9;
|
|
50
|
-
GherkinLexer.BUT = 10;
|
|
51
|
-
GherkinLexer.EXAMPLES = 11;
|
|
52
|
-
GherkinLexer.BACKGROUND = 12;
|
|
53
|
-
GherkinLexer.PIPE = 13;
|
|
54
|
-
GherkinLexer.ONLY_TAG = 14;
|
|
55
|
-
GherkinLexer.SKIP_TAG = 15;
|
|
56
|
-
GherkinLexer.TODO_TAG = 16;
|
|
57
|
-
GherkinLexer.FAIL_TAG = 17;
|
|
58
|
-
GherkinLexer.TAG = 18;
|
|
59
|
-
GherkinLexer.COMMENT = 19;
|
|
60
|
-
GherkinLexer.TEXT_CHARACTER = 20;
|
|
61
|
-
GherkinLexer.NEWLINE = 21;
|
|
62
|
-
GherkinLexer.WSS = 22;
|
|
63
|
-
GherkinLexer.DOC_STRING = 23;
|
|
64
|
-
GherkinLexer.TEXT_CHARACTER_MODE = 1;
|
|
65
|
-
// tslint:disable:no-trailing-whitespace
|
|
66
|
-
GherkinLexer.channelNames = [
|
|
67
|
-
"DEFAULT_TOKEN_CHANNEL", "HIDDEN",
|
|
68
|
-
];
|
|
69
|
-
// tslint:disable:no-trailing-whitespace
|
|
70
|
-
GherkinLexer.modeNames = [
|
|
71
|
-
"DEFAULT_MODE", "TEXT_CHARACTER_MODE",
|
|
72
|
-
];
|
|
73
|
-
GherkinLexer.ruleNames = [
|
|
74
|
-
"FEATURE", "SCENARIO", "SCENARIO_OUTLINE", "GIVEN", "AND_GIVEN", "WHEN",
|
|
75
|
-
"AND_WHEN", "THEN", "AND", "BUT", "EXAMPLES", "BACKGROUND", "PIPE", "ONLY_TAG",
|
|
76
|
-
"SKIP_TAG", "TODO_TAG", "FAIL_TAG", "TAG", "COMMENT", "TEXT_CHARACTER",
|
|
77
|
-
"NEWLINE", "WSS", "DOC_STRING", "TEXT_CHARACTER2",
|
|
78
|
-
];
|
|
79
|
-
GherkinLexer._LITERAL_NAMES = [
|
|
80
|
-
undefined, undefined, undefined, undefined, undefined, undefined, undefined,
|
|
81
|
-
undefined, undefined, undefined, undefined, undefined, undefined, "'|'",
|
|
82
|
-
"'@only'", "'@skip'", "'@todo'", "'@fail'",
|
|
83
|
-
];
|
|
84
|
-
GherkinLexer._SYMBOLIC_NAMES = [
|
|
85
|
-
undefined, "FEATURE", "SCENARIO", "SCENARIO_OUTLINE", "GIVEN", "AND_GIVEN",
|
|
86
|
-
"WHEN", "AND_WHEN", "THEN", "AND", "BUT", "EXAMPLES", "BACKGROUND", "PIPE",
|
|
87
|
-
"ONLY_TAG", "SKIP_TAG", "TODO_TAG", "FAIL_TAG", "TAG", "COMMENT", "TEXT_CHARACTER",
|
|
88
|
-
"NEWLINE", "WSS", "DOC_STRING",
|
|
89
|
-
];
|
|
90
|
-
GherkinLexer.VOCABULARY = new VocabularyImpl_1.VocabularyImpl(GherkinLexer._LITERAL_NAMES, GherkinLexer._SYMBOLIC_NAMES, []);
|
|
91
|
-
GherkinLexer._serializedATN = "\x03\uC91D\uCABA\u058D\uAFBA\u4F53\u0607\uEA8B\uC241\x02\x19\u0159\b\x01" +
|
|
92
|
-
"\b\x01\x04\x02\t\x02\x04\x03\t\x03\x04\x04\t\x04\x04\x05\t\x05\x04\x06" +
|
|
93
|
-
"\t\x06\x04\x07\t\x07\x04\b\t\b\x04\t\t\t\x04\n\t\n\x04\v\t\v\x04\f\t\f" +
|
|
94
|
-
"\x04\r\t\r\x04\x0E\t\x0E\x04\x0F\t\x0F\x04\x10\t\x10\x04\x11\t\x11\x04" +
|
|
95
|
-
"\x12\t\x12\x04\x13\t\x13\x04\x14\t\x14\x04\x15\t\x15\x04\x16\t\x16\x04" +
|
|
96
|
-
"\x17\t\x17\x04\x18\t\x18\x04\x19\t\x19\x03\x02\x03\x02\x03\x02\x03\x02" +
|
|
97
|
-
"\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02\x03\x02" +
|
|
98
|
-
"\x03\x02\x03\x02\x05\x02D\n\x02\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03" +
|
|
99
|
-
"\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03" +
|
|
100
|
-
"\x03\x03\x03\x03\x03\x03\x05\x03W\n\x03\x03\x04\x03\x04\x03\x04\x03\x04" +
|
|
101
|
-
"\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04" +
|
|
102
|
-
"\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04" +
|
|
103
|
-
"\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04" +
|
|
104
|
-
"\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04" +
|
|
105
|
-
"\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04\x03\x04" +
|
|
106
|
-
"\x03\x04\x03\x04\x05\x04\x8C\n\x04\x03\x05\x03\x05\x03\x05\x03\x05\x03" +
|
|
107
|
-
"\x05\x03\x05\x03\x05\x03\x05\x03\x05\x03\x05\x05\x05\x98\n\x05\x03\x06" +
|
|
108
|
-
"\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06" +
|
|
109
|
-
"\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x03\x06\x05\x06" +
|
|
110
|
-
"\xAC\n\x06\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03\x07\x03" +
|
|
111
|
-
"\x07\x05\x07\xB6\n\x07\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b" +
|
|
112
|
-
"\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x03\b\x05\b\xC8\n\b\x03\t\x03" +
|
|
113
|
-
"\t\x03\t\x03\t\x03\t\x03\t\x03\t\x03\t\x05\t\xD2\n\t\x03\n\x03\n\x03\n" +
|
|
114
|
-
"\x03\n\x03\n\x03\n\x05\n\xDA\n\n\x03\v\x03\v\x03\v\x03\v\x03\v\x03\v\x05" +
|
|
115
|
-
"\v\xE2\n\v\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f" +
|
|
116
|
-
"\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x03\f\x05\f\xF5\n\f\x03\r\x03\r\x03" +
|
|
117
|
-
"\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03" +
|
|
118
|
-
"\r\x03\r\x03\r\x03\r\x03\r\x03\r\x03\r\x05\r\u010C\n\r\x03\x0E\x03\x0E" +
|
|
119
|
-
"\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x0F\x03\x10\x03\x10\x03\x10" +
|
|
120
|
-
"\x03\x10\x03\x10\x03\x10\x03\x11\x03\x11\x03\x11\x03\x11\x03\x11\x03\x11" +
|
|
121
|
-
"\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x12\x03\x13\x03\x13\x06\x13" +
|
|
122
|
-
"\u012A\n\x13\r\x13\x0E\x13\u012B\x03\x14\x03\x14\x07\x14\u0130\n\x14\f" +
|
|
123
|
-
"\x14\x0E\x14\u0133\v\x14\x03\x14\x03\x14\x03\x15\x03\x15\x03\x15\x03\x15" +
|
|
124
|
-
"\x03\x16\x03\x16\x03\x17\x06\x17\u013E\n\x17\r\x17\x0E\x17\u013F\x03\x17" +
|
|
125
|
-
"\x03\x17\x03\x18\x03\x18\x03\x18\x03\x18\x03\x18\x07\x18\u0149\n\x18\f" +
|
|
126
|
-
"\x18\x0E\x18\u014C\v\x18\x03\x18\x03\x18\x03\x18\x03\x18\x03\x19\x06\x19" +
|
|
127
|
-
"\u0153\n\x19\r\x19\x0E\x19\u0154\x03\x19\x03\x19\x03\x19\x03\u014A\x02" +
|
|
128
|
-
"\x02\x1A\x04\x02\x03\x06\x02\x04\b\x02\x05\n\x02\x06\f\x02\x07\x0E\x02" +
|
|
129
|
-
"\b\x10\x02\t\x12\x02\n\x14\x02\v\x16\x02\f\x18\x02\r\x1A\x02\x0E\x1C\x02" +
|
|
130
|
-
"\x0F\x1E\x02\x10 \x02\x11\"\x02\x12$\x02\x13&\x02\x14(\x02\x15*\x02\x16" +
|
|
131
|
-
",\x02\x17.\x02\x180\x02\x192\x02\x02\x04\x02\x03\x06\x06\x022;C\\aac|" +
|
|
132
|
-
"\x04\x02\f\f\x0F\x0F\x05\x02\f\f\x0F\x0F~~\x04\x02\v\v\"\"\x02\u0169\x02" +
|
|
133
|
-
"\x04\x03\x02\x02\x02\x02\x06\x03\x02\x02\x02\x02\b\x03\x02\x02\x02\x02" +
|
|
134
|
-
"\n\x03\x02\x02\x02\x02\f\x03\x02\x02\x02\x02\x0E\x03\x02\x02\x02\x02\x10" +
|
|
135
|
-
"\x03\x02\x02\x02\x02\x12\x03\x02\x02\x02\x02\x14\x03\x02\x02\x02\x02\x16" +
|
|
136
|
-
"\x03\x02\x02\x02\x02\x18\x03\x02\x02\x02\x02\x1A\x03\x02\x02\x02\x02\x1C" +
|
|
137
|
-
"\x03\x02\x02\x02\x02\x1E\x03\x02\x02\x02\x02 \x03\x02\x02\x02\x02\"\x03" +
|
|
138
|
-
"\x02\x02\x02\x02$\x03\x02\x02\x02\x02&\x03\x02\x02\x02\x02(\x03\x02\x02" +
|
|
139
|
-
"\x02\x02*\x03\x02\x02\x02\x02,\x03\x02\x02\x02\x02.\x03\x02\x02\x02\x02" +
|
|
140
|
-
"0\x03\x02\x02\x02\x032\x03\x02\x02\x02\x04C\x03\x02\x02\x02\x06V\x03\x02" +
|
|
141
|
-
"\x02\x02\b\x8B\x03\x02\x02\x02\n\x97\x03\x02\x02\x02\f\xAB\x03\x02\x02" +
|
|
142
|
-
"\x02\x0E\xB5\x03\x02\x02\x02\x10\xC7\x03\x02\x02\x02\x12\xD1\x03\x02\x02" +
|
|
143
|
-
"\x02\x14\xD9\x03\x02\x02\x02\x16\xE1\x03\x02\x02\x02\x18\xF4\x03\x02\x02" +
|
|
144
|
-
"\x02\x1A\u010B\x03\x02\x02\x02\x1C\u010D\x03\x02\x02\x02\x1E\u010F\x03" +
|
|
145
|
-
"\x02\x02\x02 \u0115\x03\x02\x02\x02\"\u011B\x03\x02\x02\x02$\u0121\x03" +
|
|
146
|
-
"\x02\x02\x02&\u0127\x03\x02\x02\x02(\u012D\x03\x02\x02\x02*\u0136\x03" +
|
|
147
|
-
"\x02\x02\x02,\u013A\x03\x02\x02\x02.\u013D\x03\x02\x02\x020\u0143\x03" +
|
|
148
|
-
"\x02\x02\x022\u0152\x03\x02\x02\x0245\x07H\x02\x0256\x07g\x02\x0267\x07" +
|
|
149
|
-
"c\x02\x0278\x07v\x02\x0289\x07w\x02\x029:\x07t\x02\x02:;\x07g\x02\x02" +
|
|
150
|
-
";D\x07<\x02\x02<=\x07H\x02\x02=>\x07G\x02\x02>?\x07C\x02\x02?@\x07V\x02" +
|
|
151
|
-
"\x02@A\x07W\x02\x02AB\x07T\x02\x02BD\x07G\x02\x02C4\x03\x02\x02\x02C<" +
|
|
152
|
-
"\x03\x02\x02\x02D\x05\x03\x02\x02\x02EF\x07U\x02\x02FG\x07e\x02\x02GH" +
|
|
153
|
-
"\x07g\x02\x02HI\x07p\x02\x02IJ\x07c\x02\x02JK\x07t\x02\x02KL\x07k\x02" +
|
|
154
|
-
"\x02LM\x07q\x02\x02MW\x07<\x02\x02NO\x07U\x02\x02OP\x07E\x02\x02PQ\x07" +
|
|
155
|
-
"G\x02\x02QR\x07P\x02\x02RS\x07C\x02\x02ST\x07T\x02\x02TU\x07K\x02\x02" +
|
|
156
|
-
"UW\x07Q\x02\x02VE\x03\x02\x02\x02VN\x03\x02\x02\x02W\x07\x03\x02\x02\x02" +
|
|
157
|
-
"XY\x07U\x02\x02YZ\x07e\x02\x02Z[\x07g\x02\x02[\\\x07p\x02\x02\\]\x07c" +
|
|
158
|
-
"\x02\x02]^\x07t\x02\x02^_\x07k\x02\x02_`\x07q\x02\x02`a\x07\"\x02\x02" +
|
|
159
|
-
"ab\x07Q\x02\x02bc\x07w\x02\x02cd\x07v\x02\x02de\x07n\x02\x02ef\x07k\x02" +
|
|
160
|
-
"\x02fg\x07p\x02\x02gh\x07g\x02\x02h\x8C\x07<\x02\x02ij\x07U\x02\x02jk" +
|
|
161
|
-
"\x07E\x02\x02kl\x07G\x02\x02lm\x07P\x02\x02mn\x07C\x02\x02no\x07T\x02" +
|
|
162
|
-
"\x02op\x07K\x02\x02pq\x07Q\x02\x02qr\x07a\x02\x02rs\x07Q\x02\x02st\x07" +
|
|
163
|
-
"W\x02\x02tu\x07V\x02\x02uv\x07N\x02\x02vw\x07K\x02\x02wx\x07P\x02\x02" +
|
|
164
|
-
"x\x8C\x07G\x02\x02yz\x07U\x02\x02z{\x07e\x02\x02{|\x07g\x02\x02|}\x07" +
|
|
165
|
-
"p\x02\x02}~\x07c\x02\x02~\x7F\x07t\x02\x02\x7F\x80\x07k\x02\x02\x80\x81" +
|
|
166
|
-
"\x07q\x02\x02\x81\x82\x07\"\x02\x02\x82\x83\x07V\x02\x02\x83\x84\x07g" +
|
|
167
|
-
"\x02\x02\x84\x85\x07o\x02\x02\x85\x86\x07r\x02\x02\x86\x87\x07n\x02\x02" +
|
|
168
|
-
"\x87\x88\x07c\x02\x02\x88\x89\x07v\x02\x02\x89\x8A\x07g\x02\x02\x8A\x8C" +
|
|
169
|
-
"\x07<\x02\x02\x8BX\x03\x02\x02\x02\x8Bi\x03\x02\x02\x02\x8By\x03\x02\x02" +
|
|
170
|
-
"\x02\x8C\t\x03\x02\x02\x02\x8D\x8E\x07I\x02\x02\x8E\x8F\x07k\x02\x02\x8F" +
|
|
171
|
-
"\x90\x07x\x02\x02\x90\x91\x07g\x02\x02\x91\x98\x07p\x02\x02\x92\x93\x07" +
|
|
172
|
-
"I\x02\x02\x93\x94\x07K\x02\x02\x94\x95\x07X\x02\x02\x95\x96\x07G\x02\x02" +
|
|
173
|
-
"\x96\x98\x07P\x02\x02\x97\x8D\x03\x02\x02\x02\x97\x92\x03\x02\x02\x02" +
|
|
174
|
-
"\x98\v\x03\x02\x02\x02\x99\x9A\x07C\x02\x02\x9A\x9B\x07p\x02\x02\x9B\x9C" +
|
|
175
|
-
"\x07f\x02\x02\x9C\x9D\x07\"\x02\x02\x9D\x9E\x07i\x02\x02\x9E\x9F\x07k" +
|
|
176
|
-
"\x02\x02\x9F\xA0\x07x\x02\x02\xA0\xA1\x07g\x02\x02\xA1\xAC\x07p\x02\x02" +
|
|
177
|
-
"\xA2\xA3\x07C\x02\x02\xA3\xA4\x07P\x02\x02\xA4\xA5\x07F\x02\x02\xA5\xA6" +
|
|
178
|
-
"\x07a\x02\x02\xA6\xA7\x07I\x02\x02\xA7\xA8\x07K\x02\x02\xA8\xA9\x07X\x02" +
|
|
179
|
-
"\x02\xA9\xAA\x07G\x02\x02\xAA\xAC\x07P\x02\x02\xAB\x99\x03\x02\x02\x02" +
|
|
180
|
-
"\xAB\xA2\x03\x02\x02\x02\xAC\r\x03\x02\x02\x02\xAD\xAE\x07Y\x02\x02\xAE" +
|
|
181
|
-
"\xAF\x07j\x02\x02\xAF\xB0\x07g\x02\x02\xB0\xB6\x07p\x02\x02\xB1\xB2\x07" +
|
|
182
|
-
"Y\x02\x02\xB2\xB3\x07J\x02\x02\xB3\xB4\x07G\x02\x02\xB4\xB6\x07P\x02\x02" +
|
|
183
|
-
"\xB5\xAD\x03\x02\x02\x02\xB5\xB1\x03\x02\x02\x02\xB6\x0F\x03\x02\x02\x02" +
|
|
184
|
-
"\xB7\xB8\x07C\x02\x02\xB8\xB9\x07p\x02\x02\xB9\xBA\x07f\x02\x02\xBA\xBB" +
|
|
185
|
-
"\x07\"\x02\x02\xBB\xBC\x07y\x02\x02\xBC\xBD\x07j\x02\x02\xBD\xBE\x07g" +
|
|
186
|
-
"\x02\x02\xBE\xC8\x07p\x02\x02\xBF\xC0\x07C\x02\x02\xC0\xC1\x07P\x02\x02" +
|
|
187
|
-
"\xC1\xC2\x07F\x02\x02\xC2\xC3\x07a\x02\x02\xC3\xC4\x07Y\x02\x02\xC4\xC5" +
|
|
188
|
-
"\x07J\x02\x02\xC5\xC6\x07G\x02\x02\xC6\xC8\x07P\x02\x02\xC7\xB7\x03\x02" +
|
|
189
|
-
"\x02\x02\xC7\xBF\x03\x02\x02\x02\xC8\x11\x03\x02\x02\x02\xC9\xCA\x07V" +
|
|
190
|
-
"\x02\x02\xCA\xCB\x07j\x02\x02\xCB\xCC\x07g\x02\x02\xCC\xD2\x07p\x02\x02" +
|
|
191
|
-
"\xCD\xCE\x07V\x02\x02\xCE\xCF\x07J\x02\x02\xCF\xD0\x07G\x02\x02\xD0\xD2" +
|
|
192
|
-
"\x07P\x02\x02\xD1\xC9\x03\x02\x02\x02\xD1\xCD\x03\x02\x02\x02\xD2\x13" +
|
|
193
|
-
"\x03\x02\x02\x02\xD3\xD4\x07C\x02\x02\xD4\xD5\x07p\x02\x02\xD5\xDA\x07" +
|
|
194
|
-
"f\x02\x02\xD6\xD7\x07C\x02\x02\xD7\xD8\x07P\x02\x02\xD8\xDA\x07F\x02\x02" +
|
|
195
|
-
"\xD9\xD3\x03\x02\x02\x02\xD9\xD6\x03\x02\x02\x02\xDA\x15\x03\x02\x02\x02" +
|
|
196
|
-
"\xDB\xDC\x07D\x02\x02\xDC\xDD\x07w\x02\x02\xDD\xE2\x07v\x02\x02\xDE\xDF" +
|
|
197
|
-
"\x07D\x02\x02\xDF\xE0\x07W\x02\x02\xE0\xE2\x07V\x02\x02\xE1\xDB\x03\x02" +
|
|
198
|
-
"\x02\x02\xE1\xDE\x03\x02\x02\x02\xE2\x17\x03\x02\x02\x02\xE3\xE4\x07G" +
|
|
199
|
-
"\x02\x02\xE4\xE5\x07z\x02\x02\xE5\xE6\x07c\x02\x02\xE6\xE7\x07o\x02\x02" +
|
|
200
|
-
"\xE7\xE8\x07r\x02\x02\xE8\xE9\x07n\x02\x02\xE9\xEA\x07g\x02\x02\xEA\xEB" +
|
|
201
|
-
"\x07u\x02\x02\xEB\xF5\x07<\x02\x02\xEC\xED\x07G\x02\x02\xED\xEE\x07Z\x02" +
|
|
202
|
-
"\x02\xEE\xEF\x07C\x02\x02\xEF\xF0\x07O\x02\x02\xF0\xF1\x07R\x02\x02\xF1" +
|
|
203
|
-
"\xF2\x07N\x02\x02\xF2\xF3\x07G\x02\x02\xF3\xF5\x07U\x02\x02\xF4\xE3\x03" +
|
|
204
|
-
"\x02\x02\x02\xF4\xEC\x03\x02\x02\x02\xF5\x19\x03\x02\x02\x02\xF6\xF7\x07" +
|
|
205
|
-
"D\x02\x02\xF7\xF8\x07c\x02\x02\xF8\xF9\x07e\x02\x02\xF9\xFA\x07m\x02\x02" +
|
|
206
|
-
"\xFA\xFB\x07i\x02\x02\xFB\xFC\x07t\x02\x02\xFC\xFD\x07q\x02\x02\xFD\xFE" +
|
|
207
|
-
"\x07w\x02\x02\xFE\xFF\x07p\x02\x02\xFF\u0100\x07f\x02\x02\u0100\u010C" +
|
|
208
|
-
"\x07<\x02\x02\u0101\u0102\x07D\x02\x02\u0102\u0103\x07C\x02\x02\u0103" +
|
|
209
|
-
"\u0104\x07E\x02\x02\u0104\u0105\x07M\x02\x02\u0105\u0106\x07I\x02\x02" +
|
|
210
|
-
"\u0106\u0107\x07T\x02\x02\u0107\u0108\x07Q\x02\x02\u0108\u0109\x07W\x02" +
|
|
211
|
-
"\x02\u0109\u010A\x07P\x02\x02\u010A\u010C\x07F\x02\x02\u010B\xF6\x03\x02" +
|
|
212
|
-
"\x02\x02\u010B\u0101\x03\x02\x02\x02\u010C\x1B\x03\x02\x02\x02\u010D\u010E" +
|
|
213
|
-
"\x07~\x02\x02\u010E\x1D\x03\x02\x02\x02\u010F\u0110\x07B\x02\x02\u0110" +
|
|
214
|
-
"\u0111\x07q\x02\x02\u0111\u0112\x07p\x02\x02\u0112\u0113\x07n\x02\x02" +
|
|
215
|
-
"\u0113\u0114\x07{\x02\x02\u0114\x1F\x03\x02\x02\x02\u0115\u0116\x07B\x02" +
|
|
216
|
-
"\x02\u0116\u0117\x07u\x02\x02\u0117\u0118\x07m\x02\x02\u0118\u0119\x07" +
|
|
217
|
-
"k\x02\x02\u0119\u011A\x07r\x02\x02\u011A!\x03\x02\x02\x02\u011B\u011C" +
|
|
218
|
-
"\x07B\x02\x02\u011C\u011D\x07v\x02\x02\u011D\u011E\x07q\x02\x02\u011E" +
|
|
219
|
-
"\u011F\x07f\x02\x02\u011F\u0120\x07q\x02\x02\u0120#\x03\x02\x02\x02\u0121" +
|
|
220
|
-
"\u0122\x07B\x02\x02\u0122\u0123\x07h\x02\x02\u0123\u0124\x07c\x02\x02" +
|
|
221
|
-
"\u0124\u0125\x07k\x02\x02\u0125\u0126\x07n\x02\x02\u0126%\x03\x02\x02" +
|
|
222
|
-
"\x02\u0127\u0129\x07B\x02\x02\u0128\u012A\t\x02\x02\x02\u0129\u0128\x03" +
|
|
223
|
-
"\x02\x02\x02\u012A\u012B\x03\x02\x02\x02\u012B\u0129\x03\x02\x02\x02\u012B" +
|
|
224
|
-
"\u012C\x03\x02\x02\x02\u012C\'\x03\x02\x02\x02\u012D\u0131\x07%\x02\x02" +
|
|
225
|
-
"\u012E\u0130\n\x03\x02\x02\u012F\u012E\x03\x02\x02\x02\u0130\u0133\x03" +
|
|
226
|
-
"\x02\x02\x02\u0131\u012F\x03\x02\x02\x02\u0131\u0132\x03\x02\x02\x02\u0132" +
|
|
227
|
-
"\u0134\x03\x02\x02\x02\u0133\u0131\x03\x02\x02\x02\u0134\u0135\b\x14\x02" +
|
|
228
|
-
"\x02\u0135)\x03\x02\x02\x02\u0136\u0137\n\x04\x02\x02\u0137\u0138\x03" +
|
|
229
|
-
"\x02\x02\x02\u0138\u0139\b\x15\x03\x02\u0139+\x03\x02\x02\x02\u013A\u013B" +
|
|
230
|
-
"\t\x03\x02\x02\u013B-\x03\x02\x02\x02\u013C\u013E\t\x05\x02\x02\u013D" +
|
|
231
|
-
"\u013C\x03\x02\x02\x02\u013E\u013F\x03\x02\x02\x02\u013F\u013D\x03\x02" +
|
|
232
|
-
"\x02\x02\u013F\u0140\x03\x02\x02\x02\u0140\u0141\x03\x02\x02\x02\u0141" +
|
|
233
|
-
"\u0142\b\x17\x02\x02\u0142/\x03\x02\x02\x02\u0143\u0144\x07$\x02\x02\u0144" +
|
|
234
|
-
"\u0145\x07$\x02\x02\u0145\u0146\x07$\x02\x02\u0146\u014A\x03\x02\x02\x02" +
|
|
235
|
-
"\u0147\u0149\v\x02\x02\x02\u0148\u0147\x03\x02\x02\x02\u0149\u014C\x03" +
|
|
236
|
-
"\x02\x02\x02\u014A\u014B\x03\x02\x02\x02\u014A\u0148\x03\x02\x02\x02\u014B" +
|
|
237
|
-
"\u014D\x03\x02\x02\x02\u014C\u014A\x03\x02\x02\x02\u014D\u014E\x07$\x02" +
|
|
238
|
-
"\x02\u014E\u014F\x07$\x02\x02\u014F\u0150\x07$\x02\x02\u01501\x03\x02" +
|
|
239
|
-
"\x02\x02\u0151\u0153\n\x04\x02\x02\u0152\u0151\x03\x02\x02\x02\u0153\u0154" +
|
|
240
|
-
"\x03\x02\x02\x02\u0154\u0152\x03\x02\x02\x02\u0154\u0155\x03\x02\x02\x02" +
|
|
241
|
-
"\u0155\u0156\x03\x02\x02\x02\u0156\u0157\b\x19\x04\x02\u0157\u0158\b\x19" +
|
|
242
|
-
"\x05\x02\u01583\x03\x02\x02\x02\x15\x02\x03CV\x8B\x97\xAB\xB5\xC7\xD1" +
|
|
243
|
-
"\xD9\xE1\xF4\u010B\u012B\u0131\u013F\u014A\u0154\x06\b\x02\x02\x07\x03" +
|
|
244
|
-
"\x02\t\x16\x02\x06\x02\x02";
|
|
245
|
-
//# sourceMappingURL=GherkinLexer.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GherkinLexer.js","sourceRoot":"","sources":["../../../src/grammar/GherkinLexer.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,330 +0,0 @@
|
|
|
1
|
-
import { ATN } from "antlr4ts/atn/ATN";
|
|
2
|
-
import { FailedPredicateException } from "antlr4ts/FailedPredicateException";
|
|
3
|
-
import { Parser } from "antlr4ts/Parser";
|
|
4
|
-
import { ParserRuleContext } from "antlr4ts/ParserRuleContext";
|
|
5
|
-
import { TerminalNode } from "antlr4ts/tree/TerminalNode";
|
|
6
|
-
import { TokenStream } from "antlr4ts/TokenStream";
|
|
7
|
-
import { Vocabulary } from "antlr4ts/Vocabulary";
|
|
8
|
-
import { GherkinParserVisitor } from "./GherkinParserVisitor";
|
|
9
|
-
export declare class GherkinParser extends Parser {
|
|
10
|
-
static readonly FEATURE = 1;
|
|
11
|
-
static readonly SCENARIO = 2;
|
|
12
|
-
static readonly SCENARIO_OUTLINE = 3;
|
|
13
|
-
static readonly GIVEN = 4;
|
|
14
|
-
static readonly AND_GIVEN = 5;
|
|
15
|
-
static readonly WHEN = 6;
|
|
16
|
-
static readonly AND_WHEN = 7;
|
|
17
|
-
static readonly THEN = 8;
|
|
18
|
-
static readonly AND = 9;
|
|
19
|
-
static readonly BUT = 10;
|
|
20
|
-
static readonly EXAMPLES = 11;
|
|
21
|
-
static readonly BACKGROUND = 12;
|
|
22
|
-
static readonly PIPE = 13;
|
|
23
|
-
static readonly ONLY_TAG = 14;
|
|
24
|
-
static readonly SKIP_TAG = 15;
|
|
25
|
-
static readonly TODO_TAG = 16;
|
|
26
|
-
static readonly FAIL_TAG = 17;
|
|
27
|
-
static readonly TAG = 18;
|
|
28
|
-
static readonly COMMENT = 19;
|
|
29
|
-
static readonly TEXT_CHARACTER = 20;
|
|
30
|
-
static readonly NEWLINE = 21;
|
|
31
|
-
static readonly WSS = 22;
|
|
32
|
-
static readonly DOC_STRING = 23;
|
|
33
|
-
static readonly RULE_featureFile = 0;
|
|
34
|
-
static readonly RULE_feature = 1;
|
|
35
|
-
static readonly RULE_background = 2;
|
|
36
|
-
static readonly RULE_scenario = 3;
|
|
37
|
-
static readonly RULE_scenarioOutline = 4;
|
|
38
|
-
static readonly RULE_examplesBlock = 5;
|
|
39
|
-
static readonly RULE_tableHeader = 6;
|
|
40
|
-
static readonly RULE_tableRow = 7;
|
|
41
|
-
static readonly RULE_cell = 8;
|
|
42
|
-
static readonly RULE_step = 9;
|
|
43
|
-
static readonly RULE_givenStep = 10;
|
|
44
|
-
static readonly RULE_andGivenStep = 11;
|
|
45
|
-
static readonly RULE_whenStep = 12;
|
|
46
|
-
static readonly RULE_andWhenStep = 13;
|
|
47
|
-
static readonly RULE_thenStep = 14;
|
|
48
|
-
static readonly RULE_andStep = 15;
|
|
49
|
-
static readonly RULE_butStep = 16;
|
|
50
|
-
static readonly RULE_docString = 17;
|
|
51
|
-
static readonly RULE_tags = 18;
|
|
52
|
-
static readonly RULE_thenTags = 19;
|
|
53
|
-
static readonly RULE_contentText = 20;
|
|
54
|
-
static readonly RULE_multilineText = 21;
|
|
55
|
-
static readonly ruleNames: string[];
|
|
56
|
-
private static readonly _LITERAL_NAMES;
|
|
57
|
-
private static readonly _SYMBOLIC_NAMES;
|
|
58
|
-
static readonly VOCABULARY: Vocabulary;
|
|
59
|
-
get vocabulary(): Vocabulary;
|
|
60
|
-
get grammarFileName(): string;
|
|
61
|
-
get ruleNames(): string[];
|
|
62
|
-
get serializedATN(): string;
|
|
63
|
-
protected createFailedPredicateException(predicate?: string, message?: string): FailedPredicateException;
|
|
64
|
-
constructor(input: TokenStream);
|
|
65
|
-
featureFile(): FeatureFileContext;
|
|
66
|
-
feature(): FeatureContext;
|
|
67
|
-
background(): BackgroundContext;
|
|
68
|
-
scenario(): ScenarioContext;
|
|
69
|
-
scenarioOutline(): ScenarioOutlineContext;
|
|
70
|
-
examplesBlock(): ExamplesBlockContext;
|
|
71
|
-
tableHeader(): TableHeaderContext;
|
|
72
|
-
tableRow(): TableRowContext;
|
|
73
|
-
cell(): CellContext;
|
|
74
|
-
step(): StepContext;
|
|
75
|
-
givenStep(): GivenStepContext;
|
|
76
|
-
andGivenStep(): AndGivenStepContext;
|
|
77
|
-
whenStep(): WhenStepContext;
|
|
78
|
-
andWhenStep(): AndWhenStepContext;
|
|
79
|
-
thenStep(): ThenStepContext;
|
|
80
|
-
andStep(): AndStepContext;
|
|
81
|
-
butStep(): ButStepContext;
|
|
82
|
-
docString(): DocStringContext;
|
|
83
|
-
tags(): TagsContext;
|
|
84
|
-
thenTags(): ThenTagsContext;
|
|
85
|
-
contentText(): ContentTextContext;
|
|
86
|
-
multilineText(): MultilineTextContext;
|
|
87
|
-
static readonly _serializedATN: string;
|
|
88
|
-
static __ATN: ATN;
|
|
89
|
-
static get _ATN(): ATN;
|
|
90
|
-
}
|
|
91
|
-
export declare class FeatureFileContext extends ParserRuleContext {
|
|
92
|
-
EOF(): TerminalNode;
|
|
93
|
-
feature(): FeatureContext[];
|
|
94
|
-
feature(i: number): FeatureContext;
|
|
95
|
-
NEWLINE(): TerminalNode[];
|
|
96
|
-
NEWLINE(i: number): TerminalNode;
|
|
97
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
98
|
-
get ruleIndex(): number;
|
|
99
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
100
|
-
}
|
|
101
|
-
export declare class FeatureContext extends ParserRuleContext {
|
|
102
|
-
FEATURE(): TerminalNode;
|
|
103
|
-
multilineText(): MultilineTextContext;
|
|
104
|
-
tags(): TagsContext | undefined;
|
|
105
|
-
NEWLINE(): TerminalNode[];
|
|
106
|
-
NEWLINE(i: number): TerminalNode;
|
|
107
|
-
background(): BackgroundContext | undefined;
|
|
108
|
-
scenario(): ScenarioContext[];
|
|
109
|
-
scenario(i: number): ScenarioContext;
|
|
110
|
-
scenarioOutline(): ScenarioOutlineContext[];
|
|
111
|
-
scenarioOutline(i: number): ScenarioOutlineContext;
|
|
112
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
113
|
-
get ruleIndex(): number;
|
|
114
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
115
|
-
}
|
|
116
|
-
export declare class BackgroundContext extends ParserRuleContext {
|
|
117
|
-
BACKGROUND(): TerminalNode;
|
|
118
|
-
multilineText(): MultilineTextContext;
|
|
119
|
-
givenStep(): GivenStepContext;
|
|
120
|
-
tags(): TagsContext | undefined;
|
|
121
|
-
NEWLINE(): TerminalNode[];
|
|
122
|
-
NEWLINE(i: number): TerminalNode;
|
|
123
|
-
andGivenStep(): AndGivenStepContext[];
|
|
124
|
-
andGivenStep(i: number): AndGivenStepContext;
|
|
125
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
126
|
-
get ruleIndex(): number;
|
|
127
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
128
|
-
}
|
|
129
|
-
export declare class ScenarioContext extends ParserRuleContext {
|
|
130
|
-
SCENARIO(): TerminalNode;
|
|
131
|
-
multilineText(): MultilineTextContext;
|
|
132
|
-
step(): StepContext;
|
|
133
|
-
tags(): TagsContext | undefined;
|
|
134
|
-
NEWLINE(): TerminalNode[];
|
|
135
|
-
NEWLINE(i: number): TerminalNode;
|
|
136
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
137
|
-
get ruleIndex(): number;
|
|
138
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
139
|
-
}
|
|
140
|
-
export declare class ScenarioOutlineContext extends ParserRuleContext {
|
|
141
|
-
SCENARIO_OUTLINE(): TerminalNode;
|
|
142
|
-
multilineText(): MultilineTextContext;
|
|
143
|
-
step(): StepContext;
|
|
144
|
-
examplesBlock(): ExamplesBlockContext;
|
|
145
|
-
tags(): TagsContext | undefined;
|
|
146
|
-
NEWLINE(): TerminalNode[];
|
|
147
|
-
NEWLINE(i: number): TerminalNode;
|
|
148
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
149
|
-
get ruleIndex(): number;
|
|
150
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
151
|
-
}
|
|
152
|
-
export declare class ExamplesBlockContext extends ParserRuleContext {
|
|
153
|
-
EXAMPLES(): TerminalNode;
|
|
154
|
-
tableHeader(): TableHeaderContext;
|
|
155
|
-
NEWLINE(): TerminalNode[];
|
|
156
|
-
NEWLINE(i: number): TerminalNode;
|
|
157
|
-
tableRow(): TableRowContext[];
|
|
158
|
-
tableRow(i: number): TableRowContext;
|
|
159
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
160
|
-
get ruleIndex(): number;
|
|
161
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
162
|
-
}
|
|
163
|
-
export declare class TableHeaderContext extends ParserRuleContext {
|
|
164
|
-
tableRow(): TableRowContext;
|
|
165
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
166
|
-
get ruleIndex(): number;
|
|
167
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
168
|
-
}
|
|
169
|
-
export declare class TableRowContext extends ParserRuleContext {
|
|
170
|
-
PIPE(): TerminalNode[];
|
|
171
|
-
PIPE(i: number): TerminalNode;
|
|
172
|
-
cell(): CellContext[];
|
|
173
|
-
cell(i: number): CellContext;
|
|
174
|
-
NEWLINE(): TerminalNode[];
|
|
175
|
-
NEWLINE(i: number): TerminalNode;
|
|
176
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
177
|
-
get ruleIndex(): number;
|
|
178
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
179
|
-
}
|
|
180
|
-
export declare class CellContext extends ParserRuleContext {
|
|
181
|
-
contentText(): ContentTextContext | undefined;
|
|
182
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
183
|
-
get ruleIndex(): number;
|
|
184
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
185
|
-
}
|
|
186
|
-
export declare class StepContext extends ParserRuleContext {
|
|
187
|
-
givenStep(): GivenStepContext;
|
|
188
|
-
whenStep(): WhenStepContext;
|
|
189
|
-
thenStep(): ThenStepContext;
|
|
190
|
-
andGivenStep(): AndGivenStepContext[];
|
|
191
|
-
andGivenStep(i: number): AndGivenStepContext;
|
|
192
|
-
andWhenStep(): AndWhenStepContext[];
|
|
193
|
-
andWhenStep(i: number): AndWhenStepContext;
|
|
194
|
-
andStep(): AndStepContext[];
|
|
195
|
-
andStep(i: number): AndStepContext;
|
|
196
|
-
butStep(): ButStepContext[];
|
|
197
|
-
butStep(i: number): ButStepContext;
|
|
198
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
199
|
-
get ruleIndex(): number;
|
|
200
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
201
|
-
}
|
|
202
|
-
export declare class GivenStepContext extends ParserRuleContext {
|
|
203
|
-
GIVEN(): TerminalNode;
|
|
204
|
-
multilineText(): MultilineTextContext;
|
|
205
|
-
tags(): TagsContext | undefined;
|
|
206
|
-
NEWLINE(): TerminalNode[];
|
|
207
|
-
NEWLINE(i: number): TerminalNode;
|
|
208
|
-
docString(): DocStringContext | undefined;
|
|
209
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
210
|
-
get ruleIndex(): number;
|
|
211
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
212
|
-
}
|
|
213
|
-
export declare class AndGivenStepContext extends ParserRuleContext {
|
|
214
|
-
AND_GIVEN(): TerminalNode;
|
|
215
|
-
multilineText(): MultilineTextContext;
|
|
216
|
-
tags(): TagsContext | undefined;
|
|
217
|
-
NEWLINE(): TerminalNode[];
|
|
218
|
-
NEWLINE(i: number): TerminalNode;
|
|
219
|
-
docString(): DocStringContext | undefined;
|
|
220
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
221
|
-
get ruleIndex(): number;
|
|
222
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
223
|
-
}
|
|
224
|
-
export declare class WhenStepContext extends ParserRuleContext {
|
|
225
|
-
WHEN(): TerminalNode;
|
|
226
|
-
multilineText(): MultilineTextContext;
|
|
227
|
-
tags(): TagsContext | undefined;
|
|
228
|
-
NEWLINE(): TerminalNode[];
|
|
229
|
-
NEWLINE(i: number): TerminalNode;
|
|
230
|
-
docString(): DocStringContext | undefined;
|
|
231
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
232
|
-
get ruleIndex(): number;
|
|
233
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
234
|
-
}
|
|
235
|
-
export declare class AndWhenStepContext extends ParserRuleContext {
|
|
236
|
-
AND_WHEN(): TerminalNode;
|
|
237
|
-
multilineText(): MultilineTextContext;
|
|
238
|
-
tags(): TagsContext | undefined;
|
|
239
|
-
NEWLINE(): TerminalNode[];
|
|
240
|
-
NEWLINE(i: number): TerminalNode;
|
|
241
|
-
docString(): DocStringContext | undefined;
|
|
242
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
243
|
-
get ruleIndex(): number;
|
|
244
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
245
|
-
}
|
|
246
|
-
export declare class ThenStepContext extends ParserRuleContext {
|
|
247
|
-
THEN(): TerminalNode;
|
|
248
|
-
multilineText(): MultilineTextContext;
|
|
249
|
-
thenTags(): ThenTagsContext | undefined;
|
|
250
|
-
NEWLINE(): TerminalNode[];
|
|
251
|
-
NEWLINE(i: number): TerminalNode;
|
|
252
|
-
docString(): DocStringContext | undefined;
|
|
253
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
254
|
-
get ruleIndex(): number;
|
|
255
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
256
|
-
}
|
|
257
|
-
export declare class AndStepContext extends ParserRuleContext {
|
|
258
|
-
AND(): TerminalNode;
|
|
259
|
-
multilineText(): MultilineTextContext;
|
|
260
|
-
thenTags(): ThenTagsContext | undefined;
|
|
261
|
-
NEWLINE(): TerminalNode[];
|
|
262
|
-
NEWLINE(i: number): TerminalNode;
|
|
263
|
-
docString(): DocStringContext | undefined;
|
|
264
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
265
|
-
get ruleIndex(): number;
|
|
266
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
267
|
-
}
|
|
268
|
-
export declare class ButStepContext extends ParserRuleContext {
|
|
269
|
-
BUT(): TerminalNode;
|
|
270
|
-
multilineText(): MultilineTextContext;
|
|
271
|
-
thenTags(): ThenTagsContext | undefined;
|
|
272
|
-
NEWLINE(): TerminalNode[];
|
|
273
|
-
NEWLINE(i: number): TerminalNode;
|
|
274
|
-
docString(): DocStringContext | undefined;
|
|
275
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
276
|
-
get ruleIndex(): number;
|
|
277
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
278
|
-
}
|
|
279
|
-
export declare class DocStringContext extends ParserRuleContext {
|
|
280
|
-
DOC_STRING(): TerminalNode;
|
|
281
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
282
|
-
get ruleIndex(): number;
|
|
283
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
284
|
-
}
|
|
285
|
-
export declare class TagsContext extends ParserRuleContext {
|
|
286
|
-
NEWLINE(): TerminalNode[];
|
|
287
|
-
NEWLINE(i: number): TerminalNode;
|
|
288
|
-
ONLY_TAG(): TerminalNode[];
|
|
289
|
-
ONLY_TAG(i: number): TerminalNode;
|
|
290
|
-
SKIP_TAG(): TerminalNode[];
|
|
291
|
-
SKIP_TAG(i: number): TerminalNode;
|
|
292
|
-
TAG(): TerminalNode[];
|
|
293
|
-
TAG(i: number): TerminalNode;
|
|
294
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
295
|
-
get ruleIndex(): number;
|
|
296
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
297
|
-
}
|
|
298
|
-
export declare class ThenTagsContext extends ParserRuleContext {
|
|
299
|
-
NEWLINE(): TerminalNode[];
|
|
300
|
-
NEWLINE(i: number): TerminalNode;
|
|
301
|
-
ONLY_TAG(): TerminalNode[];
|
|
302
|
-
ONLY_TAG(i: number): TerminalNode;
|
|
303
|
-
SKIP_TAG(): TerminalNode[];
|
|
304
|
-
SKIP_TAG(i: number): TerminalNode;
|
|
305
|
-
FAIL_TAG(): TerminalNode[];
|
|
306
|
-
FAIL_TAG(i: number): TerminalNode;
|
|
307
|
-
TODO_TAG(): TerminalNode[];
|
|
308
|
-
TODO_TAG(i: number): TerminalNode;
|
|
309
|
-
TAG(): TerminalNode[];
|
|
310
|
-
TAG(i: number): TerminalNode;
|
|
311
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
312
|
-
get ruleIndex(): number;
|
|
313
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
314
|
-
}
|
|
315
|
-
export declare class ContentTextContext extends ParserRuleContext {
|
|
316
|
-
TEXT_CHARACTER(): TerminalNode[];
|
|
317
|
-
TEXT_CHARACTER(i: number): TerminalNode;
|
|
318
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
319
|
-
get ruleIndex(): number;
|
|
320
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
321
|
-
}
|
|
322
|
-
export declare class MultilineTextContext extends ParserRuleContext {
|
|
323
|
-
TEXT_CHARACTER(): TerminalNode[];
|
|
324
|
-
TEXT_CHARACTER(i: number): TerminalNode;
|
|
325
|
-
NEWLINE(): TerminalNode[];
|
|
326
|
-
NEWLINE(i: number): TerminalNode;
|
|
327
|
-
constructor(parent: ParserRuleContext | undefined, invokingState: number);
|
|
328
|
-
get ruleIndex(): number;
|
|
329
|
-
accept<Result>(visitor: GherkinParserVisitor<Result>): Result;
|
|
330
|
-
}
|