Coverage for src/pyensae/languages/SQLiteListener.py: 0%

334 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-07-03 02:16 +0200

1# Generated from \SQLite.g4 by ANTLR 4.8 

2from antlr4 import * 

3if __name__ is not None and "." in __name__: 

4 from .SQLiteParser import SQLiteParser 

5else: 

6 from SQLiteParser import SQLiteParser 

7 

8# This class defines a complete listener for a parse tree produced by SQLiteParser. 

9 

10 

11class SQLiteListener(ParseTreeListener): 

12 

13 # Enter a parse tree produced by SQLiteParser#parse. 

14 def enterParse(self, ctx: SQLiteParser.ParseContext): 

15 pass 

16 

17 # Exit a parse tree produced by SQLiteParser#parse. 

18 def exitParse(self, ctx: SQLiteParser.ParseContext): 

19 pass 

20 

21 # Enter a parse tree produced by SQLiteParser#error. 

22 def enterError(self, ctx): 

23 pass 

24 

25 # Exit a parse tree produced by SQLiteParser#error. 

26 def exitError(self, ctx): 

27 pass 

28 

29 # Enter a parse tree produced by SQLiteParser#sql_stmt_list. 

30 def enterSql_stmt_list(self, ctx: SQLiteParser.Sql_stmt_listContext): 

31 pass 

32 

33 # Exit a parse tree produced by SQLiteParser#sql_stmt_list. 

34 def exitSql_stmt_list(self, ctx: SQLiteParser.Sql_stmt_listContext): 

35 pass 

36 

37 # Enter a parse tree produced by SQLiteParser#sql_stmt. 

38 def enterSql_stmt(self, ctx: SQLiteParser.Sql_stmtContext): 

39 pass 

40 

41 # Exit a parse tree produced by SQLiteParser#sql_stmt. 

42 def exitSql_stmt(self, ctx: SQLiteParser.Sql_stmtContext): 

43 pass 

44 

45 # Enter a parse tree produced by SQLiteParser#alter_table_stmt. 

46 def enterAlter_table_stmt(self, ctx: SQLiteParser.Alter_table_stmtContext): 

47 pass 

48 

49 # Exit a parse tree produced by SQLiteParser#alter_table_stmt. 

50 def exitAlter_table_stmt(self, ctx: SQLiteParser.Alter_table_stmtContext): 

51 pass 

52 

53 # Enter a parse tree produced by SQLiteParser#analyze_stmt. 

54 def enterAnalyze_stmt(self, ctx: SQLiteParser.Analyze_stmtContext): 

55 pass 

56 

57 # Exit a parse tree produced by SQLiteParser#analyze_stmt. 

58 def exitAnalyze_stmt(self, ctx: SQLiteParser.Analyze_stmtContext): 

59 pass 

60 

61 # Enter a parse tree produced by SQLiteParser#attach_stmt. 

62 def enterAttach_stmt(self, ctx: SQLiteParser.Attach_stmtContext): 

63 pass 

64 

65 # Exit a parse tree produced by SQLiteParser#attach_stmt. 

66 def exitAttach_stmt(self, ctx: SQLiteParser.Attach_stmtContext): 

67 pass 

68 

69 # Enter a parse tree produced by SQLiteParser#begin_stmt. 

70 def enterBegin_stmt(self, ctx: SQLiteParser.Begin_stmtContext): 

71 pass 

72 

73 # Exit a parse tree produced by SQLiteParser#begin_stmt. 

74 def exitBegin_stmt(self, ctx: SQLiteParser.Begin_stmtContext): 

75 pass 

76 

77 # Enter a parse tree produced by SQLiteParser#commit_stmt. 

78 def enterCommit_stmt(self, ctx: SQLiteParser.Commit_stmtContext): 

79 pass 

80 

81 # Exit a parse tree produced by SQLiteParser#commit_stmt. 

82 def exitCommit_stmt(self, ctx: SQLiteParser.Commit_stmtContext): 

83 pass 

84 

