IvannosysGrammarBaseVisitor.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626
  1. // Generated from C:\Users\EUGENIO CARVALHO\Desktop\projects\Ivannosys\src\grammar\IvannosysGrammar.g4 by ANTLR 4.2.2
  2. package grammar;
  3. import java.util.HashMap;
  4. import java.util.Stack;
  5. import org.antlr.v4.runtime.misc.NotNull;
  6. import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
  7. /**
  8. * This class provides an empty implementation of {@link IvannosysGrammarVisitor},
  9. * which can be extended to create a visitor which only needs to handle a subset
  10. * of the available methods.
  11. *
  12. * @param <T> The return type of the visit operation. Use {@link Void} for
  13. * operations with no return type.
  14. */
  15. public class IvannosysGrammarBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements IvannosysGrammarVisitor<T> {
  16. /**
  17. * {@inheritDoc}
  18. *
  19. * <p>The default implementation returns the result of calling
  20. * {@link #visitChildren} on {@code ctx}.</p>
  21. */
  22. @Override public T visitExpression(@NotNull IvannosysGrammarParser.ExpressionContext ctx) { return visitChildren(ctx); }
  23. /**
  24. * {@inheritDoc}
  25. *
  26. * <p>The default implementation returns the result of calling
  27. * {@link #visitChildren} on {@code ctx}.</p>
  28. */
  29. @Override public T visitExpression_list(@NotNull IvannosysGrammarParser.Expression_listContext ctx) { return visitChildren(ctx); }
  30. /**
  31. * {@inheritDoc}
  32. *
  33. * <p>The default implementation returns the result of calling
  34. * {@link #visitChildren} on {@code ctx}.</p>
  35. */
  36. @Override public T visitFunc_literal(@NotNull IvannosysGrammarParser.Func_literalContext ctx) { return visitChildren(ctx); }
  37. /**
  38. * {@inheritDoc}
  39. *
  40. * <p>The default implementation returns the result of calling
  41. * {@link #visitChildren} on {@code ctx}.</p>
  42. */
  43. @Override public T visitFunc_spec(@NotNull IvannosysGrammarParser.Func_specContext ctx) { return visitChildren(ctx); }
  44. /**
  45. * {@inheritDoc}
  46. *
  47. * <p>The default implementation returns the result of calling
  48. * {@link #visitChildren} on {@code ctx}.</p>
  49. */
  50. @Override public T visitDef_block(@NotNull IvannosysGrammarParser.Def_blockContext ctx) { return visitChildren(ctx); }
  51. /**
  52. * {@inheritDoc}
  53. *
  54. * <p>The default implementation returns the result of calling
  55. * {@link #visitChildren} on {@code ctx}.</p>
  56. */
  57. @Override public T visitArrayType(@NotNull IvannosysGrammarParser.ArrayTypeContext ctx) { return visitChildren(ctx); }
  58. /**
  59. * {@inheritDoc}
  60. *
  61. * <p>The default implementation returns the result of calling
  62. * {@link #visitChildren} on {@code ctx}.</p>
  63. */
  64. @Override public T visitDef_switch(@NotNull IvannosysGrammarParser.Def_switchContext ctx) { return visitChildren(ctx); }
  65. /**
  66. * {@inheritDoc}
  67. *
  68. * <p>The default implementation returns the result of calling
  69. * {@link #visitChildren} on {@code ctx}.</p>
  70. */
  71. @Override public T visitTest(@NotNull IvannosysGrammarParser.TestContext ctx) { return visitChildren(ctx); }
  72. /**
  73. * {@inheritDoc}
  74. *
  75. * <p>The default implementation returns the result of calling
  76. * {@link #visitChildren} on {@code ctx}.</p>
  77. */
  78. @Override public T visitAssign_modify(@NotNull IvannosysGrammarParser.Assign_modifyContext ctx) { return visitChildren(ctx); }
  79. /**
  80. * {@inheritDoc}
  81. *
  82. * <p>The default implementation returns the result of calling
  83. * {@link #visitChildren} on {@code ctx}.</p>
  84. */
  85. @Override public T visitExpression_list_typed(@NotNull IvannosysGrammarParser.Expression_list_typedContext ctx) { return visitChildren(ctx); }
  86. /**
  87. * {@inheritDoc}
  88. *
  89. * <p>The default implementation returns the result of calling
  90. * {@link #visitChildren} on {@code ctx}.</p>
  91. */
  92. @Override public T visitDec_var_part(@NotNull IvannosysGrammarParser.Dec_var_partContext ctx) { return visitChildren(ctx); }
  93. /**
  94. * {@inheritDoc}
  95. *
  96. * <p>The default implementation returns the result of calling
  97. * {@link #visitChildren} on {@code ctx}.</p>
  98. */
  99. @Override public T visitType(@NotNull IvannosysGrammarParser.TypeContext ctx) { return visitChildren(ctx); }
  100. /**
  101. * {@inheritDoc}
  102. *
  103. * <p>The default implementation returns the result of calling
  104. * {@link #visitChildren} on {@code ctx}.</p>
  105. */
  106. @Override public T visitCatch_exception(@NotNull IvannosysGrammarParser.Catch_exceptionContext ctx) { return visitChildren(ctx); }
  107. /**
  108. * {@inheritDoc}
  109. *
  110. * <p>The default implementation returns the result of calling
  111. * {@link #visitChildren} on {@code ctx}.</p>
  112. */
  113. @Override public T visitDec_const_part(@NotNull IvannosysGrammarParser.Dec_const_partContext ctx) { return visitChildren(ctx); }
  114. /**
  115. * {@inheritDoc}
  116. *
  117. * <p>The default implementation returns the result of calling
  118. * {@link #visitChildren} on {@code ctx}.</p>
  119. */
  120. @Override public T visitUnary_expr(@NotNull IvannosysGrammarParser.Unary_exprContext ctx) { return visitChildren(ctx); }
  121. /**
  122. * {@inheritDoc}
  123. *
  124. * <p>The default implementation returns the result of calling
  125. * {@link #visitChildren} on {@code ctx}.</p>
  126. */
  127. @Override public T visitDef_for(@NotNull IvannosysGrammarParser.Def_forContext ctx) { return visitChildren(ctx); }
  128. /**
  129. * {@inheritDoc}
  130. *
  131. * <p>The default implementation returns the result of calling
  132. * {@link #visitChildren} on {@code ctx}.</p>
  133. */
  134. @Override public T visitFallthroughStmt(@NotNull IvannosysGrammarParser.FallthroughStmtContext ctx) { return visitChildren(ctx); }
  135. /**
  136. * {@inheritDoc}
  137. *
  138. * <p>The default implementation returns the result of calling
  139. * {@link #visitChildren} on {@code ctx}.</p>
  140. */
  141. @Override public T visitImport_part(@NotNull IvannosysGrammarParser.Import_partContext ctx) { return visitChildren(ctx); }
  142. /**
  143. * {@inheritDoc}
  144. *
  145. * <p>The default implementation returns the result of calling
  146. * {@link #visitChildren} on {@code ctx}.</p>
  147. */
  148. @Override public T visitProgramPart(@NotNull IvannosysGrammarParser.ProgramPartContext ctx) { return visitChildren(ctx); }
  149. /**
  150. * {@inheritDoc}
  151. *
  152. * <p>The default implementation returns the result of calling
  153. * {@link #visitChildren} on {@code ctx}.</p>
  154. */
  155. @Override public T visitFor_each(@NotNull IvannosysGrammarParser.For_eachContext ctx) { return visitChildren(ctx); }
  156. /**
  157. * {@inheritDoc}
  158. *
  159. * <p>The default implementation returns the result of calling
  160. * {@link #visitChildren} on {@code ctx}.</p>
  161. */
  162. @Override public T visitDef_interface(@NotNull IvannosysGrammarParser.Def_interfaceContext ctx) { return visitChildren(ctx); }
  163. /**
  164. * {@inheritDoc}
  165. *
  166. * <p>The default implementation returns the result of calling
  167. * {@link #visitChildren} on {@code ctx}.</p>
  168. */
  169. @Override public T visitBuild_stmt(@NotNull IvannosysGrammarParser.Build_stmtContext ctx) { return visitChildren(ctx); }
  170. /**
  171. * {@inheritDoc}
  172. *
  173. * <p>The default implementation returns the result of calling
  174. * {@link #visitChildren} on {@code ctx}.</p>
  175. */
  176. @Override public T visitMapType(@NotNull IvannosysGrammarParser.MapTypeContext ctx) { return visitChildren(ctx); }
  177. /**
  178. * {@inheritDoc}
  179. *
  180. * <p>The default implementation returns the result of calling
  181. * {@link #visitChildren} on {@code ctx}.</p>
  182. */
  183. @Override public T visitTry_catch(@NotNull IvannosysGrammarParser.Try_catchContext ctx) { return visitChildren(ctx); }
  184. /**
  185. * {@inheritDoc}
  186. *
  187. * <p>The default implementation returns the result of calling
  188. * {@link #visitChildren} on {@code ctx}.</p>
  189. */
  190. @Override public T visitIncrement(@NotNull IvannosysGrammarParser.IncrementContext ctx) { return visitChildren(ctx); }
  191. /**
  192. * {@inheritDoc}
  193. *
  194. * <p>The default implementation returns the result of calling
  195. * {@link #visitChildren} on {@code ctx}.</p>
  196. */
  197. @Override public T visitIndex(@NotNull IvannosysGrammarParser.IndexContext ctx) { return visitChildren(ctx); }
  198. /**
  199. * {@inheritDoc}
  200. *
  201. * <p>The default implementation returns the result of calling
  202. * {@link #visitChildren} on {@code ctx}.</p>
  203. */
  204. @Override public T visitBuildvalue(@NotNull IvannosysGrammarParser.BuildvalueContext ctx) { return visitChildren(ctx); }
  205. /**
  206. * {@inheritDoc}
  207. *
  208. * <p>The default implementation returns the result of calling
  209. * {@link #visitChildren} on {@code ctx}.</p>
  210. */
  211. @Override public T visitBuildtags(@NotNull IvannosysGrammarParser.BuildtagsContext ctx) { return visitChildren(ctx); }
  212. /**
  213. * {@inheritDoc}
  214. *
  215. * <p>The default implementation returns the result of calling
  216. * {@link #visitChildren} on {@code ctx}.</p>
  217. */
  218. @Override public T visitDef_case(@NotNull IvannosysGrammarParser.Def_caseContext ctx) { return visitChildren(ctx); }
  219. /**
  220. * {@inheritDoc}
  221. *
  222. * <p>The default implementation returns the result of calling
  223. * {@link #visitChildren} on {@code ctx}.</p>
  224. */
  225. @Override public T visitCallExpr(@NotNull IvannosysGrammarParser.CallExprContext ctx) { return visitChildren(ctx); }
  226. /**
  227. * {@inheritDoc}
  228. *
  229. * <p>The default implementation returns the result of calling
  230. * {@link #visitChildren} on {@code ctx}.</p>
  231. */
  232. @Override public T visitInit(@NotNull IvannosysGrammarParser.InitContext ctx) { return visitChildren(ctx); }
  233. /**
  234. * {@inheritDoc}
  235. *
  236. * <p>The default implementation returns the result of calling
  237. * {@link #visitChildren} on {@code ctx}.</p>
  238. */
  239. @Override public T visitFor_clause(@NotNull IvannosysGrammarParser.For_clauseContext ctx) { return visitChildren(ctx); }
  240. /**
  241. * {@inheritDoc}
  242. *
  243. * <p>The default implementation returns the result of calling
  244. * {@link #visitChildren} on {@code ctx}.</p>
  245. */
  246. @Override public T visitThrowStmt(@NotNull IvannosysGrammarParser.ThrowStmtContext ctx) { return visitChildren(ctx); }
  247. /**
  248. * {@inheritDoc}
  249. *
  250. * <p>The default implementation returns the result of calling
  251. * {@link #visitChildren} on {@code ctx}.</p>
  252. */
  253. @Override public T visitComposite(@NotNull IvannosysGrammarParser.CompositeContext ctx) { return visitChildren(ctx); }
  254. /**
  255. * {@inheritDoc}
  256. *
  257. * <p>The default implementation returns the result of calling
  258. * {@link #visitChildren} on {@code ctx}.</p>
  259. */
  260. @Override public T visitId_list(@NotNull IvannosysGrammarParser.Id_listContext ctx) { return visitChildren(ctx); }
  261. /**
  262. * {@inheritDoc}
  263. *
  264. * <p>The default implementation returns the result of calling
  265. * {@link #visitChildren} on {@code ctx}.</p>
  266. */
  267. @Override public T visitStatement(@NotNull IvannosysGrammarParser.StatementContext ctx) { return visitChildren(ctx); }
  268. /**
  269. * {@inheritDoc}
  270. *
  271. * <p>The default implementation returns the result of calling
  272. * {@link #visitChildren} on {@code ctx}.</p>
  273. */
  274. @Override public T visitInitialization(@NotNull IvannosysGrammarParser.InitializationContext ctx) { return visitChildren(ctx); }
  275. /**
  276. * {@inheritDoc}
  277. *
  278. * <p>The default implementation returns the result of calling
  279. * {@link #visitChildren} on {@code ctx}.</p>
  280. */
  281. @Override public T visitFlux_control(@NotNull IvannosysGrammarParser.Flux_controlContext ctx) { return visitChildren(ctx); }
  282. /**
  283. * {@inheritDoc}
  284. *
  285. * <p>The default implementation returns the result of calling
  286. * {@link #visitChildren} on {@code ctx}.</p>
  287. */
  288. @Override public T visitReturn_stmt(@NotNull IvannosysGrammarParser.Return_stmtContext ctx) { return visitChildren(ctx); }
  289. /**
  290. * {@inheritDoc}
  291. *
  292. * <p>The default implementation returns the result of calling
  293. * {@link #visitChildren} on {@code ctx}.</p>
  294. */
  295. @Override public T visitReturn_dec(@NotNull IvannosysGrammarParser.Return_decContext ctx) { return visitChildren(ctx); }
  296. /**
  297. * {@inheritDoc}
  298. *
  299. * <p>The default implementation returns the result of calling
  300. * {@link #visitChildren} on {@code ctx}.</p>
  301. */
  302. @Override public T visitDef_assign_op(@NotNull IvannosysGrammarParser.Def_assign_opContext ctx) { return visitChildren(ctx); }
  303. /**
  304. * {@inheritDoc}
  305. *
  306. * <p>The default implementation returns the result of calling
  307. * {@link #visitChildren} on {@code ctx}.</p>
  308. */
  309. @Override public T visitIndexedType(@NotNull IvannosysGrammarParser.IndexedTypeContext ctx) { return visitChildren(ctx); }
  310. /**
  311. * {@inheritDoc}
  312. *
  313. * <p>The default implementation returns the result of calling
  314. * {@link #visitChildren} on {@code ctx}.</p>
  315. */
  316. @Override public T visitDef_if(@NotNull IvannosysGrammarParser.Def_ifContext ctx) { return visitChildren(ctx); }
  317. /**
  318. * {@inheritDoc}
  319. *
  320. * <p>The default implementation returns the result of calling
  321. * {@link #visitChildren} on {@code ctx}.</p>
  322. */
  323. @Override public T visitFinally_try(@NotNull IvannosysGrammarParser.Finally_tryContext ctx) { return visitChildren(ctx); }
  324. /**
  325. * {@inheritDoc}
  326. *
  327. * <p>The default implementation returns the result of calling
  328. * {@link #visitChildren} on {@code ctx}.</p>
  329. */
  330. @Override public T visitRange(@NotNull IvannosysGrammarParser.RangeContext ctx) { return visitChildren(ctx); }
  331. /**
  332. * {@inheritDoc}
  333. *
  334. * <p>The default implementation returns the result of calling
  335. * {@link #visitChildren} on {@code ctx}.</p>
  336. */
  337. @Override public T visitElement_list(@NotNull IvannosysGrammarParser.Element_listContext ctx) { return visitChildren(ctx); }
  338. /**
  339. * {@inheritDoc}
  340. *
  341. * <p>The default implementation returns the result of calling
  342. * {@link #visitChildren} on {@code ctx}.</p>
  343. */
  344. @Override public T visitStructType(@NotNull IvannosysGrammarParser.StructTypeContext ctx) { return visitChildren(ctx); }
  345. /**
  346. * {@inheritDoc}
  347. *
  348. * <p>The default implementation returns the result of calling
  349. * {@link #visitChildren} on {@code ctx}.</p>
  350. */
  351. @Override public T visitLabel_stmt(@NotNull IvannosysGrammarParser.Label_stmtContext ctx) { return visitChildren(ctx); }
  352. /**
  353. * {@inheritDoc}
  354. *
  355. * <p>The default implementation returns the result of calling
  356. * {@link #visitChildren} on {@code ctx}.</p>
  357. */
  358. @Override public T visitKeyed_element(@NotNull IvannosysGrammarParser.Keyed_elementContext ctx) { return visitChildren(ctx); }
  359. /**
  360. * {@inheritDoc}
  361. *
  362. * <p>The default implementation returns the result of calling
  363. * {@link #visitChildren} on {@code ctx}.</p>
  364. */
  365. @Override public T visitDef_function(@NotNull IvannosysGrammarParser.Def_functionContext ctx) { return visitChildren(ctx); }
  366. /**
  367. * {@inheritDoc}
  368. *
  369. * <p>The default implementation returns the result of calling
  370. * {@link #visitChildren} on {@code ctx}.</p>
  371. */
  372. @Override public T visitPrimitive_value(@NotNull IvannosysGrammarParser.Primitive_valueContext ctx) { return visitChildren(ctx); }
  373. /**
  374. * {@inheritDoc}
  375. *
  376. * <p>The default implementation returns the result of calling
  377. * {@link #visitChildren} on {@code ctx}.</p>
  378. */
  379. @Override public T visitBaseType(@NotNull IvannosysGrammarParser.BaseTypeContext ctx) { return visitChildren(ctx); }
  380. /**
  381. * {@inheritDoc}
  382. *
  383. * <p>The default implementation returns the result of calling
  384. * {@link #visitChildren} on {@code ctx}.</p>
  385. */
  386. @Override public T visitDef_if_block(@NotNull IvannosysGrammarParser.Def_if_blockContext ctx) { return visitChildren(ctx); }
  387. /**
  388. * {@inheritDoc}
  389. *
  390. * <p>The default implementation returns the result of calling
  391. * {@link #visitChildren} on {@code ctx}.</p>
  392. */
  393. @Override public T visitDelete(@NotNull IvannosysGrammarParser.DeleteContext ctx) { return visitChildren(ctx); }
  394. /**
  395. * {@inheritDoc}
  396. *
  397. * <p>The default implementation returns the result of calling
  398. * {@link #visitChildren} on {@code ctx}.</p>
  399. */
  400. @Override public T visitBase_stmt(@NotNull IvannosysGrammarParser.Base_stmtContext ctx) { return visitChildren(ctx); }
  401. /**
  402. * {@inheritDoc}
  403. *
  404. * <p>The default implementation returns the result of calling
  405. * {@link #visitChildren} on {@code ctx}.</p>
  406. */
  407. @Override public T visitDef_type(@NotNull IvannosysGrammarParser.Def_typeContext ctx) { return visitChildren(ctx); }
  408. /**
  409. * {@inheritDoc}
  410. *
  411. * <p>The default implementation returns the result of calling
  412. * {@link #visitChildren} on {@code ctx}.</p>
  413. */
  414. @Override public T visitDec_var_short(@NotNull IvannosysGrammarParser.Dec_var_shortContext ctx) { return visitChildren(ctx); }
  415. /**
  416. * {@inheritDoc}
  417. *
  418. * <p>The default implementation returns the result of calling
  419. * {@link #visitChildren} on {@code ctx}.</p>
  420. */
  421. @Override public T visitFieldDecl(@NotNull IvannosysGrammarParser.FieldDeclContext ctx) { return visitChildren(ctx); }
  422. /**
  423. * {@inheritDoc}
  424. *
  425. * <p>The default implementation returns the result of calling
  426. * {@link #visitChildren} on {@code ctx}.</p>
  427. */
  428. @Override public T visitExpression_seletor(@NotNull IvannosysGrammarParser.Expression_seletorContext ctx) { return visitChildren(ctx); }
  429. /**
  430. * {@inheritDoc}
  431. *
  432. * <p>The default implementation returns the result of calling
  433. * {@link #visitChildren} on {@code ctx}.</p>
  434. */
  435. @Override public T visitDec_var(@NotNull IvannosysGrammarParser.Dec_varContext ctx) { return visitChildren(ctx); }
  436. /**
  437. * {@inheritDoc}
  438. *
  439. * <p>The default implementation returns the result of calling
  440. * {@link #visitChildren} on {@code ctx}.</p>
  441. */
  442. @Override public T visitQualifiedId(@NotNull IvannosysGrammarParser.QualifiedIdContext ctx) { return visitChildren(ctx); }
  443. /**
  444. * {@inheritDoc}
  445. *
  446. * <p>The default implementation returns the result of calling
  447. * {@link #visitChildren} on {@code ctx}.</p>
  448. */
  449. @Override public T visitStatement_list(@NotNull IvannosysGrammarParser.Statement_listContext ctx) { return visitChildren(ctx); }
  450. /**
  451. * {@inheritDoc}
  452. *
  453. * <p>The default implementation returns the result of calling
  454. * {@link #visitChildren} on {@code ctx}.</p>
  455. */
  456. @Override public T visitAnon_field(@NotNull IvannosysGrammarParser.Anon_fieldContext ctx) { return visitChildren(ctx); }
  457. /**
  458. * {@inheritDoc}
  459. *
  460. * <p>The default implementation returns the result of calling
  461. * {@link #visitChildren} on {@code ctx}.</p>
  462. */
  463. @Override public T visitNewstmt(@NotNull IvannosysGrammarParser.NewstmtContext ctx) { return visitChildren(ctx); }
  464. /**
  465. * {@inheritDoc}
  466. *
  467. * <p>The default implementation returns the result of calling
  468. * {@link #visitChildren} on {@code ctx}.</p>
  469. */
  470. @Override public T visitDec_const(@NotNull IvannosysGrammarParser.Dec_constContext ctx) { return visitChildren(ctx); }
  471. /**
  472. * {@inheritDoc}
  473. *
  474. * <p>The default implementation returns the result of calling
  475. * {@link #visitChildren} on {@code ctx}.</p>
  476. */
  477. @Override public T visitOperand(@NotNull IvannosysGrammarParser.OperandContext ctx) { return visitChildren(ctx); }
  478. /**
  479. * {@inheritDoc}
  480. *
  481. * <p>The default implementation returns the result of calling
  482. * {@link #visitChildren} on {@code ctx}.</p>
  483. */
  484. @Override public T visitImports(@NotNull IvannosysGrammarParser.ImportsContext ctx) { return visitChildren(ctx); }
  485. /**
  486. * {@inheritDoc}
  487. *
  488. * <p>The default implementation returns the result of calling
  489. * {@link #visitChildren} on {@code ctx}.</p>
  490. */
  491. @Override public T visitPrimary_expr(@NotNull IvannosysGrammarParser.Primary_exprContext ctx) { return visitChildren(ctx); }
  492. /**
  493. * {@inheritDoc}
  494. *
  495. * <p>The default implementation returns the result of calling
  496. * {@link #visitChildren} on {@code ctx}.</p>
  497. */
  498. @Override public T visitLiteralType(@NotNull IvannosysGrammarParser.LiteralTypeContext ctx) { return visitChildren(ctx); }
  499. /**
  500. * {@inheritDoc}
  501. *
  502. * <p>The default implementation returns the result of calling
  503. * {@link #visitChildren} on {@code ctx}.</p>
  504. */
  505. @Override public T visitInc_dec(@NotNull IvannosysGrammarParser.Inc_decContext ctx) { return visitChildren(ctx); }
  506. /**
  507. * {@inheritDoc}
  508. *
  509. * <p>The default implementation returns the result of calling
  510. * {@link #visitChildren} on {@code ctx}.</p>
  511. */
  512. @Override public T visitArguments(@NotNull IvannosysGrammarParser.ArgumentsContext ctx) { return visitChildren(ctx); }
  513. /**
  514. * {@inheritDoc}
  515. *
  516. * <p>The default implementation returns the result of calling
  517. * {@link #visitChildren} on {@code ctx}.</p>
  518. */
  519. @Override public T visitEmpty_block(@NotNull IvannosysGrammarParser.Empty_blockContext ctx) { return visitChildren(ctx); }
  520. /**
  521. * {@inheritDoc}
  522. *
  523. * <p>The default implementation returns the result of calling
  524. * {@link #visitChildren} on {@code ctx}.</p>
  525. */
  526. @Override public T visitLiteral_value(@NotNull IvannosysGrammarParser.Literal_valueContext ctx) { return visitChildren(ctx); }
  527. /**
  528. * {@inheritDoc}
  529. *
  530. * <p>The default implementation returns the result of calling
  531. * {@link #visitChildren} on {@code ctx}.</p>
  532. */
  533. @Override public T visitTypename(@NotNull IvannosysGrammarParser.TypenameContext ctx) { return visitChildren(ctx); }
  534. /**
  535. * {@inheritDoc}
  536. *
  537. * <p>The default implementation returns the result of calling
  538. * {@link #visitChildren} on {@code ctx}.</p>
  539. */
  540. @Override public T visitReceive_type(@NotNull IvannosysGrammarParser.Receive_typeContext ctx) { return visitChildren(ctx); }
  541. /**
  542. * {@inheritDoc}
  543. *
  544. * <p>The default implementation returns the result of calling
  545. * {@link #visitChildren} on {@code ctx}.</p>
  546. */
  547. @Override public T visitLiteral(@NotNull IvannosysGrammarParser.LiteralContext ctx) { return visitChildren(ctx); }
  548. }