@plurnk/plurnk-mimetypes-text-sqlite 0.3.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.
@@ -0,0 +1,695 @@
1
+ import { AbstractParseTreeVisitor } from "antlr4ng";
2
+ /**
3
+ * This interface defines a complete generic visitor for a parse tree produced
4
+ * by `SQLiteParser`.
5
+ *
6
+ * @param <Result> The return type of the visit operation. Use `void` for
7
+ * operations with no return type.
8
+ */
9
+ export class SQLiteParserVisitor extends AbstractParseTreeVisitor {
10
+ /**
11
+ * Visit a parse tree produced by `SQLiteParser.parse`.
12
+ * @param ctx the parse tree
13
+ * @return the visitor result
14
+ */
15
+ visitParse;
16
+ /**
17
+ * Visit a parse tree produced by `SQLiteParser.sql_stmt_list`.
18
+ * @param ctx the parse tree
19
+ * @return the visitor result
20
+ */
21
+ visitSql_stmt_list;
22
+ /**
23
+ * Visit a parse tree produced by `SQLiteParser.sql_stmt`.
24
+ * @param ctx the parse tree
25
+ * @return the visitor result
26
+ */
27
+ visitSql_stmt;
28
+ /**
29
+ * Visit a parse tree produced by `SQLiteParser.alter_table_stmt`.
30
+ * @param ctx the parse tree
31
+ * @return the visitor result
32
+ */
33
+ visitAlter_table_stmt;
34
+ /**
35
+ * Visit a parse tree produced by `SQLiteParser.analyze_stmt`.
36
+ * @param ctx the parse tree
37
+ * @return the visitor result
38
+ */
39
+ visitAnalyze_stmt;
40
+ /**
41
+ * Visit a parse tree produced by `SQLiteParser.attach_stmt`.
42
+ * @param ctx the parse tree
43
+ * @return the visitor result
44
+ */
45
+ visitAttach_stmt;
46
+ /**
47
+ * Visit a parse tree produced by `SQLiteParser.begin_stmt`.
48
+ * @param ctx the parse tree
49
+ * @return the visitor result
50
+ */
51
+ visitBegin_stmt;
52
+ /**
53
+ * Visit a parse tree produced by `SQLiteParser.commit_stmt`.
54
+ * @param ctx the parse tree
55
+ * @return the visitor result
56
+ */
57
+ visitCommit_stmt;
58
+ /**
59
+ * Visit a parse tree produced by `SQLiteParser.rollback_stmt`.
60
+ * @param ctx the parse tree
61
+ * @return the visitor result
62
+ */
63
+ visitRollback_stmt;
64
+ /**
65
+ * Visit a parse tree produced by `SQLiteParser.savepoint_stmt`.
66
+ * @param ctx the parse tree
67
+ * @return the visitor result
68
+ */
69
+ visitSavepoint_stmt;
70
+ /**
71
+ * Visit a parse tree produced by `SQLiteParser.release_stmt`.
72
+ * @param ctx the parse tree
73
+ * @return the visitor result
74
+ */
75
+ visitRelease_stmt;
76
+ /**
77
+ * Visit a parse tree produced by `SQLiteParser.create_index_stmt`.
78
+ * @param ctx the parse tree
79
+ * @return the visitor result
80
+ */
81
+ visitCreate_index_stmt;
82
+ /**
83
+ * Visit a parse tree produced by `SQLiteParser.indexed_column`.
84
+ * @param ctx the parse tree
85
+ * @return the visitor result
86
+ */
87
+ visitIndexed_column;
88
+ /**
89
+ * Visit a parse tree produced by `SQLiteParser.create_table_stmt`.
90
+ * @param ctx the parse tree
91
+ * @return the visitor result
92
+ */
93
+ visitCreate_table_stmt;
94
+ /**
95
+ * Visit a parse tree produced by `SQLiteParser.table_options`.
96
+ * @param ctx the parse tree
97
+ * @return the visitor result
98
+ */
99
+ visitTable_options;
100
+ /**
101
+ * Visit a parse tree produced by `SQLiteParser.column_def`.
102
+ * @param ctx the parse tree
103
+ * @return the visitor result
104
+ */
105
+ visitColumn_def;
106
+ /**
107
+ * Visit a parse tree produced by `SQLiteParser.type_name`.
108
+ * @param ctx the parse tree
109
+ * @return the visitor result
110
+ */
111
+ visitType_name;
112
+ /**
113
+ * Visit a parse tree produced by `SQLiteParser.column_constraint`.
114
+ * @param ctx the parse tree
115
+ * @return the visitor result
116
+ */
117
+ visitColumn_constraint;
118
+ /**
119
+ * Visit a parse tree produced by `SQLiteParser.signed_number`.
120
+ * @param ctx the parse tree
121
+ * @return the visitor result
122
+ */
123
+ visitSigned_number;
124
+ /**
125
+ * Visit a parse tree produced by `SQLiteParser.table_constraint`.
126
+ * @param ctx the parse tree
127
+ * @return the visitor result
128
+ */
129
+ visitTable_constraint;
130
+ /**
131
+ * Visit a parse tree produced by `SQLiteParser.foreign_key_clause`.
132
+ * @param ctx the parse tree
133
+ * @return the visitor result
134
+ */
135
+ visitForeign_key_clause;
136
+ /**
137
+ * Visit a parse tree produced by `SQLiteParser.conflict_clause`.
138
+ * @param ctx the parse tree
139
+ * @return the visitor result
140
+ */
141
+ visitConflict_clause;
142
+ /**
143
+ * Visit a parse tree produced by `SQLiteParser.create_trigger_stmt`.
144
+ * @param ctx the parse tree
145
+ * @return the visitor result
146
+ */
147
+ visitCreate_trigger_stmt;
148
+ /**
149
+ * Visit a parse tree produced by `SQLiteParser.create_view_stmt`.
150
+ * @param ctx the parse tree
151
+ * @return the visitor result
152
+ */
153
+ visitCreate_view_stmt;
154
+ /**
155
+ * Visit a parse tree produced by `SQLiteParser.create_virtual_table_stmt`.
156
+ * @param ctx the parse tree
157
+ * @return the visitor result
158
+ */
159
+ visitCreate_virtual_table_stmt;
160
+ /**
161
+ * Visit a parse tree produced by `SQLiteParser.with_clause`.
162
+ * @param ctx the parse tree
163
+ * @return the visitor result
164
+ */
165
+ visitWith_clause;
166
+ /**
167
+ * Visit a parse tree produced by `SQLiteParser.common_table_expression`.
168
+ * @param ctx the parse tree
169
+ * @return the visitor result
170
+ */
171
+ visitCommon_table_expression;
172
+ /**
173
+ * Visit a parse tree produced by `SQLiteParser.cte_table_name`.
174
+ * @param ctx the parse tree
175
+ * @return the visitor result
176
+ */
177
+ visitCte_table_name;
178
+ /**
179
+ * Visit a parse tree produced by `SQLiteParser.delete_stmt`.
180
+ * @param ctx the parse tree
181
+ * @return the visitor result
182
+ */
183
+ visitDelete_stmt;
184
+ /**
185
+ * Visit a parse tree produced by `SQLiteParser.detach_stmt`.
186
+ * @param ctx the parse tree
187
+ * @return the visitor result
188
+ */
189
+ visitDetach_stmt;
190
+ /**
191
+ * Visit a parse tree produced by `SQLiteParser.drop_stmt`.
192
+ * @param ctx the parse tree
193
+ * @return the visitor result
194
+ */
195
+ visitDrop_stmt;
196
+ /**
197
+ * Visit a parse tree produced by `SQLiteParser.expr`.
198
+ * @param ctx the parse tree
199
+ * @return the visitor result
200
+ */
201
+ visitExpr;
202
+ /**
203
+ * Visit a parse tree produced by `SQLiteParser.expr_or`.
204
+ * @param ctx the parse tree
205
+ * @return the visitor result
206
+ */
207
+ visitExpr_or;
208
+ /**
209
+ * Visit a parse tree produced by `SQLiteParser.expr_and`.
210
+ * @param ctx the parse tree
211
+ * @return the visitor result
212
+ */
213
+ visitExpr_and;
214
+ /**
215
+ * Visit a parse tree produced by `SQLiteParser.expr_not`.
216
+ * @param ctx the parse tree
217
+ * @return the visitor result
218
+ */
219
+ visitExpr_not;
220
+ /**
221
+ * Visit a parse tree produced by `SQLiteParser.expr_binary`.
222
+ * @param ctx the parse tree
223
+ * @return the visitor result
224
+ */
225
+ visitExpr_binary;
226
+ /**
227
+ * Visit a parse tree produced by `SQLiteParser.expr_comparison`.
228
+ * @param ctx the parse tree
229
+ * @return the visitor result
230
+ */
231
+ visitExpr_comparison;
232
+ /**
233
+ * Visit a parse tree produced by `SQLiteParser.expr_bitwise`.
234
+ * @param ctx the parse tree
235
+ * @return the visitor result
236
+ */
237
+ visitExpr_bitwise;
238
+ /**
239
+ * Visit a parse tree produced by `SQLiteParser.expr_addition`.
240
+ * @param ctx the parse tree
241
+ * @return the visitor result
242
+ */
243
+ visitExpr_addition;
244
+ /**
245
+ * Visit a parse tree produced by `SQLiteParser.expr_multiplication`.
246
+ * @param ctx the parse tree
247
+ * @return the visitor result
248
+ */
249
+ visitExpr_multiplication;
250
+ /**
251
+ * Visit a parse tree produced by `SQLiteParser.expr_string`.
252
+ * @param ctx the parse tree
253
+ * @return the visitor result
254
+ */
255
+ visitExpr_string;
256
+ /**
257
+ * Visit a parse tree produced by `SQLiteParser.expr_collate`.
258
+ * @param ctx the parse tree
259
+ * @return the visitor result
260
+ */
261
+ visitExpr_collate;
262
+ /**
263
+ * Visit a parse tree produced by `SQLiteParser.expr_unary`.
264
+ * @param ctx the parse tree
265
+ * @return the visitor result
266
+ */
267
+ visitExpr_unary;
268
+ /**
269
+ * Visit a parse tree produced by `SQLiteParser.expr_base`.
270
+ * @param ctx the parse tree
271
+ * @return the visitor result
272
+ */
273
+ visitExpr_base;
274
+ /**
275
+ * Visit a parse tree produced by `SQLiteParser.expr_recursive`.
276
+ * @param ctx the parse tree
277
+ * @return the visitor result
278
+ */
279
+ visitExpr_recursive;
280
+ /**
281
+ * Visit a parse tree produced by `SQLiteParser.raise_function`.
282
+ * @param ctx the parse tree
283
+ * @return the visitor result
284
+ */
285
+ visitRaise_function;
286
+ /**
287
+ * Visit a parse tree produced by `SQLiteParser.literal_value`.
288
+ * @param ctx the parse tree
289
+ * @return the visitor result
290
+ */
291
+ visitLiteral_value;
292
+ /**
293
+ * Visit a parse tree produced by `SQLiteParser.percentile_clause`.
294
+ * @param ctx the parse tree
295
+ * @return the visitor result
296
+ */
297
+ visitPercentile_clause;
298
+ /**
299
+ * Visit a parse tree produced by `SQLiteParser.value_row`.
300
+ * @param ctx the parse tree
301
+ * @return the visitor result
302
+ */
303
+ visitValue_row;
304
+ /**
305
+ * Visit a parse tree produced by `SQLiteParser.values_clause`.
306
+ * @param ctx the parse tree
307
+ * @return the visitor result
308
+ */
309
+ visitValues_clause;
310
+ /**
311
+ * Visit a parse tree produced by `SQLiteParser.insert_stmt`.
312
+ * @param ctx the parse tree
313
+ * @return the visitor result
314
+ */
315
+ visitInsert_stmt;
316
+ /**
317
+ * Visit a parse tree produced by `SQLiteParser.returning_clause`.
318
+ * @param ctx the parse tree
319
+ * @return the visitor result
320
+ */
321
+ visitReturning_clause;
322
+ /**
323
+ * Visit a parse tree produced by `SQLiteParser.upsert_clause`.
324
+ * @param ctx the parse tree
325
+ * @return the visitor result
326
+ */
327
+ visitUpsert_clause;
328
+ /**
329
+ * Visit a parse tree produced by `SQLiteParser.pragma_stmt`.
330
+ * @param ctx the parse tree
331
+ * @return the visitor result
332
+ */
333
+ visitPragma_stmt;
334
+ /**
335
+ * Visit a parse tree produced by `SQLiteParser.pragma_value`.
336
+ * @param ctx the parse tree
337
+ * @return the visitor result
338
+ */
339
+ visitPragma_value;
340
+ /**
341
+ * Visit a parse tree produced by `SQLiteParser.reindex_stmt`.
342
+ * @param ctx the parse tree
343
+ * @return the visitor result
344
+ */
345
+ visitReindex_stmt;
346
+ /**
347
+ * Visit a parse tree produced by `SQLiteParser.select_stmt`.
348
+ * @param ctx the parse tree
349
+ * @return the visitor result
350
+ */
351
+ visitSelect_stmt;
352
+ /**
353
+ * Visit a parse tree produced by `SQLiteParser.join_clause`.
354
+ * @param ctx the parse tree
355
+ * @return the visitor result
356
+ */
357
+ visitJoin_clause;
358
+ /**
359
+ * Visit a parse tree produced by `SQLiteParser.select_core`.
360
+ * @param ctx the parse tree
361
+ * @return the visitor result
362
+ */
363
+ visitSelect_core;
364
+ /**
365
+ * Visit a parse tree produced by `SQLiteParser.table_or_subquery`.
366
+ * @param ctx the parse tree
367
+ * @return the visitor result
368
+ */
369
+ visitTable_or_subquery;
370
+ /**
371
+ * Visit a parse tree produced by `SQLiteParser.result_column`.
372
+ * @param ctx the parse tree
373
+ * @return the visitor result
374
+ */
375
+ visitResult_column;
376
+ /**
377
+ * Visit a parse tree produced by `SQLiteParser.join_operator`.
378
+ * @param ctx the parse tree
379
+ * @return the visitor result
380
+ */
381
+ visitJoin_operator;
382
+ /**
383
+ * Visit a parse tree produced by `SQLiteParser.join_constraint`.
384
+ * @param ctx the parse tree
385
+ * @return the visitor result
386
+ */
387
+ visitJoin_constraint;
388
+ /**
389
+ * Visit a parse tree produced by `SQLiteParser.compound_operator`.
390
+ * @param ctx the parse tree
391
+ * @return the visitor result
392
+ */
393
+ visitCompound_operator;
394
+ /**
395
+ * Visit a parse tree produced by `SQLiteParser.update_stmt`.
396
+ * @param ctx the parse tree
397
+ * @return the visitor result
398
+ */
399
+ visitUpdate_stmt;
400
+ /**
401
+ * Visit a parse tree produced by `SQLiteParser.column_name_list`.
402
+ * @param ctx the parse tree
403
+ * @return the visitor result
404
+ */
405
+ visitColumn_name_list;
406
+ /**
407
+ * Visit a parse tree produced by `SQLiteParser.qualified_table_name`.
408
+ * @param ctx the parse tree
409
+ * @return the visitor result
410
+ */
411
+ visitQualified_table_name;
412
+ /**
413
+ * Visit a parse tree produced by `SQLiteParser.vacuum_stmt`.
414
+ * @param ctx the parse tree
415
+ * @return the visitor result
416
+ */
417
+ visitVacuum_stmt;
418
+ /**
419
+ * Visit a parse tree produced by `SQLiteParser.filter_clause`.
420
+ * @param ctx the parse tree
421
+ * @return the visitor result
422
+ */
423
+ visitFilter_clause;
424
+ /**
425
+ * Visit a parse tree produced by `SQLiteParser.window_defn`.
426
+ * @param ctx the parse tree
427
+ * @return the visitor result
428
+ */
429
+ visitWindow_defn;
430
+ /**
431
+ * Visit a parse tree produced by `SQLiteParser.over_clause`.
432
+ * @param ctx the parse tree
433
+ * @return the visitor result
434
+ */
435
+ visitOver_clause;
436
+ /**
437
+ * Visit a parse tree produced by `SQLiteParser.frame_spec`.
438
+ * @param ctx the parse tree
439
+ * @return the visitor result
440
+ */
441
+ visitFrame_spec;
442
+ /**
443
+ * Visit a parse tree produced by `SQLiteParser.frame_clause`.
444
+ * @param ctx the parse tree
445
+ * @return the visitor result
446
+ */
447
+ visitFrame_clause;
448
+ /**
449
+ * Visit a parse tree produced by `SQLiteParser.order_clause`.
450
+ * @param ctx the parse tree
451
+ * @return the visitor result
452
+ */
453
+ visitOrder_clause;
454
+ /**
455
+ * Visit a parse tree produced by `SQLiteParser.limit_clause`.
456
+ * @param ctx the parse tree
457
+ * @return the visitor result
458
+ */
459
+ visitLimit_clause;
460
+ /**
461
+ * Visit a parse tree produced by `SQLiteParser.ordering_term`.
462
+ * @param ctx the parse tree
463
+ * @return the visitor result
464
+ */
465
+ visitOrdering_term;
466
+ /**
467
+ * Visit a parse tree produced by `SQLiteParser.asc_desc`.
468
+ * @param ctx the parse tree
469
+ * @return the visitor result
470
+ */
471
+ visitAsc_desc;
472
+ /**
473
+ * Visit a parse tree produced by `SQLiteParser.frame_left`.
474
+ * @param ctx the parse tree
475
+ * @return the visitor result
476
+ */
477
+ visitFrame_left;
478
+ /**
479
+ * Visit a parse tree produced by `SQLiteParser.frame_right`.
480
+ * @param ctx the parse tree
481
+ * @return the visitor result
482
+ */
483
+ visitFrame_right;
484
+ /**
485
+ * Visit a parse tree produced by `SQLiteParser.frame_single`.
486
+ * @param ctx the parse tree
487
+ * @return the visitor result
488
+ */
489
+ visitFrame_single;
490
+ /**
491
+ * Visit a parse tree produced by `SQLiteParser.error_message`.
492
+ * @param ctx the parse tree
493
+ * @return the visitor result
494
+ */
495
+ visitError_message;
496
+ /**
497
+ * Visit a parse tree produced by `SQLiteParser.filename`.
498
+ * @param ctx the parse tree
499
+ * @return the visitor result
500
+ */
501
+ visitFilename;
502
+ /**
503
+ * Visit a parse tree produced by `SQLiteParser.module_argument`.
504
+ * @param ctx the parse tree
505
+ * @return the visitor result
506
+ */
507
+ visitModule_argument;
508
+ /**
509
+ * Visit a parse tree produced by `SQLiteParser.module_argument_outer`.
510
+ * @param ctx the parse tree
511
+ * @return the visitor result
512
+ */
513
+ visitModule_argument_outer;
514
+ /**
515
+ * Visit a parse tree produced by `SQLiteParser.module_argument_inner`.
516
+ * @param ctx the parse tree
517
+ * @return the visitor result
518
+ */
519
+ visitModule_argument_inner;
520
+ /**
521
+ * Visit a parse tree produced by `SQLiteParser.fallback_excluding_conflicts`.
522
+ * @param ctx the parse tree
523
+ * @return the visitor result
524
+ */
525
+ visitFallback_excluding_conflicts;
526
+ /**
527
+ * Visit a parse tree produced by `SQLiteParser.join_keyword`.
528
+ * @param ctx the parse tree
529
+ * @return the visitor result
530
+ */
531
+ visitJoin_keyword;
532
+ /**
533
+ * Visit a parse tree produced by `SQLiteParser.fallback`.
534
+ * @param ctx the parse tree
535
+ * @return the visitor result
536
+ */
537
+ visitFallback;
538
+ /**
539
+ * Visit a parse tree produced by `SQLiteParser.name`.
540
+ * @param ctx the parse tree
541
+ * @return the visitor result
542
+ */
543
+ visitName;
544
+ /**
545
+ * Visit a parse tree produced by `SQLiteParser.function_name`.
546
+ * @param ctx the parse tree
547
+ * @return the visitor result
548
+ */
549
+ visitFunction_name;
550
+ /**
551
+ * Visit a parse tree produced by `SQLiteParser.schema_name`.
552
+ * @param ctx the parse tree
553
+ * @return the visitor result
554
+ */
555
+ visitSchema_name;
556
+ /**
557
+ * Visit a parse tree produced by `SQLiteParser.table_name`.
558
+ * @param ctx the parse tree
559
+ * @return the visitor result
560
+ */
561
+ visitTable_name;
562
+ /**
563
+ * Visit a parse tree produced by `SQLiteParser.table_or_index_name`.
564
+ * @param ctx the parse tree
565
+ * @return the visitor result
566
+ */
567
+ visitTable_or_index_name;
568
+ /**
569
+ * Visit a parse tree produced by `SQLiteParser.column_name`.
570
+ * @param ctx the parse tree
571
+ * @return the visitor result
572
+ */
573
+ visitColumn_name;
574
+ /**
575
+ * Visit a parse tree produced by `SQLiteParser.column_name_excluding_string`.
576
+ * @param ctx the parse tree
577
+ * @return the visitor result
578
+ */
579
+ visitColumn_name_excluding_string;
580
+ /**
581
+ * Visit a parse tree produced by `SQLiteParser.column_alias`.
582
+ * @param ctx the parse tree
583
+ * @return the visitor result
584
+ */
585
+ visitColumn_alias;
586
+ /**
587
+ * Visit a parse tree produced by `SQLiteParser.collation_name`.
588
+ * @param ctx the parse tree
589
+ * @return the visitor result
590
+ */
591
+ visitCollation_name;
592
+ /**
593
+ * Visit a parse tree produced by `SQLiteParser.foreign_table`.
594
+ * @param ctx the parse tree
595
+ * @return the visitor result
596
+ */
597
+ visitForeign_table;
598
+ /**
599
+ * Visit a parse tree produced by `SQLiteParser.index_name`.
600
+ * @param ctx the parse tree
601
+ * @return the visitor result
602
+ */
603
+ visitIndex_name;
604
+ /**
605
+ * Visit a parse tree produced by `SQLiteParser.trigger_name`.
606
+ * @param ctx the parse tree
607
+ * @return the visitor result
608
+ */
609
+ visitTrigger_name;
610
+ /**
611
+ * Visit a parse tree produced by `SQLiteParser.view_name`.
612
+ * @param ctx the parse tree
613
+ * @return the visitor result
614
+ */
615
+ visitView_name;
616
+ /**
617
+ * Visit a parse tree produced by `SQLiteParser.module_name`.
618
+ * @param ctx the parse tree
619
+ * @return the visitor result
620
+ */
621
+ visitModule_name;
622
+ /**
623
+ * Visit a parse tree produced by `SQLiteParser.pragma_name`.
624
+ * @param ctx the parse tree
625
+ * @return the visitor result
626
+ */
627
+ visitPragma_name;
628
+ /**
629
+ * Visit a parse tree produced by `SQLiteParser.savepoint_name`.
630
+ * @param ctx the parse tree
631
+ * @return the visitor result
632
+ */
633
+ visitSavepoint_name;
634
+ /**
635
+ * Visit a parse tree produced by `SQLiteParser.table_alias`.
636
+ * @param ctx the parse tree
637
+ * @return the visitor result
638
+ */
639
+ visitTable_alias;
640
+ /**
641
+ * Visit a parse tree produced by `SQLiteParser.table_alias_excluding_joins`.
642
+ * @param ctx the parse tree
643
+ * @return the visitor result
644
+ */
645
+ visitTable_alias_excluding_joins;
646
+ /**
647
+ * Visit a parse tree produced by `SQLiteParser.window_name`.
648
+ * @param ctx the parse tree
649
+ * @return the visitor result
650
+ */
651
+ visitWindow_name;
652
+ /**
653
+ * Visit a parse tree produced by `SQLiteParser.alias`.
654
+ * @param ctx the parse tree
655
+ * @return the visitor result
656
+ */
657
+ visitAlias;
658
+ /**
659
+ * Visit a parse tree produced by `SQLiteParser.base_window_name`.
660
+ * @param ctx the parse tree
661
+ * @return the visitor result
662
+ */
663
+ visitBase_window_name;
664
+ /**
665
+ * Visit a parse tree produced by `SQLiteParser.table_function_name`.
666
+ * @param ctx the parse tree
667
+ * @return the visitor result
668
+ */
669
+ visitTable_function_name;
670
+ /**
671
+ * Visit a parse tree produced by `SQLiteParser.any_name_excluding_raise`.
672
+ * @param ctx the parse tree
673
+ * @return the visitor result
674
+ */
675
+ visitAny_name_excluding_raise;
676
+ /**
677
+ * Visit a parse tree produced by `SQLiteParser.any_name_excluding_joins`.
678
+ * @param ctx the parse tree
679
+ * @return the visitor result
680
+ */
681
+ visitAny_name_excluding_joins;
682
+ /**
683
+ * Visit a parse tree produced by `SQLiteParser.any_name_excluding_string`.
684
+ * @param ctx the parse tree
685
+ * @return the visitor result
686
+ */
687
+ visitAny_name_excluding_string;
688
+ /**
689
+ * Visit a parse tree produced by `SQLiteParser.any_name`.
690
+ * @param ctx the parse tree
691
+ * @return the visitor result
692
+ */
693
+ visitAny_name;
694
+ }
695
+ //# sourceMappingURL=SQLiteParserVisitor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SQLiteParserVisitor.js","sourceRoot":"","sources":["../../src/generated/SQLiteParserVisitor.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ export { default as TextSqlite } from "./TextSqlite.ts";
2
+ export { default } from "./TextSqlite.ts";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export { default as TextSqlite } from "./TextSqlite.js";
2
+ export { default } from "./TextSqlite.js";
3
+ //# sourceMappingURL=index.js.map