85 # Enter a parse tree produced by SQLiteParser#compound_select_stmt. 

86 def enterCompound_select_stmt(self, ctx: SQLiteParser.Compound_select_stmtContext): 

87 pass 

88 

89 # Exit a parse tree produced by SQLiteParser#compound_select_stmt. 

90 def exitCompound_select_stmt(self, ctx: SQLiteParser.Compound_select_stmtContext): 

91 pass 

92 

93 # Enter a parse tree produced by SQLiteParser#create_index_stmt. 

94 def enterCreate_index_stmt(self, ctx: SQLiteParser.Create_index_stmtContext): 

95 pass 

96 

97 # Exit a parse tree produced by SQLiteParser#create_index_stmt. 

98 def exitCreate_index_stmt(self, ctx: SQLiteParser.Create_index_stmtContext): 

99 pass 

100 

101 # Enter a parse tree produced by SQLiteParser#create_table_stmt. 

102 def enterCreate_table_stmt(self, ctx: SQLiteParser.Create_table_stmtContext): 

103 pass 

104 

105 # Exit a parse tree produced by SQLiteParser#create_table_stmt. 

106 def exitCreate_table_stmt(self, ctx: SQLiteParser.Create_table_stmtContext): 

107 pass 

108 

109 # Enter a parse tree produced by SQLiteParser#create_trigger_stmt. 

110 def enterCreate_trigger_stmt(self, ctx: SQLiteParser.Create_trigger_stmtContext): 

111 pass 

112 

113 # Exit a parse tree produced by SQLiteParser#create_trigger_stmt. 

114 def exitCreate_trigger_stmt(self, ctx: SQLiteParser.Create_trigger_stmtContext): 

115 pass 

116 

117 # Enter a parse tree produced by SQLiteParser#create_view_stmt. 

118 def enterCreate_view_stmt(self, ctx: SQLiteParser.Create_view_stmtContext): 

119 pass 

120 

121 # Exit a parse tree produced by SQLiteParser#create_view_stmt. 

122 def exitCreate_view_stmt(self, ctx: SQLiteParser.Create_view_stmtContext): 

123 pass 

124 

125 # Enter a parse tree produced by SQLiteParser#create_virtual_table_stmt. 

126 def enterCreate_virtual_table_stmt(self, ctx: SQLiteParser.Create_virtual_table_stmtContext): 

127 pass 

128 

129 # Exit a parse tree produced by SQLiteParser#create_virtual_table_stmt. 

130 def exitCreate_virtual_table_stmt(self, ctx: SQLiteParser.Create_virtual_table_stmtContext): 

131 pass 

132 

133 # Enter a parse tree produced by SQLiteParser#delete_stmt. 

134 def enterDelete_stmt(self, ctx: SQLiteParser.Delete_stmtContext): 

135 pass 

136 

137 # Exit a parse tree produced by SQLiteParser#delete_stmt. 

138 def exitDelete_stmt(self, ctx: SQLiteParser.Delete_stmtContext): 

139 pass 

140 

141 # Enter a parse tree produced by SQLiteParser#delete_stmt_limited. 

142 def enterDelete_stmt_limited(self, ctx: SQLiteParser.Delete_stmt_limitedContext): 

143 pass 

144 

145 # Exit a parse tree produced by SQLiteParser#delete_stmt_limited. 

146 def exitDelete_stmt_limited(self, ctx: SQLiteParser.Delete_stmt_limitedContext): 

147 pass 

148 

149 # Enter a parse tree produced by SQLiteParser#detach_stmt. 

150 def enterDetach_stmt(self, ctx: SQLiteParser.Detach_stmtContext): 

151 pass 

152 

153 # Exit a parse tree produced by SQLiteParser#detach_stmt. 

154 def exitDetach_stmt(self, ctx: SQLiteParser.Detach_stmtContext): 

155 pass 

156 

157 # Enter a parse tree produced by SQLiteParser#drop_index_stmt. 

158 def enterDrop_index_stmt(self, ctx): 

159 pass 

160 

