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