@guihz/trading-vue-editor-tes 0.1.20 → 0.1.21

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.
Files changed (83) hide show
  1. package/lib/assets/{parserTccWorker-DzdECu81.js → parserTccWorker-DoVd1Ini.js} +44291 -25566
  2. package/lib/assets/{scriptsRunWorker-DO_0NAgb.js → scriptsRunWorker-NE25FJXj.js} +24876 -15587
  3. package/lib/components/editor/type/index.d.ts +2 -0
  4. package/lib/components/editor/utils/parserTccWorker.d.ts +1 -25
  5. package/lib/components/editor/utils/runTools.d.ts +4 -0
  6. package/lib/components/editor/utils/tools.d.ts +1 -4
  7. package/lib/components/editor/v3/parseScript/buildInFuncNamespace/strategy.d.ts +18 -2
  8. package/lib/components/editor/v3/parseScript/buildInVarNamespace/strategy.d.ts +8 -2
  9. package/lib/components/editor/v3/parseScript/buildInVariables.d.ts +1 -0
  10. package/lib/components/editor/v3/parseScript/constants.d.ts +3 -0
  11. package/lib/components/editor/v3/parseScript/constantsRun.d.ts +2 -0
  12. package/lib/components/editor/v4/parseScript/buildInFuncNamespace/strategy.d.ts +19 -2
  13. package/lib/components/editor/v4/parseScript/buildInVarNamespace/strategy.d.ts +8 -4
  14. package/lib/components/editor/v4/parseScript/constants.d.ts +3 -0
  15. package/lib/components/editor/v4/parseScript/constantsRun.d.ts +2 -0
  16. package/lib/components/editor/v5/parseScript/buildInConstants.d.ts +2 -0
  17. package/lib/components/editor/v5/parseScript/buildInVarNamespace/strategy.d.ts +8 -6
  18. package/lib/components/editor/v5/parseScript/constants.d.ts +2 -0
  19. package/lib/components/editor/v5/parseScript/constantsRun.d.ts +2 -0
  20. package/lib/components/editor/v5/parseScript/constants_en.d.ts +134 -0
  21. package/lib/components/editor/v5/parseScript/parseToJs.d.ts +2 -0
  22. package/lib/components/editor/v6/config/monarchTokens.d.ts +205 -0
  23. package/lib/components/editor/v6/constants/contents_zh.d.ts +6 -0
  24. package/lib/components/editor/v6/constants/index.d.ts +41 -0
  25. package/lib/components/editor/v6/parseScript/buildInConstants.d.ts +310 -0
  26. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/array.d.ts +109 -0
  27. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/box.d.ts +83 -0
  28. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/chartPoint.d.ts +26 -0
  29. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/color.d.ts +25 -0
  30. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/errorListener.d.ts +9 -0
  31. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/index.d.ts +25 -0
  32. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/input.d.ts +57 -0
  33. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/label.d.ts +66 -0
  34. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/line.d.ts +74 -0
  35. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/linefill.d.ts +36 -0
  36. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/log.d.ts +39 -0
  37. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/map.d.ts +51 -0
  38. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/math.d.ts +49 -0
  39. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/matrix.d.ts +98 -0
  40. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/polyline.d.ts +32 -0
  41. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/runtime.d.ts +10 -0
  42. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/strategy.d.ts +279 -0
  43. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/string.d.ts +55 -0
  44. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/syminfo.d.ts +9 -0
  45. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/ta.d.ts +125 -0
  46. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/table.d.ts +89 -0
  47. package/lib/components/editor/v6/parseScript/buildInFuncNamespace/timeframe.d.ts +22 -0
  48. package/lib/components/editor/v6/parseScript/buildInVarNamespace/barstate.d.ts +22 -0
  49. package/lib/components/editor/v6/parseScript/buildInVarNamespace/chart.d.ts +21 -0
  50. package/lib/components/editor/v6/parseScript/buildInVarNamespace/dividends.d.ts +8 -0
  51. package/lib/components/editor/v6/parseScript/buildInVarNamespace/earnings.d.ts +9 -0
  52. package/lib/components/editor/v6/parseScript/buildInVarNamespace/index.d.ts +9 -0
  53. package/lib/components/editor/v6/parseScript/buildInVarNamespace/session.d.ts +12 -0
  54. package/lib/components/editor/v6/parseScript/buildInVarNamespace/strategy.d.ts +146 -0
  55. package/lib/components/editor/v6/parseScript/buildInVarNamespace/syminfo.d.ts +49 -0
  56. package/lib/components/editor/v6/parseScript/buildInVarNamespace/ta.d.ts +32 -0
  57. package/lib/components/editor/v6/parseScript/buildInVarNamespace/timeframe.d.ts +16 -0
  58. package/lib/components/editor/v6/parseScript/constants.d.ts +146 -0
  59. package/lib/components/editor/v6/parseScript/constantsRun.d.ts +5 -0
  60. package/lib/components/editor/v6/parseScript/enum.d.ts +302 -0
  61. package/lib/components/editor/v6/parseScript/parseToJs.d.ts +78 -0
  62. package/lib/components/editor/v6/parseScript/parseToLibJs.d.ts +71 -0
  63. package/lib/components/editor/v6/parseScript/strategyNamespace/closedtrades.d.ts +28 -0
  64. package/lib/components/editor/v6/parseScript/strategyNamespace/index.d.ts +4 -0
  65. package/lib/components/editor/v6/parseScript/strategyNamespace/opentrades.d.ts +25 -0
  66. package/lib/components/editor/v6/parseScript/strategyNamespace/risk.d.ts +22 -0
  67. package/lib/components/editor/v6/parseScript/type.d.ts +39 -0
  68. package/lib/components/editor/v6/parseScript/userTypeClass.d.ts +12 -0
  69. package/lib/components/editor/v6/parseScript/utils.d.ts +21 -0
  70. package/lib/components/editor/v6/parseScript/visitorParser.d.ts +384 -0
  71. package/lib/components/editor/v6/parseScript/visitorUtils.d.ts +31 -0
  72. package/lib/components/editor/v6/parserTccWorker.d.ts +40 -0
  73. package/lib/components/editor/v6/scriptsRunWorker.d.ts +11 -0
  74. package/lib/components/editor/v6/tccParser/LexerBase.d.ts +19 -0
  75. package/lib/components/editor/v6/tccParser/tccScriptParserVisitor.d.ts +507 -0
  76. package/lib/index-B2LF-839.js +61958 -0
  77. package/lib/{monarchTokens-D-73EVQs.js → monarchTokens-BNkQaBBZ.js} +22 -22
  78. package/lib/monarchTokens-Dzsc5GLx.js +563 -0
  79. package/lib/packages/index.d.ts +1 -1
  80. package/lib/trading-vue-editor.es.packages.js +1520 -1495
  81. package/lib/trading-vue-editor.umd.packages.mjs +110 -45
  82. package/package.json +2 -2
  83. package/lib/{index-DLIhM_y0.js → index-Clupi1hX.js} +24 -24