161 # Exit a parse tree produced by SQLiteParser#drop_index_stmt. 

162 def exitDrop_index_stmt(self, ctx): 

163 pass 

164 

165 # Enter a parse tree produced by SQLiteParser#drop_table_stmt. 

166 def enterDrop_table_stmt(self, ctx): 

167 pass 

168 

169 # Exit a parse tree produced by SQLiteParser#drop_table_stmt. 

170 def exitDrop_table_stmt(self, ctx): 

171 pass 

172 

173 # Enter a parse tree produced by SQLiteParser#drop_trigger_stmt. 

174 def enterDrop_trigger_stmt(self, ctx): 

175 pass 

176 

177 # Exit a parse tree produced by SQLiteParser#drop_trigger_stmt. 

178 def exitDrop_trigger_stmt(self, ctx): 

179 pass 

180 

181 # Enter a parse tree produced by SQLiteParser#drop_view_stmt. 

182 def enterDrop_view_stmt(self, ctx): 

183 pass 

184 

185 # Exit a parse tree produced by SQLiteParser#drop_view_stmt. 

186 def exitDrop_view_stmt(self, ctx): 

187 pass 

188 

189 # Enter a parse tree produced by SQLiteParser#factored_select_stmt. 

190 def enterFactored_select_stmt(self, ctx: SQLiteParser.Factored_select_stmtContext): 

191 pass 

192 

193 # Exit a parse tree produced by SQLiteParser#factored_select_stmt. 

194 def exitFactored_select_stmt(self, ctx: SQLiteParser.Factored_select_stmtContext): 

195 pass 

196 

197 # Enter a parse tree produced by SQLiteParser#insert_stmt. 

198 def enterInsert_stmt(self, ctx: SQLiteParser.Insert_stmtContext): 

199 pass 

200 

201 # Exit a parse tree produced by SQLiteParser#insert_stmt. 

202 def exitInsert_stmt(self, ctx: SQLiteParser.Insert_stmtContext): 

203 pass 

204 

205 # Enter a parse tree produced by SQLiteParser#pragma_stmt. 

206 def enterPragma_stmt(self, ctx: SQLiteParser.Pragma_stmtContext): 

207 pass 

208 

209 # Exit a parse tree produced by SQLiteParser#pragma_stmt. 

210 def exitPragma_stmt(self, ctx: SQLiteParser.Pragma_stmtContext): 

211 pass 

212 

213 # Enter a parse tree produced by SQLiteParser#reindex_stmt. 

214 def enterReindex_stmt(self, ctx: SQLiteParser.Reindex_stmtContext): 

215 pass 

216 

217 # Exit a parse tree produced by SQLiteParser#reindex_stmt. 

218 def exitReindex_stmt(self, ctx: SQLiteParser.Reindex_stmtContext): 

219 pass 

220 

221 # Enter a parse tree produced by SQLiteParser#release_stmt. 

222 def enterRelease_stmt(self, ctx: SQLiteParser.Release_stmtContext): 

223 pass 

224 

225 # Exit a parse tree produced by SQLiteParser#release_stmt. 

226 def exitRelease_stmt(self, ctx: SQLiteParser.Release_stmtContext): 

227 pass 

228 

229 # Enter a parse tree produced by SQLiteParser#rollback_stmt. 

230 def enterRollback_stmt(self, ctx: SQLiteParser.Rollback_stmtContext): 

231 pass 

232 

233 # Exit a parse tree produced by SQLiteParser#rollback_stmt. 

234 def exitRollback_stmt(self, ctx: SQLiteParser.Rollback_stmtContext): 

235 pass 

236 

237 # Enter a parse tree produced by SQLiteParser#savepoint_stmt. 

238 def enterSavepoint_stmt(self, ctx: SQLiteParser.Savepoint_stmtContext): 

239 pass 

240 

241 # Exit a parse tree produced by SQLiteParser#savepoint_stmt. 

242 def exitSavepoint_stmt(self, ctx: SQLiteParser.Savepoint_stmtContext): 

243 pass 

244 

245 # Enter a parse tree produced by SQLiteParser#simple_select_stmt. 

246 def enterSimple_select_stmt(self, ctx: SQLiteParser.Simple_select_stmtContext): 

247 pass 

248 

249 # Exit a parse tree produced by SQLiteParser#simple_select_stmt. 

250 def exitSimple_select_stmt(self, ctx: SQLiteParser.Simple_select_stmtContext): 

251 pass 

252 

253 # Enter a parse tree produced by SQLiteParser#select_stmt. 

254 def enterSelect_stmt(self, ctx: SQLiteParser.Select_stmtContext): 

255 pass 

256 

257 # Exit a parse tree produced by SQLiteParser#select_stmt. 

258 def exitSelect_stmt(self, ctx: SQLiteParser.Select_stmtContext): 

259 pass 

260 

261 # Enter a parse tree produced by SQLiteParser#select_or_values. 

262 def enterSelect_or_values(self, ctx): 

263 pass 

264 

265 # Exit a parse tree produced by SQLiteParser#select_or_values. 

266 def exitSelect_or_values(self, ctx): 

267 pass 

268 

269 # Enter a parse tree produced by SQLiteParser#update_stmt. 

270 def enterUpdate_stmt(self, ctx: SQLiteParser.Update_stmtContext): 

271 pass 

272 

273 # Exit a parse tree produced by SQLiteParser#update_stmt. 

274 def exitUpdate_stmt(self, ctx: SQLiteParser.Update_stmtContext): 

275 pass 

276 

277 # Enter a parse tree produced by SQLiteParser#update_stmt_limited. 

278 def enterUpdate_stmt_limited(self, ctx: SQLiteParser.Update_stmt_limitedContext): 

279 pass 

280 

281 # Exit a parse tree produced by SQLiteParser#update_stmt_limited. 

282 def exitUpdate_stmt_limited(self, ctx: SQLiteParser.Update_stmt_limitedContext): 

283 pass 

284 

285 # Enter a parse tree produced by SQLiteParser#vacuum_stmt. 

286 def enterVacuum_stmt(self, ctx: SQLiteParser.Vacuum_stmtContext): 

287 pass 

288 

289 # Exit a parse tree produced by SQLiteParser#vacuum_stmt. 

290 def exitVacuum_stmt(self, ctx: SQLiteParser.Vacuum_stmtContext): 

291 pass 

292 

293 # Enter a parse tree produced by SQLiteParser#column_def. 

294 def enterColumn_def(self, ctx: SQLiteParser.Column_defContext): 

295 pass 

296 

297 # Exit a parse tree produced by SQLiteParser#column_def. 

298 def exitColumn_def(self, ctx: SQLiteParser.Column_defContext): 

299 pass 

300 

301 # Enter a parse tree produced by SQLiteParser#type_name. 

302 def enterType_name(self, ctx: SQLiteParser.Type_nameContext): 

303 pass 

304 

305 # Exit a parse tree produced by SQLiteParser#type_name. 

306 def exitType_name(self, ctx: SQLiteParser.Type_nameContext): 

307 pass 

308 

309 # Enter a parse tree produced by SQLiteParser#column_constraint. 

310 def enterColumn_constraint(self, ctx: SQLiteParser.Column_constraintContext): 

311 pass 

312 

313 # Exit a parse tree produced by SQLiteParser#column_constraint. 

314 def exitColumn_constraint(self, ctx: SQLiteParser.Column_constraintContext): 

315 pass 

316 

317 # Enter a parse tree produced by SQLiteParser#conflict_clause. 

318 def enterConflict_clause(self, ctx: SQLiteParser.Conflict_clauseContext): 

319 pass 

320 

321 # Exit a parse tree produced by SQLiteParser#conflict_clause. 

322 def exitConflict_clause(self, ctx: SQLiteParser.Conflict_clauseContext): 

323 pass 

324 

325 # Enter a parse tree produced by SQLiteParser#expr. 

326 def enterExpr(self, ctx: SQLiteParser.ExprContext): 