@@ -0,0 +1,507 @@
1
+ /// <reference path="../../../../../src/vite-env.d.ts" />
2
+ import { ParseTreeVisitor } from 'antlr4';
3
+ import { ProgramContext } from "./tccScriptParser";
4
+ import { GlobalStmtContext } from "./tccScriptParser";
5
+ import { BlockStmtContext } from "./tccScriptParser";
6
+ import { StmtContext } from "./tccScriptParser";
7
+ import { SimpleStmtContext } from "./tccScriptParser";
8
+ import { FlowStmtContext } from "./tccScriptParser";
9
+ import { BlockContext } from "./tccScriptParser";
10
+ import { BlockLineContext } from "./tccScriptParser";
11
+ import { VariableDeclarationStmtContext } from "./tccScriptParser";
12
+ import { DeclareAssignContext } from "./tccScriptParser";
13
+ import { AgainAssignContext } from "./tccScriptParser";
14
+ import { AgainAssignNameContext } from "./tccScriptParser";
15
+ import { VarModifierContext } from "./tccScriptParser";
16
+ import { BlockSequenceContext } from "./tccScriptParser";
17
+ import { ExpressionSequenceContext } from "./tccScriptParser";
18
+ import { ExpressionBlockSequenceContext } from "./tccScriptParser";
19
+ import { VarBlockStmtContext } from "./tccScriptParser";
20
+ import { VarSingleContext } from "./tccScriptParser";
21
+ import { VarMultipleContext } from "./tccScriptParser";
22
+ import { BlockExpressionContext } from "./tccScriptParser";
23
+ import { ParenthesizedExpressionContext } from "./tccScriptParser";
24
+ import { AdditiveExpressionContext } from "./tccScriptParser";
25
+ import { RelationalExpressionContext } from "./tccScriptParser";
26
+ import { TernaryExpressionContext } from "./tccScriptParser";
27
+ import { LogicalAndExpressionContext } from "./tccScriptParser";
28
+ import { NameExpressionContext } from "./tccScriptParser";
29
+ import { LiteralExpressionContext } from "./tccScriptParser";
30
+ import { LogicalOrExpressionContext } from "./tccScriptParser";
31
+ import { UnaryExpressionContext } from "./tccScriptParser";
32
+ import { NotExpressionContext } from "./tccScriptParser";
33
+ import { MemberIndexExpressionContext } from "./tccScriptParser";
34
+ import { MethodExpressionContext } from "./tccScriptParser";
35
+ import { EqualityExpressionContext } from "./tccScriptParser";
36
+ import { MultiplicativeExpressionContext } from "./tccScriptParser";
37
+ import { BrackethesizedContext } from "./tccScriptParser";
38
+ import { ArgumentsContext } from "./tccScriptParser";
39
+ import { ArgumentContext } from "./tccScriptParser";
40
+ import { IfStatementContext } from "./tccScriptParser";
41
+ import { ForToStatementContext } from "./tccScriptParser";
42
+ import { ForInStatementContext } from "./tccScriptParser";
43
+ import { SwitchStatementContext } from "./tccScriptParser";
44
+ import { CaseClauseContext } from "./tccScriptParser";
45
+ import { DefaultCaluseContext } from "./tccScriptParser";
46
+ import { WhileStatementContext } from "./tccScriptParser";
47
+ import { ImportStmtContext } from "./tccScriptParser";
48
+ import { ImportElementContext } from "./tccScriptParser";
49
+ import { LiteralContext } from "./tccScriptParser";
50
+ import { MethodStmtContext } from "./tccScriptParser";
51
+ import { MethodElementContext } from "./tccScriptParser";
52
+ import { MethodNameContext } from "./tccScriptParser";
53
+ import { ArrowFunctionContext } from "./tccScriptParser";
54
+ import { ArrowFunctionParametersContext } from "./tccScriptParser";
55
+ import { FormalParameterListContext } from "./tccScriptParser";
56
+ import { FormalParameterArgContext } from "./tccScriptParser";
57
+ import { ArrowMethodContext } from "./tccScriptParser";
58
+ import { ArrowMethodParametersContext } from "./tccScriptParser";
59
+ import { TypeStatementContext } from "./tccScriptParser";
60
+ import { TypeElementContext } from "./tccScriptParser";
61
+ import { AssignmentOperatorContext } from "./tccScriptParser";
62
+ import { TypeMapContext } from "./tccScriptParser";
63
+ import { TypeSeriesContext } from "./tccScriptParser";
64
+ import { TypeArrayContext } from "./tccScriptParser";
65
+ import { TypeGatherContext } from "./tccScriptParser";
66
+ import { IdentifierContext } from "./tccScriptParser";
67
+ import { TypeNameContext } from "./tccScriptParser";
68
+ import { NameContext } from "./tccScriptParser";
69
+ import { EnumStatementContext } from "./tccScriptParser";
70
+ import { EnumElementContext } from "./tccScriptParser";
71
+ /**
72
+ * This interface defines a complete generic visitor for a parse tree produced
73
+ * by `tccScriptParser`.
74
+ *
75
+ * @param <Result> The return type of the visit operation. Use `void` for
76
+ * operations with no return type.
77
+ */
78
+ export default class tccScriptParserVisitor<Result> extends ParseTreeVisitor<Result> {
79
+ /**
80
+ * Visit a parse tree produced by `tccScriptParser.program`.
81
+ * @param ctx the parse tree
82
+ * @return the visitor result
83
+ */
84
+ visitProgram?: (ctx: ProgramContext) => Result;
85
+ /**
86
+ * Visit a parse tree produced by `tccScriptParser.globalStmt`.
87
+ * @param ctx the parse tree
88
+ * @return the visitor result
89
+ */
90
+ visitGlobalStmt?: (ctx: GlobalStmtContext) => Result;
91
+ /**
92
+ * Visit a parse tree produced by `tccScriptParser.blockStmt`.
93
+ * @param ctx the parse tree
94
+ * @return the visitor result
95
+ */
96
+ visitBlockStmt?: (ctx: BlockStmtContext) => Result;
97
+ /**
98
+ * Visit a parse tree produced by `tccScriptParser.stmt`.
99
+ * @param ctx the parse tree
100
+ * @return the visitor result
101
+ */
102
+ visitStmt?: (ctx: StmtContext) => Result;
103
+ /**
104
+ * Visit a parse tree produced by `tccScriptParser.simpleStmt`.
105
+ * @param ctx the parse tree
106
+ * @return the visitor result
107
+ */
108
+ visitSimpleStmt?: (ctx: SimpleStmtContext) => Result;
109
+ /**
110
+ * Visit a parse tree produced by `tccScriptParser.flowStmt`.
111
+ * @param ctx the parse tree
112
+ * @return the visitor result
113
+ */
114
+ visitFlowStmt?: (ctx: FlowStmtContext) => Result;
115
+ /**
116
+ * Visit a parse tree produced by `tccScriptParser.block`.
117
+ * @param ctx the parse tree
118
+ * @return the visitor result
119
+ */
120
+ visitBlock?: (ctx: BlockContext) => Result;
121
+ /**
122
+ * Visit a parse tree produced by `tccScriptParser.blockLine`.
123
+ * @param ctx the parse tree
124
+ * @return the visitor result
125
+ */
126
+ visitBlockLine?: (ctx: BlockLineContext) => Result;
127
+ /**
128
+ * Visit a parse tree produced by `tccScriptParser.variableDeclarationStmt`.
129
+ * @param ctx the parse tree
130
+ * @return the visitor result
131
+ */
132
+ visitVariableDeclarationStmt?: (ctx: VariableDeclarationStmtContext) => Result;
133
+ /**
134
+ * Visit a parse tree produced by the `DeclareAssign`
135
+ * labeled alternative in `tccScriptParser.variableDeclarationList`.
136
+ * @param ctx the parse tree
137
+ * @return the visitor result
138
+ */
139
+ visitDeclareAssign?: (ctx: DeclareAssignContext) => Result;
140
+ /**
141
+ * Visit a parse tree produced by the `AgainAssign`
142
+ * labeled alternative in `tccScriptParser.variableDeclarationList`.
143
+ * @param ctx the parse tree
144
+ * @return the visitor result
145
+ */
146
+ visitAgainAssign?: (ctx: AgainAssignContext) => Result;
147
+ /**
148
+ * Visit a parse tree produced by `tccScriptParser.againAssignName`.
149
+ * @param ctx the parse tree
150
+ * @return the visitor result
151
+ */
152
+ visitAgainAssignName?: (ctx: AgainAssignNameContext) => Result;
153
+ /**
154
+ * Visit a parse tree produced by `tccScriptParser.varModifier`.
155
+ * @param ctx the parse tree
156
+ * @return the visitor result
157
+ */
158
+ visitVarModifier?: (ctx: VarModifierContext) => Result;
159
+ /**
160
+ * Visit a parse tree produced by `tccScriptParser.blockSequence`.
161
+ * @param ctx the parse tree
162
+ * @return the visitor result
163
+ */
164
+ visitBlockSequence?: (ctx: BlockSequenceContext) => Result;
165
+ /**
166
+ * Visit a parse tree produced by `tccScriptParser.expressionSequence`.
167
+ * @param ctx the parse tree
168
+ * @return the visitor result
169
+ */
170
+ visitExpressionSequence?: (ctx: ExpressionSequenceContext) => Result;
171
+ /**
172
+ * Visit a parse tree produced by `tccScriptParser.expressionBlockSequence`.
173
+ * @param ctx the parse tree
174
+ * @return the visitor result
175
+ */
176
+ visitExpressionBlockSequence?: (ctx: ExpressionBlockSequenceContext) => Result;
177
+ /**
178
+ * Visit a parse tree produced by `tccScriptParser.varBlockStmt`.
179
+ * @param ctx the parse tree
180
+ * @return the visitor result
181
+ */
182
+ visitVarBlockStmt?: (ctx: VarBlockStmtContext) => Result;
183
+ /**
184
+ * Visit a parse tree produced by the `VarSingle`
185
+ * labeled alternative in `tccScriptParser.varArrayDeclaration`.
186
+ * @param ctx the parse tree
187
+ * @return the visitor result
188
+ */
189
+ visitVarSingle?: (ctx: VarSingleContext) => Result;
190
+ /**
191
+ * Visit a parse tree produced by the `VarMultiple`
192
+ * labeled alternative in `tccScriptParser.varArrayDeclaration`.
193
+ * @param ctx the parse tree
194
+ * @return the visitor result
195
+ */
196
+ visitVarMultiple?: (ctx: VarMultipleContext) => Result;
197
+ /**
198
+ * Visit a parse tree produced by `tccScriptParser.blockExpression`.
199
+ * @param ctx the parse tree
200
+ * @return the visitor result
201
+ */
202
+ visitBlockExpression?: (ctx: BlockExpressionContext) => Result;
203
+ /**
204
+ * Visit a parse tree produced by the `ParenthesizedExpression`
205
+ * labeled alternative in `tccScriptParser.singleExpression`.
206
+ * @param ctx the parse tree
207
+ * @return the visitor result
208
+ */
209
+ visitParenthesizedExpression?: (ctx: ParenthesizedExpressionContext) => Result;
210
+ /**
211
+ * Visit a parse tree produced by the `AdditiveExpression`
212
+ * labeled alternative in `tccScriptParser.singleExpression`.
213
+ * @param ctx the parse tree
214
+ * @return the visitor result
215
+ */
216
+ visitAdditiveExpression?: (ctx: AdditiveExpressionContext) => Result;
217
+ /**
218
+ * Visit a parse tree produced by the `RelationalExpression`
219
+ * labeled alternative in `tccScriptParser.singleExpression`.
220
+ * @param ctx the parse tree
221
+ * @return the visitor result
222
+ */
223
+ visitRelationalExpression?: (ctx: RelationalExpressionContext) => Result;
224
+ /**
225
+ * Visit a parse tree produced by the `TernaryExpression`
226
+ * labeled alternative in `tccScriptParser.singleExpression`.
227
+ * @param ctx the parse tree
228
+ * @return the visitor result
229
+ */
230
+ visitTernaryExpression?: (ctx: TernaryExpressionContext) => Result;
231
+ /**
232
+ * Visit a parse tree produced by the `LogicalAndExpression`
233
+ * labeled alternative in `tccScriptParser.singleExpression`.
234
+ * @param ctx the parse tree
235
+ * @return the visitor result
236
+ */
237
+ visitLogicalAndExpression?: (ctx: LogicalAndExpressionContext) => Result;
238
+ /**
239
+ * Visit a parse tree produced by the `NameExpression`
240
+ * labeled alternative in `tccScriptParser.singleExpression`.
241
+ * @param ctx the parse tree
242
+ * @return the visitor result
243
+ */
244
+ visitNameExpression?: (ctx: NameExpressionContext) => Result;
245
+ /**
246
+ * Visit a parse tree produced by the `LiteralExpression`
247
+ * labeled alternative in `tccScriptParser.singleExpression`.
248
+ * @param ctx the parse tree
249
+ * @return the visitor result
250
+ */
251
+ visitLiteralExpression?: (ctx: LiteralExpressionContext) => Result;
252
+ /**
253
+ * Visit a parse tree produced by the `LogicalOrExpression`
254
+ * labeled alternative in `tccScriptParser.singleExpression`.
255
+ * @param ctx the parse tree
256
+ * @return the visitor result
257
+ */
258
+ visitLogicalOrExpression?: (ctx: LogicalOrExpressionContext) => Result;
259
+ /**
260
+ * Visit a parse tree produced by the `UnaryExpression`
261
+ * labeled alternative in `tccScriptParser.singleExpression`.
262
+ * @param ctx the parse tree
263
+ * @return the visitor result
264
+ */
265
+ visitUnaryExpression?: (ctx: UnaryExpressionContext) => Result;
266
+ /**
267
+ * Visit a parse tree produced by the `NotExpression`
268
+ * labeled alternative in `tccScriptParser.singleExpression`.
269
+ * @param ctx the parse tree
270
+ * @return the visitor result
271
+ */
272
+ visitNotExpression?: (ctx: NotExpressionContext) => Result;
273
+ /**
274
+ * Visit a parse tree produced by the `MemberIndexExpression`
275
+ * labeled alternative in `tccScriptParser.singleExpression`.
276
+ * @param ctx the parse tree
277
+ * @return the visitor result
278
+ */
279
+ visitMemberIndexExpression?: (ctx: MemberIndexExpressionContext) => Result;
280
+ /**
281
+ * Visit a parse tree produced by the `MethodExpression`
282
+ * labeled alternative in `tccScriptParser.singleExpression`.
283
+ * @param ctx the parse tree
284
+ * @return the visitor result
285
+ */
286
+ visitMethodExpression?: (ctx: MethodExpressionContext) => Result;
287
+ /**
288
+ * Visit a parse tree produced by the `EqualityExpression`
289
+ * labeled alternative in `tccScriptParser.singleExpression`.
290
+ * @param ctx the parse tree
291
+ * @return the visitor result
292
+ */
293
+ visitEqualityExpression?: (ctx: EqualityExpressionContext) => Result;
294
+ /**
295
+ * Visit a parse tree produced by the `MultiplicativeExpression`
296
+ * labeled alternative in `tccScriptParser.singleExpression`.
297
+ * @param ctx the parse tree
298
+ * @return the visitor result
299
+ */
300
+ visitMultiplicativeExpression?: (ctx: MultiplicativeExpressionContext) => Result;
301
+ /**
302
+ * Visit a parse tree produced by `tccScriptParser.brackethesized`.
303
+ * @param ctx the parse tree
304
+ * @return the visitor result
305
+ */
306
+ visitBrackethesized?: (ctx: BrackethesizedContext) => Result;
307
+ /**
308
+ * Visit a parse tree produced by `tccScriptParser.arguments`.
309
+ * @param ctx the parse tree
310
+ * @return the visitor result
311
+ */
312
+ visitArguments?: (ctx: ArgumentsContext) => Result;
313
+ /**
314
+ * Visit a parse tree produced by `tccScriptParser.argument`.
315
+ * @param ctx the parse tree
316
+ * @return the visitor result
317
+ */
318
+ visitArgument?: (ctx: ArgumentContext) => Result;
319
+ /**
320
+ * Visit a parse tree produced by `tccScriptParser.ifStatement`.
321
+ * @param ctx the parse tree
322
+ * @return the visitor result
323
+ */
324
+ visitIfStatement?: (ctx: IfStatementContext) => Result;
325
+ /**
326
+ * Visit a parse tree produced by the `ForToStatement`
327
+ * labeled alternative in `tccScriptParser.forStatement`.
328
+ * @param ctx the parse tree
329
+ * @return the visitor result
330
+ */
331
+ visitForToStatement?: (ctx: ForToStatementContext) => Result;
332
+ /**
333
+ * Visit a parse tree produced by the `ForInStatement`
334
+ * labeled alternative in `tccScriptParser.forStatement`.
335
+ * @param ctx the parse tree
336
+ * @return the visitor result
337
+ */
338
+ visitForInStatement?: (ctx: ForInStatementContext) => Result;
339
+ /**
340
+ * Visit a parse tree produced by `tccScriptParser.switchStatement`.
341
+ * @param ctx the parse tree
342
+ * @return the visitor result
343
+ */
344
+ visitSwitchStatement?: (ctx: SwitchStatementContext) => Result;
345
+ /**
346
+ * Visit a parse tree produced by `tccScriptParser.caseClause`.
347
+ * @param ctx the parse tree
348
+ * @return the visitor result
349
+ */
350
+ visitCaseClause?: (ctx: CaseClauseContext) => Result;
351
+ /**
352
+ * Visit a parse tree produced by `tccScriptParser.defaultCaluse`.
353
+ * @param ctx the parse tree
354
+ * @return the visitor result
355
+ */
356
+ visitDefaultCaluse?: (ctx: DefaultCaluseContext) => Result;
357
+ /**
358
+ * Visit a parse tree produced by `tccScriptParser.whileStatement`.
359
+ * @param ctx the parse tree
360
+ * @return the visitor result
361
+ */
362
+ visitWhileStatement?: (ctx: WhileStatementContext) => Result;
363
+ /**
364
+ * Visit a parse tree produced by `tccScriptParser.importStmt`.
365
+ * @param ctx the parse tree
366
+ * @return the visitor result
367
+ */
368
+ visitImportStmt?: (ctx: ImportStmtContext) => Result;
369
+ /**
370
+ * Visit a parse tree produced by `tccScriptParser.importElement`.
371
+ * @param ctx the parse tree
372
+ * @return the visitor result
373
+ */
374
+ visitImportElement?: (ctx: ImportElementContext) => Result;
375
+ /**
376
+ * Visit a parse tree produced by `tccScriptParser.literal`.
377
+ * @param ctx the parse tree
378
+ * @return the visitor result
379
+ */
380
+ visitLiteral?: (ctx: LiteralContext) => Result;
381
+ /**
382
+ * Visit a parse tree produced by `tccScriptParser.methodStmt`.
383
+ * @param ctx the parse tree
384
+ * @return the visitor result
385
+ */
386
+ visitMethodStmt?: (ctx: MethodStmtContext) => Result;
387
+ /**
388
+ * Visit a parse tree produced by `tccScriptParser.methodElement`.
389
+ * @param ctx the parse tree
390
+ * @return the visitor result
391
+ */
392
+ visitMethodElement?: (ctx: MethodElementContext) => Result;
393
+ /**
394
+ * Visit a parse tree produced by `tccScriptParser.methodName`.
395
+ * @param ctx the parse tree
396
+ * @return the visitor result
397
+ */
398
+ visitMethodName?: (ctx: MethodNameContext) => Result;
399
+ /**
400
+ * Visit a parse tree produced by `tccScriptParser.arrowFunction`.
401
+ * @param ctx the parse tree
402
+ * @return the visitor result
403
+ */
404
+ visitArrowFunction?: (ctx: ArrowFunctionContext) => Result;
405
+ /**
406
+ * Visit a parse tree produced by `tccScriptParser.arrowFunctionParameters`.
407
+ * @param ctx the parse tree
408
+ * @return the visitor result
409
+ */
410
+ visitArrowFunctionParameters?: (ctx: ArrowFunctionParametersContext) => Result;
411
+ /**
412
+ * Visit a parse tree produced by `tccScriptParser.formalParameterList`.
413
+ * @param ctx the parse tree
414
+ * @return the visitor result
415
+ */
416
+ visitFormalParameterList?: (ctx: FormalParameterListContext) => Result;
417
+ /**
418
+ * Visit a parse tree produced by `tccScriptParser.formalParameterArg`.
419
+ * @param ctx the parse tree
420
+ * @return the visitor result
421
+ */
422
+ visitFormalParameterArg?: (ctx: FormalParameterArgContext) => Result;
423
+ /**
424
+ * Visit a parse tree produced by `tccScriptParser.arrowMethod`.
425
+ * @param ctx the parse tree
426
+ * @return the visitor result
427
+ */
428
+ visitArrowMethod?: (ctx: ArrowMethodContext) => Result;
429
+ /**
430
+ * Visit a parse tree produced by `tccScriptParser.arrowMethodParameters`.
431
+ * @param ctx the parse tree
432
+ * @return the visitor result
433
+ */
434
+ visitArrowMethodParameters?: (ctx: ArrowMethodParametersContext) => Result;
435
+ /**
436
+ * Visit a parse tree produced by `tccScriptParser.typeStatement`.
437
+ * @param ctx the parse tree
438
+ * @return the visitor result
439
+ */
440
+ visitTypeStatement?: (ctx: TypeStatementContext) => Result;
441
+ /**
442
+ * Visit a parse tree produced by `tccScriptParser.typeElement`.
443
+ * @param ctx the parse tree
444
+ * @return the visitor result
445
+ */
446
+ visitTypeElement?: (ctx: TypeElementContext) => Result;
447
+ /**
448
+ * Visit a parse tree produced by `tccScriptParser.assignmentOperator`.
449
+ * @param ctx the parse tree
450
+ * @return the visitor result
451
+ */
452
+ visitAssignmentOperator?: (ctx: AssignmentOperatorContext) => Result;
453
+ /**
454
+ * Visit a parse tree produced by `tccScriptParser.typeMap`.
455
+ * @param ctx the parse tree
456
+ * @return the visitor result
457
+ */
458
+ visitTypeMap?: (ctx: TypeMapContext) => Result;
459
+ /**
460
+ * Visit a parse tree produced by `tccScriptParser.typeSeries`.
461
+ * @param ctx the parse tree
462
+ * @return the visitor result
463
+ */
464
+ visitTypeSeries?: (ctx: TypeSeriesContext) => Result;
465
+ /**
466
+ * Visit a parse tree produced by `tccScriptParser.typeArray`.
467
+ * @param ctx the parse tree
468
+ * @return the visitor result
469
+ */
470
+ visitTypeArray?: (ctx: TypeArrayContext) => Result;
471
+ /**
472
+ * Visit a parse tree produced by `tccScriptParser.typeGather`.
473
+ * @param ctx the parse tree
474
+ * @return the visitor result
475
+ */
476
+ visitTypeGather?: (ctx: TypeGatherContext) => Result;
477
+ /**
478
+ * Visit a parse tree produced by `tccScriptParser.identifier`.
479
+ * @param ctx the parse tree
480
+ * @return the visitor result
481
+ */
482
+ visitIdentifier?: (ctx: IdentifierContext) => Result;
483
+ /**
484
+ * Visit a parse tree produced by `tccScriptParser.typeName`.
485
+ * @param ctx the parse tree
486
+ * @return the visitor result
487
+ */
488
+ visitTypeName?: (ctx: TypeNameContext) => Result;
489
+ /**
490
+ * Visit a parse tree produced by `tccScriptParser.name`.
491
+ * @param ctx the parse tree
492
+ * @return the visitor result
493
+ */
494
+ visitName?: (ctx: NameContext) => Result;
495
+ /**
496
+ * Visit a parse tree produced by `tccScriptParser.enumStatement`.
497
+ * @param ctx the parse tree
498
+ * @return the visitor result
499
+ */
500
+ visitEnumStatement?: (ctx: EnumStatementContext) => Result;
501
+ /**
502
+ * Visit a parse tree produced by `tccScriptParser.enumElement`.
503
+ * @param ctx the parse tree
504
+ * @return the visitor result
505
+ */
506
+ visitEnumElement?: (ctx: EnumElementContext) => Result;
507
+ }