327 pass 

328 

329 # Exit a parse tree produced by SQLiteParser#expr. 

330 def exitExpr(self, ctx: SQLiteParser.ExprContext): 

331 pass 

332 

333 # Enter a parse tree produced by SQLiteParser#foreign_key_clause. 

334 def enterForeign_key_clause(self, ctx: SQLiteParser.Foreign_key_clauseContext): 

335 pass 

336 

337 # Exit a parse tree produced by SQLiteParser#foreign_key_clause. 

338 def exitForeign_key_clause(self, ctx: SQLiteParser.Foreign_key_clauseContext): 

339 pass 

340 

341 # Enter a parse tree produced by SQLiteParser#raise_function. 

342 def enterRaise_function(self, ctx: SQLiteParser.Raise_functionContext): 

343 pass 

344 

345 # Exit a parse tree produced by SQLiteParser#raise_function. 

346 def exitRaise_function(self, ctx: SQLiteParser.Raise_functionContext): 

347 pass 

348 

349 # Enter a parse tree produced by SQLiteParser#indexed_column. 

350 def enterIndexed_column(self, ctx: SQLiteParser.Indexed_columnContext): 

351 pass 

352 

353 # Exit a parse tree produced by SQLiteParser#indexed_column. 

354 def exitIndexed_column(self, ctx: SQLiteParser.Indexed_columnContext): 

355 pass 

356 

357 # Enter a parse tree produced by SQLiteParser#table_constraint. 

358 def enterTable_constraint(self, ctx: SQLiteParser.Table_constraintContext): 

359 pass 

360 

361 # Exit a parse tree produced by SQLiteParser#table_constraint. 

362 def exitTable_constraint(self, ctx: SQLiteParser.Table_constraintContext): 

363 pass 

364 

365 # Enter a parse tree produced by SQLiteParser#with_clause. 

366 def enterWith_clause(self, ctx: SQLiteParser.With_clauseContext): 

367 pass 

368 

369 # Exit a parse tree produced by SQLiteParser#with_clause. 

370 def exitWith_clause(self, ctx: SQLiteParser.With_clauseContext): 

371 pass 

372 

373 # Enter a parse tree produced by SQLiteParser#qualified_table_name. 

374 def enterQualified_table_name(self, ctx: SQLiteParser.Qualified_table_nameContext): 

375 pass 

376 

377 # Exit a parse tree produced by SQLiteParser#qualified_table_name. 

378 def exitQualified_table_name(self, ctx: SQLiteParser.Qualified_table_nameContext): 

379 pass 

380 

381 # Enter a parse tree produced by SQLiteParser#ordering_term. 

382 def enterOrdering_term(self, ctx: SQLiteParser.Ordering_termContext): 

383 pass 

384 

385 # Exit a parse tree produced by SQLiteParser#ordering_term. 

386 def exitOrdering_term(self, ctx: SQLiteParser.Ordering_termContext): 

387 pass 

388 

389 # Enter a parse tree produced by SQLiteParser#pragma_value. 

390 def enterPragma_value(self, ctx: SQLiteParser.Pragma_valueContext): 

391 pass 

392 

393 # Exit a parse tree produced by SQLiteParser#pragma_value. 

394 def exitPragma_value(self, ctx: SQLiteParser.Pragma_valueContext): 

395 pass 

396 

397 # Enter a parse tree produced by SQLiteParser#common_table_expression. 

398 def enterCommon_table_expression(self, ctx: SQLiteParser.Common_table_expressionContext): 

399 pass 

400 

401 # Exit a parse tree produced by SQLiteParser#common_table_expression. 

402 def exitCommon_table_expression(self, ctx: SQLiteParser.Common_table_expressionContext): 

403 pass 

404 

405 # Enter a parse tree produced by SQLiteParser#result_column. 

406 def enterResult_column(self, ctx: SQLiteParser.Result_columnContext): 

407 pass 

408 

409 # Exit a parse tree produced by SQLiteParser#result_column. 

410 def exitResult_column(self, ctx: SQLiteParser.Result_columnContext): 

411 pass 

412 

413 # Enter a parse tree produced by SQLiteParser#table_or_subquery. 

414 def enterTable_or_subquery(self, ctx: SQLiteParser.Table_or_subqueryContext): 

415 pass 

416 

417 # Exit a parse tree produced by SQLiteParser#table_or_subquery. 

418 def exitTable_or_subquery(self, ctx: SQLiteParser.Table_or_subqueryContext): 

419 pass 

420 

421 # Enter a parse tree produced by SQLiteParser#join_clause. 

422 def enterJoin_clause(self, ctx: SQLiteParser.Join_clauseContext): 

423 pass 

424 

425 # Exit a parse tree produced by SQLiteParser#join_clause. 

426 def exitJoin_clause(self, ctx: SQLiteParser.Join_clauseContext): 

427 pass 

428 

429 # Enter a parse tree produced by SQLiteParser#join_operator. 

430 def enterJoin_operator(self, ctx: SQLiteParser.Join_operatorContext): 

431 pass 

432 

433 # Exit a parse tree produced by SQLiteParser#join_operator. 

434 def exitJoin_operator(self, ctx: SQLiteParser.Join_operatorContext): 

435 pass 

436 

437 # Enter a parse tree produced by SQLiteParser#join_constraint. 

438 def enterJoin_constraint(self, ctx: SQLiteParser.Join_constraintContext): 

439 pass 

440 

441 # Exit a parse tree produced by SQLiteParser#join_constraint. 

442 def exitJoin_constraint(self, ctx: SQLiteParser.Join_constraintContext): 

443 pass 

444 

445 # Enter a parse tree produced by SQLiteParser#select_core. 

446 def enterSelect_core(self, ctx: SQLiteParser.Select_coreContext): 

447 pass 

448 

449 # Exit a parse tree produced by SQLiteParser#select_core. 

450 def exitSelect_core(self, ctx: SQLiteParser.Select_coreContext): 

451 pass 

452 

453 # Enter a parse tree produced by SQLiteParser#compound_operator. 

454 def enterCompound_operator(self, ctx: SQLiteParser.Compound_operatorContext): 

455 pass 

456 

457 # Exit a parse tree produced by SQLiteParser#compound_operator. 

458 def exitCompound_operator(self, ctx: SQLiteParser.Compound_operatorContext): 

459 pass 

460 

461 # Enter a parse tree produced by SQLiteParser#cte_table_name. 

462 def enterCte_table_name(self, ctx: SQLiteParser.Cte_table_nameContext): 

463 pass 

464 

465 # Exit a parse tree produced by SQLiteParser#cte_table_name. 

466 def exitCte_table_name(self, ctx: SQLiteParser.Cte_table_nameContext): 

467 pass 

468 

469 # Enter a parse tree produced by SQLiteParser#signed_number. 

470 def enterSigned_number(self, ctx: SQLiteParser.Signed_numberContext): 

471 pass 

472 

473 # Exit a parse tree produced by SQLiteParser#signed_number. 

474 def exitSigned_number(self, ctx: SQLiteParser.Signed_numberContext): 

475 pass 

476 

477 # Enter a parse tree produced by SQLiteParser#literal_value. 

478 def enterLiteral_value(self, ctx: SQLiteParser.Literal_valueContext): 

479 pass 

480 

481 # Exit a parse tree produced by SQLiteParser#literal_value. 

482 def exitLiteral_value(self, ctx: SQLiteParser.Literal_valueContext): 

483 pass 

484 

485 # Enter a parse tree produced by SQLiteParser#unary_operator. 

486 def enterUnary_operator(self, ctx: SQLiteParser.Unary_operatorContext): 

487 pass 

488 

489 # Exit a parse tree produced by SQLiteParser#unary_operator. 

490 def exitUnary_operator(self, ctx: SQLiteParser.Unary_operatorContext): 

491 pass 

492 

493 # Enter a parse tree produced by SQLiteParser#error_message. 

494 def enterError_message(self, ctx: SQLiteParser.Error_messageContext): 

495 pass 

496 

497 # Exit a parse tree produced by SQLiteParser#error_message. 

498 def exitError_message(self, ctx: SQLiteParser.Error_messageContext): 

499 pass 

500 

501 # Enter a parse tree produced by SQLiteParser#module_argument. 

502 def enterModule_argument(self, ctx: SQLiteParser.Module_argumentContext): 

503 pass 

504 

505 # Exit a parse tree produced by SQLiteParser#module_argument. 

506 def exitModule_argument(self, ctx: SQLiteParser.Module_argumentContext): 

507 pass 

508 

509 # Enter a parse tree produced by SQLiteParser#column_alias. 

510 def enterColumn_alias(self, ctx: SQLiteParser.Column_aliasContext): 

511 pass 

512 

513 # Exit a parse tree produced by SQLiteParser#column_alias. 

514 def exitColumn_alias(self, ctx: SQLiteParser.Column_aliasContext): 

515 pass 

516 

517 # Enter a parse tree produced by SQLiteParser#keyword. 

518 def enterKeyword(self, ctx: SQLiteParser.KeywordContext): 

519 pass 

520 

521 # Exit a parse tree produced by SQLiteParser#keyword. 

522 def exitKeyword(self, ctx: SQLiteParser.KeywordContext): 

523 pass 

524 

525 # Enter a parse tree produced by SQLiteParser#name. 

526 def enterName(self, ctx: SQLiteParser.NameContext): 

527 pass 

528 

529 # Exit a parse tree produced by SQLiteParser#name. 

530 def exitName(self, ctx: SQLiteParser.NameContext): 

531 pass 

532 

533 # Enter a parse tree produced by SQLiteParser#function_name. 

534 def enterFunction_name(self, ctx: SQLiteParser.Function_nameContext): 

535 pass 

536 

537 # Exit a parse tree produced by SQLiteParser#function_name. 

538 def exitFunction_name(self, ctx: SQLiteParser.Function_nameContext): 

539 pass 

540 

541 # Enter a parse tree produced by SQLiteParser#database_name. 

542 def enterDatabase_name(self, ctx): 

543 pass 

544 

545 # Exit a parse tree produced by SQLiteParser#database_name. 

546 def exitDatabase_name(self, ctx): 

547 pass 

548 

549 # Enter a parse tree produced by SQLiteParser#table_name. 

550 def enterTable_name(self, ctx: SQLiteParser.Table_nameContext): 

551 pass 

552 

553 # Exit a parse tree produced by SQLiteParser#table_name. 

554 def exitTable_name(self, ctx: SQLiteParser.Table_nameContext): 

555 pass 

556 

557 # Enter a parse tree produced by SQLiteParser#table_or_index_name. 

558 def enterTable_or_index_name(self, ctx: SQLiteParser.Table_or_index_nameContext): 

559 pass 

560 

561 # Exit a parse tree produced by SQLiteParser#table_or_index_name. 

562 def exitTable_or_index_name(self, ctx: SQLiteParser.Table_or_index_nameContext): 

563 pass 

564 

565 # Enter a parse tree produced by SQLiteParser#new_table_name. 

566 def enterNew_table_name(self, ctx: SQLiteParser.New_table_nameContext): 

567 pass 

568 

569 # Exit a parse tree produced by SQLiteParser#new_table_name. 

570 def exitNew_table_name(self, ctx: SQLiteParser.New_table_nameContext): 

571 pass 

572 

573 # Enter a parse tree produced by SQLiteParser#column_name. 

574 def enterColumn_name(self, ctx: SQLiteParser.Column_nameContext): 

575 pass 

576 

577 # Exit a parse tree produced by SQLiteParser#column_name. 

578 def exitColumn_name(self, ctx: SQLiteParser.Column_nameContext): 

579 pass 

580 

581 # Enter a parse tree produced by SQLiteParser#collation_name. 

582 def enterCollation_name(self, ctx: SQLiteParser.Collation_nameContext): 

583 pass 

584 

585 # Exit a parse tree produced by SQLiteParser#collation_name. 

586 def exitCollation_name(self, ctx: SQLiteParser.Collation_nameContext): 

587 pass 

588 

589 # Enter a parse tree produced by SQLiteParser#foreign_table. 

590 def enterForeign_table(self, ctx: SQLiteParser.Foreign_tableContext): 

591 pass 

592 

593 # Exit a parse tree produced by SQLiteParser#foreign_table. 

594 def exitForeign_table(self, ctx: SQLiteParser.Foreign_tableContext): 

595 pass 

596 

597 # Enter a parse tree produced by SQLiteParser#index_name. 

598 def enterIndex_name(self, ctx: SQLiteParser.Index_nameContext): 

599 pass 

600 

601 # Exit a parse tree produced by SQLiteParser#index_name. 

602 def exitIndex_name(self, ctx: SQLiteParser.Index_nameContext): 

603 pass 

604 

605 # Enter a parse tree produced by SQLiteParser#trigger_name. 

606 def enterTrigger_name(self, ctx: SQLiteParser.Trigger_nameContext): 

607 pass 

608 

609 # Exit a parse tree produced by SQLiteParser#trigger_name. 

610 def exitTrigger_name(self, ctx: SQLiteParser.Trigger_nameContext): 

611 pass 

612 

613 # Enter a parse tree produced by SQLiteParser#view_name. 

614 def enterView_name(self, ctx: SQLiteParser.View_nameContext): 

615 pass 

616 

617 # Exit a parse tree produced by SQLiteParser#view_name. 

618 def exitView_name(self, ctx: SQLiteParser.View_nameContext): 

619 pass 

620 

621 # Enter a parse tree produced by SQLiteParser#module_name. 

622 def enterModule_name(self, ctx: SQLiteParser.Module_nameContext): 

623 pass 

624 

625 # Exit a parse tree produced by SQLiteParser#module_name. 

626 def exitModule_name(self, ctx: SQLiteParser.Module_nameContext): 

627 pass 

628 

629 # Enter a parse tree produced by SQLiteParser#pragma_name. 

630 def enterPragma_name(self, ctx: SQLiteParser.Pragma_nameContext): 

631 pass 

632 

633 # Exit a parse tree produced by SQLiteParser#pragma_name. 

634 def exitPragma_name(self, ctx: SQLiteParser.Pragma_nameContext): 

635 pass 

636 

637 # Enter a parse tree produced by SQLiteParser#savepoint_name. 

638 def enterSavepoint_name(self, ctx: SQLiteParser.Savepoint_nameContext): 

639 pass 

640 

641 # Exit a parse tree produced by SQLiteParser#savepoint_name. 

642 def exitSavepoint_name(self, ctx: SQLiteParser.Savepoint_nameContext): 

643 pass 

644 

645 # Enter a parse tree produced by SQLiteParser#table_alias. 

646 def enterTable_alias(self, ctx: SQLiteParser.Table_aliasContext): 

647 pass 

648 

649 # Exit a parse tree produced by SQLiteParser#table_alias. 

650 def exitTable_alias(self, ctx: SQLiteParser.Table_aliasContext): 

651 pass 

652 

653 # Enter a parse tree produced by SQLiteParser#transaction_name. 

654 def enterTransaction_name(self, ctx: SQLiteParser.Transaction_nameContext): 

655 pass 

656 

657 # Exit a parse tree produced by SQLiteParser#transaction_name. 

658 def exitTransaction_name(self, ctx: SQLiteParser.Transaction_nameContext): 

659 pass 

660 

661 # Enter a parse tree produced by SQLiteParser#any_name. 

662 def enterAny_name(self, ctx: SQLiteParser.Any_nameContext): 

663 pass 

664 

665 # Exit a parse tree produced by SQLiteParser#any_name. 

666 def exitAny_name(self, ctx: SQLiteParser.Any_nameContext): 

667 pass 

668 

669 

670del SQLiteParser