udm-rules-vue 0.0.1

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 (438) hide show
  1. package/README.md +92 -0
  2. package/dist/EventBus.d.ts +70 -0
  3. package/dist/FileDeployPackageBuilder.d.ts +35 -0
  4. package/dist/FileSystemEventBus.d.ts +6 -0
  5. package/dist/FileUtils.d.ts +51 -0
  6. package/dist/RedoUndoManager.d.ts +15 -0
  7. package/dist/RuleFileWatcher.d.ts +14 -0
  8. package/dist/ServerRequestResponse.d.ts +29 -0
  9. package/dist/Url.d.ts +18 -0
  10. package/dist/WebviewCollection.d.ts +12 -0
  11. package/dist/ajax.d.ts +2 -0
  12. package/dist/assets/builtin/BasicObject.bom +22 -0
  13. package/dist/assets/builtin/BasicObject_zh_CN.voc +9 -0
  14. package/dist/assets/builtin/Constants.bom +9 -0
  15. package/dist/assets/builtin/Constants_zh_CN.voc +6 -0
  16. package/dist/assets/builtin/StaticMethod.bom +118 -0
  17. package/dist/assets/builtin/StaticMethod_zh_CN.voc +176 -0
  18. package/dist/assets/css/index.css +1 -0
  19. package/dist/authToken.d.ts +2 -0
  20. package/dist/bom/AttributeDialog.vue.d.ts +6 -0
  21. package/dist/bom/BomEditor.vue.d.ts +8 -0
  22. package/dist/bom/BomEditorComponent.vue.d.ts +3 -0
  23. package/dist/bom/BomWebEditor.d.ts +1 -0
  24. package/dist/bom/Category.vue.d.ts +6 -0
  25. package/dist/bom/CategoryDialog.vue.d.ts +6 -0
  26. package/dist/bom/ClassEditor.vue.d.ts +9 -0
  27. package/dist/bom/ClassMemberDialog.vue.d.ts +6 -0
  28. package/dist/bom/CustomProperty.vue.d.ts +7 -0
  29. package/dist/bom/DocumentationDialog.vue.d.ts +6 -0
  30. package/dist/bom/Domain.vue.d.ts +7 -0
  31. package/dist/bom/DomainDialog.vue.d.ts +6 -0
  32. package/dist/bom/EditTermDialog.vue.d.ts +6 -0
  33. package/dist/bom/FieldEditor.vue.d.ts +12 -0
  34. package/dist/bom/MethodEditor.vue.d.ts +11 -0
  35. package/dist/bom/MethodParameter.vue.d.ts +7 -0
  36. package/dist/bom/MethodParameterDialog.vue.d.ts +3 -0
  37. package/dist/bom/NameDialog.vue.d.ts +6 -0
  38. package/dist/bom/PureWebBomEditor.vue.d.ts +41 -0
  39. package/dist/bom/bomDeserialize.d.ts +28 -0
  40. package/dist/bom/bomRefactor.d.ts +2 -0
  41. package/dist/bom/bomSerialize.d.ts +2 -0
  42. package/dist/bom/model.d.ts +118 -0
  43. package/dist/bom/sync/SyncDialog.vue.d.ts +6 -0
  44. package/dist/bom/sync/VocabularySettleDialog.vue.d.ts +6 -0
  45. package/dist/bom/sync/bomCompare.d.ts +37 -0
  46. package/dist/bom/sync/sync.d.ts +6 -0
  47. package/dist/bom/sync/vocabularySettle.d.ts +3 -0
  48. package/dist/bom/vocabulary.d.ts +4 -0
  49. package/dist/bom/webview/BomDocument.d.ts +70 -0
  50. package/dist/bom/webview/BomEditorProvider.d.ts +39 -0
  51. package/dist/bom/webview/webviewHTMLContent.d.ts +8 -0
  52. package/dist/brl/PureWebRuleEditor.vue.d.ts +56 -0
  53. package/dist/brl/RuleDocument.d.ts +69 -0
  54. package/dist/brl/RuleEditor.vue.d.ts +17 -0
  55. package/dist/brl/RuleEditorComponent.vue.d.ts +34 -0
  56. package/dist/brl/RuleEditorProvider.d.ts +30 -0
  57. package/dist/brl/RuleUtils.d.ts +12 -0
  58. package/dist/brl/RuleWebEditor.d.ts +1 -0
  59. package/dist/brl/edit/PropertyChangeEdit.d.ts +4 -0
  60. package/dist/brl/edit/ScriptChangeEdit.d.ts +4 -0
  61. package/dist/brl/webviewHTMLContent.d.ts +8 -0
  62. package/dist/command/CompileAndPackageCommand.d.ts +3 -0
  63. package/dist/command/CompileRuleFilesCommand.d.ts +20 -0
  64. package/dist/command/CopyLibFilesCommand.d.ts +5 -0
  65. package/dist/command/DeployRuleFileCommand.d.ts +3 -0
  66. package/dist/command/OpenCompiledFileCommand.d.ts +3 -0
  67. package/dist/command/PackageRuleFilesCommand.d.ts +5 -0
  68. package/dist/command/RefactorUuidCommand.d.ts +3 -0
  69. package/dist/command/ReloadBomFilesCommand.d.ts +3 -0
  70. package/dist/command/ServerUrlConfigCommand.d.ts +4 -0
  71. package/dist/command/UpdateUuidCommand.d.ts +3 -0
  72. package/dist/compile/DecisionTableCompiler.d.ts +43 -0
  73. package/dist/compile/DecisionTableRulePreview.d.ts +5 -0
  74. package/dist/compile/ExpressionBuilder.d.ts +24 -0
  75. package/dist/compile/FileCompiler.d.ts +6 -0
  76. package/dist/compile/FlowCompiler.d.ts +18 -0
  77. package/dist/compile/PureWebCompiler.d.ts +1 -0
  78. package/dist/compile/RuleCompiler.d.ts +7 -0
  79. package/dist/compile/compileRuleScript.d.ts +5 -0
  80. package/dist/completion/ActionCompletionBuilder.d.ts +4 -0
  81. package/dist/completion/BatchConditionCompletionBuilder.d.ts +4 -0
  82. package/dist/completion/CompletionBuilder.d.ts +157 -0
  83. package/dist/completion/DatatypeAssertor.d.ts +16 -0
  84. package/dist/completion/ExpressionCompletionBuilder.d.ts +7 -0
  85. package/dist/completion/ObjectNameCompletionBuilder.d.ts +5 -0
  86. package/dist/completion/ObjectVariableAndMethodCompletion.d.ts +12 -0
  87. package/dist/completion/RuleKeyCompletionBuilder.d.ts +7 -0
  88. package/dist/completion/builder/BatchDeclareCompletionDataBuilder.d.ts +2 -0
  89. package/dist/completion/builder/CurrentItemCompletionDataBuilder.d.ts +9 -0
  90. package/dist/completion/builder/EnumCompletionItemBuilder.d.ts +7 -0
  91. package/dist/completion/builder/MethodCompletionDataBuilder.d.ts +8 -0
  92. package/dist/completion/builder/VariableCompletionItemBuilder.d.ts +9 -0
  93. package/dist/completion/configure/ArithOperatorHintBuilder.d.ts +12 -0
  94. package/dist/completion/configure/EnumHintBuilder.d.ts +8 -0
  95. package/dist/completion/configure/HintConfigBuilder.d.ts +52 -0
  96. package/dist/completion/configure/LiteralHintBuilder.d.ts +11 -0
  97. package/dist/completion/configure/MethodHintBuilder.d.ts +18 -0
  98. package/dist/completion/configure/ObjectHintBuilder.d.ts +10 -0
  99. package/dist/completion/configure/PlaceholderHintBuilder.d.ts +11 -0
  100. package/dist/completion/configure/VariableHintBuilder.d.ts +11 -0
  101. package/dist/completion/hint/HintCompletionBuilder.d.ts +11 -0
  102. package/dist/completion/hint/MethodCompletionBuilder.d.ts +9 -0
  103. package/dist/completion/hint/ObjectCompletionBuilder.d.ts +8 -0
  104. package/dist/completion/hint/ObjectNameCompletionBuilder.d.ts +7 -0
  105. package/dist/completion/hint/PlaceHolderCompletionBuilder.d.ts +5 -0
  106. package/dist/completion/hint/VariableCompletionBuilder.d.ts +7 -0
  107. package/dist/components/datatype/DatatypeSelectUtils.d.ts +13 -0
  108. package/dist/components/datatype/SelectDatatypeDialog.vue.d.ts +6 -0
  109. package/dist/components/form/TagInput.vue.d.ts +13 -0
  110. package/dist/components/menu/Item.vue.d.ts +9 -0
  111. package/dist/components/menu/Menu.vue.d.ts +8 -0
  112. package/dist/components/menu/MultiItem.vue.d.ts +12 -0
  113. package/dist/components/menu/events.d.ts +4 -0
  114. package/dist/components/menu/types.d.ts +15 -0
  115. package/dist/components/message/Dialog.vue.d.ts +36 -0
  116. package/dist/components/message/Message.vue.d.ts +8 -0
  117. package/dist/components/message/events.d.ts +19 -0
  118. package/dist/components/process/Connection.d.ts +196 -0
  119. package/dist/components/process/Menu.d.ts +12 -0
  120. package/dist/components/process/MenuItemFactory.d.ts +5 -0
  121. package/dist/components/process/MergeGroup.d.ts +12 -0
  122. package/dist/components/process/Process.d.ts +108 -0
  123. package/dist/components/process/ProcessNode.d.ts +340 -0
  124. package/dist/components/process/Tooltip.d.ts +20 -0
  125. package/dist/components/process/colors.d.ts +2 -0
  126. package/dist/components/process/events.d.ts +10 -0
  127. package/dist/components/process/types.d.ts +11 -0
  128. package/dist/components/select/Select.vue.d.ts +21 -0
  129. package/dist/components/select/SelectItem.d.ts +7 -0
  130. package/dist/components/splitter/HoizontalSplitter.vue.d.ts +34 -0
  131. package/dist/components/splitter/VerticalSplitter.vue.d.ts +43 -0
  132. package/dist/components/tab/Tab.vue.d.ts +27 -0
  133. package/dist/components/tree/TreeNode.vue.d.ts +31 -0
  134. package/dist/connect/Connect.vue.d.ts +3 -0
  135. package/dist/connect/ConnectComponent.vue.d.ts +3 -0
  136. package/dist/connect/ConnectProvider.d.ts +6 -0
  137. package/dist/connect/ConnectWebEditor.d.ts +1 -0
  138. package/dist/connect/webviewHTMLContent.d.ts +8 -0
  139. package/dist/content.d.ts +25 -0
  140. package/dist/dispose.d.ts +9 -0
  141. package/dist/dta/DecisionTableComponent.vue.d.ts +37 -0
  142. package/dist/dta/DecisionTableDeserialize.d.ts +3 -0
  143. package/dist/dta/DecisionTableEditor.vue.d.ts +20 -0
  144. package/dist/dta/DecisionTableSerialize.d.ts +2 -0
  145. package/dist/dta/DecisionTableUtils.d.ts +19 -0
  146. package/dist/dta/DecisionTableWebEditor.d.ts +1 -0
  147. package/dist/dta/DynamicEditableController.d.ts +46 -0
  148. package/dist/dta/PureWebDecisionTableEditor.vue.d.ts +59 -0
  149. package/dist/dta/component/ColumnNameBuilder.d.ts +2 -0
  150. package/dist/dta/component/DecisionTable.d.ts +136 -0
  151. package/dist/dta/component/DecisionTableCrossHeader.d.ts +11 -0
  152. package/dist/dta/component/DecisionTableHeader.d.ts +30 -0
  153. package/dist/dta/component/DecisionTableRowIndicate.d.ts +27 -0
  154. package/dist/dta/component/contentContextMenuEvent.d.ts +3 -0
  155. package/dist/dta/component/edit/ContentChangeEdit.d.ts +11 -0
  156. package/dist/dta/component/edit/DeleteHeaderEdit.d.ts +7 -0
  157. package/dist/dta/component/edit/DeleteRowEdit.d.ts +7 -0
  158. package/dist/dta/component/edit/HeaderChangeEdit.d.ts +7 -0
  159. package/dist/dta/component/edit/HeaderWidthChangeEdit.d.ts +9 -0
  160. package/dist/dta/component/edit/InsertHeaderEdit.d.ts +7 -0
  161. package/dist/dta/component/edit/InsertRowEdit.d.ts +7 -0
  162. package/dist/dta/component/edit/RowHeightChangeEdit.d.ts +9 -0
  163. package/dist/dta/component/edit/RowMoveEdit.d.ts +7 -0
  164. package/dist/dta/component/edit/StyleChangeEdit.d.ts +16 -0
  165. package/dist/dta/component/headerContextMenuEvent.d.ts +2 -0
  166. package/dist/dta/component/operationContextMenuBuilder.d.ts +4 -0
  167. package/dist/dta/component/operator/ColumnDelete.d.ts +10 -0
  168. package/dist/dta/component/operator/ColumnInsert.d.ts +14 -0
  169. package/dist/dta/component/operator/HeaderChange.d.ts +15 -0
  170. package/dist/dta/component/operator/MergeSelectedCells.d.ts +8 -0
  171. package/dist/dta/component/operator/ModelInitializer.d.ts +18 -0
  172. package/dist/dta/component/operator/RowDelete.d.ts +14 -0
  173. package/dist/dta/component/operator/RowInsert.d.ts +32 -0
  174. package/dist/dta/component/operator/SplitSelectedCell.d.ts +7 -0
  175. package/dist/dta/component/operator/SubHeaderBuilder.d.ts +18 -0
  176. package/dist/dta/component/operator/styleImpose.d.ts +3 -0
  177. package/dist/dta/dialog/CellStyleDialog.vue.d.ts +28 -0
  178. package/dist/dta/dialog/EditColumnDialog.vue.d.ts +8 -0
  179. package/dist/dta/dialog/Style.vue.d.ts +11 -0
  180. package/dist/dta/dialog/events.d.ts +2 -0
  181. package/dist/dta/model/ActionItem.d.ts +12 -0
  182. package/dist/dta/model/Cell.d.ts +59 -0
  183. package/dist/dta/model/ConditionItem.d.ts +37 -0
  184. package/dist/dta/model/DecisionTableModel.d.ts +89 -0
  185. package/dist/dta/model/Definition.d.ts +31 -0
  186. package/dist/dta/model/HeaderCell.d.ts +16 -0
  187. package/dist/dta/model/Item.d.ts +31 -0
  188. package/dist/dta/model/ItemCell.d.ts +46 -0
  189. package/dist/dta/model/Partition.d.ts +20 -0
  190. package/dist/dta/model/ResourceData.d.ts +7 -0
  191. package/dist/dta/model/Style.d.ts +19 -0
  192. package/dist/dta/model/SubHeader.d.ts +15 -0
  193. package/dist/dta/webview/DecisionTableDocument.d.ts +68 -0
  194. package/dist/dta/webview/DecisionTableEditorProvider.d.ts +31 -0
  195. package/dist/dta/webview/webviewHTMLContent.d.ts +8 -0
  196. package/dist/dtr/DecisionTreeComponent.vue.d.ts +39 -0
  197. package/dist/dtr/DecisionTreeEditor.vue.d.ts +21 -0
  198. package/dist/dtr/DecisionTreeWebEditor.d.ts +1 -0
  199. package/dist/dtr/PureWebDecisionTreeEditor.vue.d.ts +61 -0
  200. package/dist/dtr/designer/ActionInsert.d.ts +14 -0
  201. package/dist/dtr/designer/ConditionDelete.d.ts +5 -0
  202. package/dist/dtr/designer/ConditionInsert.d.ts +16 -0
  203. package/dist/dtr/designer/ConfigDialog.vue.d.ts +6 -0
  204. package/dist/dtr/designer/LabelDialog.vue.d.ts +6 -0
  205. package/dist/dtr/designer/NodeConnection.d.ts +21 -0
  206. package/dist/dtr/designer/PlaceholderEditableController.d.ts +66 -0
  207. package/dist/dtr/designer/TextBlock.d.ts +20 -0
  208. package/dist/dtr/designer/TreeDesigner.d.ts +75 -0
  209. package/dist/dtr/designer/TreeNode.d.ts +53 -0
  210. package/dist/dtr/designer/layout.d.ts +16 -0
  211. package/dist/dtr/designer/treeNodeBuilder.d.ts +18 -0
  212. package/dist/dtr/webview/DecisionTreeDocument.d.ts +68 -0
  213. package/dist/dtr/webview/DecisionTreeEditorProvider.d.ts +31 -0
  214. package/dist/dtr/webview/webviewHTMLContent.d.ts +8 -0
  215. package/dist/extension.d.ts +10 -0
  216. package/dist/flowFileLoader.d.ts +7 -0
  217. package/dist/grammar/CaretTokenDetection.d.ts +123 -0
  218. package/dist/grammar/DatatypeBuilder.d.ts +16 -0
  219. package/dist/grammar/LexerTokenConsumer.d.ts +27 -0
  220. package/dist/grammar/MethodHelper.d.ts +43 -0
  221. package/dist/grammar/ParserException.d.ts +3 -0
  222. package/dist/grammar/ParserHelper.d.ts +80 -0
  223. package/dist/grammar/SearchMethod.d.ts +15 -0
  224. package/dist/grammar/TokenAssertor.d.ts +34 -0
  225. package/dist/grammar/bom/BomLexer.d.ts +55 -0
  226. package/dist/grammar/bom/BomParser.d.ts +656 -0
  227. package/dist/grammar/bom/BomParserListener.d.ts +492 -0
  228. package/dist/grammar/bom/BomParserVisitor.d.ts +298 -0
  229. package/dist/grammar/diagnostic/ExpressionSemanticErrorBuild.d.ts +4 -0
  230. package/dist/grammar/diagnostic/GrammarDiagnostic.d.ts +20 -0
  231. package/dist/grammar/diagnostic/GrammarErrorListener.d.ts +20 -0
  232. package/dist/grammar/diagnostic/SemanticDiagnostic.d.ts +25 -0
  233. package/dist/grammar/parser/BoostRuleLexer.d.ts +21 -0
  234. package/dist/grammar/parser/BoostRuleParser.d.ts +57 -0
  235. package/dist/grammar/parser/MethodSearchForParser.d.ts +16 -0
  236. package/dist/grammar/rule/RuleLexer.d.ts +89 -0
  237. package/dist/grammar/rule/RuleParser.d.ts +537 -0
  238. package/dist/grammar/rule/RuleParserListener.d.ts +436 -0
  239. package/dist/grammar/rule/RuleParserVisitor.d.ts +264 -0
  240. package/dist/index.d.ts +30 -0
  241. package/dist/index.js +161109 -0
  242. package/dist/index.umd.js +887 -0
  243. package/dist/java-C_jlkwoG.js +238 -0
  244. package/dist/model/BO.d.ts +281 -0
  245. package/dist/model/BomFilesReader.d.ts +13 -0
  246. package/dist/model/Datatype.d.ts +84 -0
  247. package/dist/model/NavigationTree.d.ts +207 -0
  248. package/dist/model/PureWebBomFilesReader.d.ts +13 -0
  249. package/dist/model/RuleProperty.d.ts +6 -0
  250. package/dist/model/VarFilesReader.d.ts +9 -0
  251. package/dist/model/VocFilesReader.d.ts +77 -0
  252. package/dist/model/VscodeBomFilesReader.d.ts +2 -0
  253. package/dist/model/VscodeBuiltinObjectsLoader.d.ts +14 -0
  254. package/dist/model/WebBuiltinObjectsLoader.d.ts +13 -0
  255. package/dist/model/WebViewBomFilesReader.d.ts +1 -0
  256. package/dist/model/datatypeCompatibility.d.ts +2 -0
  257. package/dist/model/domainValidate.d.ts +5 -0
  258. package/dist/model/expression/ArithExpression.d.ts +17 -0
  259. package/dist/model/expression/BatchExpression.d.ts +14 -0
  260. package/dist/model/expression/CharExpression.d.ts +6 -0
  261. package/dist/model/expression/CurrentObjectExpression.d.ts +9 -0
  262. package/dist/model/expression/DateExpression.d.ts +6 -0
  263. package/dist/model/expression/DateTimeExpression.d.ts +6 -0
  264. package/dist/model/expression/EnumExpression.d.ts +8 -0
  265. package/dist/model/expression/Expression.d.ts +8 -0
  266. package/dist/model/expression/MethodExpression.d.ts +12 -0
  267. package/dist/model/expression/NumberExpression.d.ts +6 -0
  268. package/dist/model/expression/ObjectExpression.d.ts +7 -0
  269. package/dist/model/expression/PlaceholderExpression.d.ts +20 -0
  270. package/dist/model/expression/PredefineExpression.d.ts +25 -0
  271. package/dist/model/expression/RuleExpression.d.ts +18 -0
  272. package/dist/model/expression/StringExpression.d.ts +7 -0
  273. package/dist/model/expression/TimeExpression.d.ts +6 -0
  274. package/dist/model/expression/VariableExpression.d.ts +10 -0
  275. package/dist/model/expression/compile/commonMethodScriptCompile.d.ts +4 -0
  276. package/dist/model/expression/compile/compareMethodScriptCompile.d.ts +4 -0
  277. package/dist/monaco/ExpressionFinder.d.ts +32 -0
  278. package/dist/monaco/MonacoCodeEditor.d.ts +34 -0
  279. package/dist/monaco/MonacoCompletionProvider.d.ts +10 -0
  280. package/dist/monaco/MonacoDefinitionProvider.d.ts +7 -0
  281. package/dist/monaco/MonacoDiagnosticsBuilder.d.ts +21 -0
  282. package/dist/monaco/MonacoEditorOpener.d.ts +4 -0
  283. package/dist/monaco/MonacoHoverProvider.d.ts +16 -0
  284. package/dist/monaco/MonacoJavaEditor.d.ts +2 -0
  285. package/dist/monaco/MonacoLanguageConfiguration.d.ts +3 -0
  286. package/dist/monaco/MonacoLinkProvider.d.ts +7 -0
  287. package/dist/monaco/MonacoSemanticTokensProvider.d.ts +11 -0
  288. package/dist/monaco/MonacoTokenStyleRules.d.ts +3 -0
  289. package/dist/monaco/MonacoWorkerInitialize.d.ts +2 -0
  290. package/dist/monaco/ReadonlyMonacoCodeEditor.d.ts +6 -0
  291. package/dist/monaco/buildTargetPartExpressionSemantics.d.ts +31 -0
  292. package/dist/monaco/customMonaco.d.ts +2 -0
  293. package/dist/monaco/parseTargetPartRuleScript.d.ts +13 -0
  294. package/dist/projectprops/Category.vue.d.ts +8 -0
  295. package/dist/projectprops/Parameter.vue.d.ts +8 -0
  296. package/dist/projectprops/ProjectProperties.d.ts +33 -0
  297. package/dist/projectprops/ProjectPropertiesEditor.d.ts +1 -0
  298. package/dist/projectprops/ProjectPropertiesEditor.vue.d.ts +8 -0
  299. package/dist/projectprops/ProjectPropertiesEditorComponent.vue.d.ts +3 -0
  300. package/dist/projectprops/PureWebProjectPropertiesEditor.vue.d.ts +41 -0
  301. package/dist/projectprops/webview/ProjectPropertiesDocument.d.ts +67 -0
  302. package/dist/projectprops/webview/ProjectPropertiesEditorProvider.d.ts +26 -0
  303. package/dist/projectprops/webview/webviewHTMLContent.d.ts +8 -0
  304. package/dist/quicktest/Log.d.ts +49 -0
  305. package/dist/quicktest/LogDashboard.vue.d.ts +8 -0
  306. package/dist/quicktest/LogDialog.vue.d.ts +6 -0
  307. package/dist/quicktest/OutputDashboard.vue.d.ts +7 -0
  308. package/dist/quicktest/PasteJsonDialog.vue.d.ts +6 -0
  309. package/dist/quicktest/QuickTestDialog.vue.d.ts +7 -0
  310. package/dist/quicktest/TestUtils.d.ts +42 -0
  311. package/dist/quicktest/VariableForm.vue.d.ts +11 -0
  312. package/dist/refactor/DecisionTableFileRefactor.d.ts +6 -0
  313. package/dist/refactor/FileRefactor.d.ts +63 -0
  314. package/dist/refactor/FlowFileRefactor.d.ts +7 -0
  315. package/dist/refactor/RuleFileRefactor.d.ts +5 -0
  316. package/dist/rfl/FlowProcess.d.ts +56 -0
  317. package/dist/rfl/FlowProperties.d.ts +7 -0
  318. package/dist/rfl/MenuFactory.d.ts +7 -0
  319. package/dist/rfl/RuleFlowEditor.d.ts +0 -0
  320. package/dist/rfl/config/Common.d.ts +6 -0
  321. package/dist/rfl/config/Enums.d.ts +9 -0
  322. package/dist/rfl/config/TaskAction.d.ts +29 -0
  323. package/dist/rfl/config/Url.d.ts +1 -0
  324. package/dist/rfl/data/ActionNodeData.d.ts +44 -0
  325. package/dist/rfl/data/BranchNodeData.d.ts +12 -0
  326. package/dist/rfl/data/ConnectionData.d.ts +60 -0
  327. package/dist/rfl/data/ForkNodeData.d.ts +12 -0
  328. package/dist/rfl/data/JoinNodeData.d.ts +12 -0
  329. package/dist/rfl/data/NodeData.d.ts +27 -0
  330. package/dist/rfl/data/RuleFile.d.ts +67 -0
  331. package/dist/rfl/data/RuleNodeData.d.ts +174 -0
  332. package/dist/rfl/data/StartNodeData.d.ts +38 -0
  333. package/dist/rfl/data/StopNodeData.d.ts +38 -0
  334. package/dist/rfl/data/SubflowNodeData.d.ts +40 -0
  335. package/dist/rfl/data/TaskNodeData.d.ts +17 -0
  336. package/dist/rfl/definition/ConnectionDef.d.ts +31 -0
  337. package/dist/rfl/definition/JsonUtils.d.ts +67 -0
  338. package/dist/rfl/definition/ProcessDef.d.ts +191 -0
  339. package/dist/rfl/definition/ProcessNodeDef.d.ts +145 -0
  340. package/dist/rfl/definition/node/ActionTaskNodeDef.d.ts +74 -0
  341. package/dist/rfl/definition/node/BasicNodeDef.d.ts +15 -0
  342. package/dist/rfl/definition/node/BranchNodeDef.d.ts +40 -0
  343. package/dist/rfl/definition/node/ConnectionFactoryDef.d.ts +10 -0
  344. package/dist/rfl/definition/node/FlowConnectionDef.d.ts +58 -0
  345. package/dist/rfl/definition/node/FlowProcessNodeDef.d.ts +98 -0
  346. package/dist/rfl/definition/node/ForkNodeDef.d.ts +40 -0
  347. package/dist/rfl/definition/node/JoinNodeDef.d.ts +40 -0
  348. package/dist/rfl/definition/node/NodeType.d.ts +70 -0
  349. package/dist/rfl/definition/node/RuleTaskNodeDef.d.ts +62 -0
  350. package/dist/rfl/definition/node/StartTaskNodeDef.d.ts +71 -0
  351. package/dist/rfl/definition/node/StopTaskNodeDef.d.ts +71 -0
  352. package/dist/rfl/definition/node/SubflowTaskNodeDef.d.ts +55 -0
  353. package/dist/rfl/definition/node/TaskNodeDef.d.ts +31 -0
  354. package/dist/rfl/designer/Designer.vue.d.ts +38 -0
  355. package/dist/rfl/designer/DesignerComponent.vue.d.ts +59 -0
  356. package/dist/rfl/designer/ProcessUtils.d.ts +6 -0
  357. package/dist/rfl/designer/PureWebFlowEditor.vue.d.ts +81 -0
  358. package/dist/rfl/designer/editor/ConnectionEditor.vue.d.ts +8 -0
  359. package/dist/rfl/designer/editor/FlowEditor.vue.d.ts +3 -0
  360. package/dist/rfl/designer/editor/NodeEditor.vue.d.ts +3 -0
  361. package/dist/rfl/designer/editor/NodeList.vue.d.ts +9 -0
  362. package/dist/rfl/designer/editor/ProcessEditor.vue.d.ts +8 -0
  363. package/dist/rfl/en.d.ts +14 -0
  364. package/dist/rfl/events.d.ts +21 -0
  365. package/dist/rfl/node/ActionTaskNode.d.ts +22 -0
  366. package/dist/rfl/node/BasicNode.d.ts +8 -0
  367. package/dist/rfl/node/BranchNode.d.ts +48 -0
  368. package/dist/rfl/node/ConnectionFactory.d.ts +10 -0
  369. package/dist/rfl/node/FlowConnection.d.ts +45 -0
  370. package/dist/rfl/node/FlowProcessNode.d.ts +128 -0
  371. package/dist/rfl/node/ForkNode.d.ts +54 -0
  372. package/dist/rfl/node/JoinNode.d.ts +54 -0
  373. package/dist/rfl/node/NodeUtils.d.ts +15 -0
  374. package/dist/rfl/node/ProcessNodeFactory.d.ts +41 -0
  375. package/dist/rfl/node/RuleTaskNode.d.ts +76 -0
  376. package/dist/rfl/node/StartTaskNode.d.ts +74 -0
  377. package/dist/rfl/node/StopTaskNode.d.ts +84 -0
  378. package/dist/rfl/node/SubflowTaskNode.d.ts +70 -0
  379. package/dist/rfl/node/TaskNode.d.ts +42 -0
  380. package/dist/rfl/props/ActionNodeProperty.vue.d.ts +12 -0
  381. package/dist/rfl/props/BranchNodeProperty.vue.d.ts +10 -0
  382. package/dist/rfl/props/ConnectionProperty.vue.d.ts +5 -0
  383. package/dist/rfl/props/FlowFileSelectDialog.vue.d.ts +6 -0
  384. package/dist/rfl/props/ForkNodeProperty.vue.d.ts +10 -0
  385. package/dist/rfl/props/JoinNodeProperty.vue.d.ts +10 -0
  386. package/dist/rfl/props/RuleFileSelectDialog.vue.d.ts +8 -0
  387. package/dist/rfl/props/RuleNodeProperty.vue.d.ts +11 -0
  388. package/dist/rfl/props/StartNodeProperty.vue.d.ts +10 -0
  389. package/dist/rfl/props/StopNodeProperty.vue.d.ts +10 -0
  390. package/dist/rfl/props/SubflowNodeProperty.vue.d.ts +11 -0
  391. package/dist/rfl/utils/Msg.d.ts +5 -0
  392. package/dist/rfl/utils/Utils.d.ts +43 -0
  393. package/dist/rfl/utils/XMLUtils.d.ts +59 -0
  394. package/dist/rfl/webview/RuleFlowDocument.d.ts +68 -0
  395. package/dist/rfl/webview/RuleFlowEditorProvider.d.ts +33 -0
  396. package/dist/rfl/webview/webviewHTMLContent.d.ts +8 -0
  397. package/dist/rfl/zh.d.ts +14 -0
  398. package/dist/sca/webview/ScoreCardDocument.d.ts +68 -0
  399. package/dist/sca/webview/ScoreCardEditorProvider.d.ts +31 -0
  400. package/dist/sca/webview/webviewHTMLContent.d.ts +8 -0
  401. package/dist/server/TestBomFilesLoader.d.ts +13 -0
  402. package/dist/server/TestFlowFileLoader.d.ts +22 -0
  403. package/dist/server/server.d.ts +1 -0
  404. package/dist/sync/ProjectSync.vue.d.ts +6 -0
  405. package/dist/sync/ProjectSyncDocument.d.ts +67 -0
  406. package/dist/sync/ProjectSyncEditor.vue.d.ts +3 -0
  407. package/dist/sync/ProjectSyncEditorComponent.vue.d.ts +3 -0
  408. package/dist/sync/ProjectSyncEditorProvider.d.ts +28 -0
  409. package/dist/sync/ProjectSyncEntryBuilder.d.ts +65 -0
  410. package/dist/sync/ProjectSyncWebEditor.d.ts +1 -0
  411. package/dist/sync/SyncEntry.d.ts +11 -0
  412. package/dist/sync/SyncFileUitls.d.ts +16 -0
  413. package/dist/sync/tree/TreeNode.vue.d.ts +31 -0
  414. package/dist/sync/webviewHTMLContent.d.ts +8 -0
  415. package/dist/tst/PredictFormDialog.vue.d.ts +6 -0
  416. package/dist/tst/PureWebTstEditor.vue.d.ts +41 -0
  417. package/dist/tst/ResponseDialog.vue.d.ts +6 -0
  418. package/dist/tst/TstEditor.vue.d.ts +8 -0
  419. package/dist/tst/TstEditorComponent.vue.d.ts +3 -0
  420. package/dist/tst/TstUtils.d.ts +30 -0
  421. package/dist/tst/TstWebEditor.d.ts +1 -0
  422. package/dist/tst/webview/TstDocument.d.ts +67 -0
  423. package/dist/tst/webview/TstEditorProvider.d.ts +30 -0
  424. package/dist/tst/webview/webviewHTMLContent.d.ts +8 -0
  425. package/dist/utils.d.ts +104 -0
  426. package/dist/var/PureWebVariableEditor.vue.d.ts +41 -0
  427. package/dist/var/VariableEditor.vue.d.ts +8 -0
  428. package/dist/var/VariableEditorComponent.vue.d.ts +3 -0
  429. package/dist/var/VariableModel.d.ts +22 -0
  430. package/dist/var/VariableRefactorDialog.vue.d.ts +3 -0
  431. package/dist/var/VariableWebEditor.d.ts +1 -0
  432. package/dist/var/webview/VariableDocument.d.ts +67 -0
  433. package/dist/var/webview/VariableEditorProvider.d.ts +38 -0
  434. package/dist/var/webview/webviewHTMLContent.d.ts +8 -0
  435. package/dist/view&document.d.ts +9 -0
  436. package/dist/webviewFiles.d.ts +42 -0
  437. package/dist/webviewFilesOperator.d.ts +24 -0
  438. package/package.json +88 -0
@@ -0,0 +1,436 @@
1
+ import { ErrorNode, ParseTreeListener, ParserRuleContext, TerminalNode } from 'antlr4ng';
2
+ import { RuleStatementContext, DocumentationContext, ValueContext, ElseStatementContext, ThenStatementContext, IfStatementContext, ActionsContext, SingleActionContext, ActionContext, PreconditionContext, PredefineStatementContext, PredefineItemContext, PredefineVariableNameContext, PredefineAsContext, PredefineValueContext, PredefineConditionValueContext, PredefineObjectValueContext, PredefineSourceConditionContext, PredefineObjectNameContext, PredefineSourceContext, PredefineSourceTypeContext, PredefineTypeContext, SingleConditionExpressionContext, BatchConditionsExpressionContext, ListConditionContext, Method1Context, Method2Context, Method3Context, BatchConditionsContext, MultiplicativeContext, BasicContext, AdditiveContext, PrimaryContext, AdditiveOpContext, MultiplicativeOpContext, CurrentLoopItemContext, ObjectContext, VariableContext, EnumContext, LiteralContext, OthersContext } from './RuleParser.js';
3
+ /**
4
+ * This interface defines a complete listener for a parse tree produced by
5
+ * `RuleParser`.
6
+ */
7
+ export declare class RuleParserListener implements ParseTreeListener {
8
+ /**
9
+ * Enter a parse tree produced by `RuleParser.ruleStatement`.
10
+ * @param ctx the parse tree
11
+ */
12
+ enterRuleStatement?: (ctx: RuleStatementContext) => void;
13
+ /**
14
+ * Exit a parse tree produced by `RuleParser.ruleStatement`.
15
+ * @param ctx the parse tree
16
+ */
17
+ exitRuleStatement?: (ctx: RuleStatementContext) => void;
18
+ /**
19
+ * Enter a parse tree produced by `RuleParser.documentation`.
20
+ * @param ctx the parse tree
21
+ */
22
+ enterDocumentation?: (ctx: DocumentationContext) => void;
23
+ /**
24
+ * Exit a parse tree produced by `RuleParser.documentation`.
25
+ * @param ctx the parse tree
26
+ */
27
+ exitDocumentation?: (ctx: DocumentationContext) => void;
28
+ /**
29
+ * Enter a parse tree produced by `RuleParser.value`.
30
+ * @param ctx the parse tree
31
+ */
32
+ enterValue?: (ctx: ValueContext) => void;
33
+ /**
34
+ * Exit a parse tree produced by `RuleParser.value`.
35
+ * @param ctx the parse tree
36
+ */
37
+ exitValue?: (ctx: ValueContext) => void;
38
+ /**
39
+ * Enter a parse tree produced by `RuleParser.elseStatement`.
40
+ * @param ctx the parse tree
41
+ */
42
+ enterElseStatement?: (ctx: ElseStatementContext) => void;
43
+ /**
44
+ * Exit a parse tree produced by `RuleParser.elseStatement`.
45
+ * @param ctx the parse tree
46
+ */
47
+ exitElseStatement?: (ctx: ElseStatementContext) => void;
48
+ /**
49
+ * Enter a parse tree produced by `RuleParser.thenStatement`.
50
+ * @param ctx the parse tree
51
+ */
52
+ enterThenStatement?: (ctx: ThenStatementContext) => void;
53
+ /**
54
+ * Exit a parse tree produced by `RuleParser.thenStatement`.
55
+ * @param ctx the parse tree
56
+ */
57
+ exitThenStatement?: (ctx: ThenStatementContext) => void;
58
+ /**
59
+ * Enter a parse tree produced by `RuleParser.ifStatement`.
60
+ * @param ctx the parse tree
61
+ */
62
+ enterIfStatement?: (ctx: IfStatementContext) => void;
63
+ /**
64
+ * Exit a parse tree produced by `RuleParser.ifStatement`.
65
+ * @param ctx the parse tree
66
+ */
67
+ exitIfStatement?: (ctx: IfStatementContext) => void;
68
+ /**
69
+ * Enter a parse tree produced by `RuleParser.actions`.
70
+ * @param ctx the parse tree
71
+ */
72
+ enterActions?: (ctx: ActionsContext) => void;
73
+ /**
74
+ * Exit a parse tree produced by `RuleParser.actions`.
75
+ * @param ctx the parse tree
76
+ */
77
+ exitActions?: (ctx: ActionsContext) => void;
78
+ /**
79
+ * Enter a parse tree produced by `RuleParser.singleAction`.
80
+ * @param ctx the parse tree
81
+ */
82
+ enterSingleAction?: (ctx: SingleActionContext) => void;
83
+ /**
84
+ * Exit a parse tree produced by `RuleParser.singleAction`.
85
+ * @param ctx the parse tree
86
+ */
87
+ exitSingleAction?: (ctx: SingleActionContext) => void;
88
+ /**
89
+ * Enter a parse tree produced by `RuleParser.action`.
90
+ * @param ctx the parse tree
91
+ */
92
+ enterAction?: (ctx: ActionContext) => void;
93
+ /**
94
+ * Exit a parse tree produced by `RuleParser.action`.
95
+ * @param ctx the parse tree
96
+ */
97
+ exitAction?: (ctx: ActionContext) => void;
98
+ /**
99
+ * Enter a parse tree produced by `RuleParser.precondition`.
100
+ * @param ctx the parse tree
101
+ */
102
+ enterPrecondition?: (ctx: PreconditionContext) => void;
103
+ /**
104
+ * Exit a parse tree produced by `RuleParser.precondition`.
105
+ * @param ctx the parse tree
106
+ */
107
+ exitPrecondition?: (ctx: PreconditionContext) => void;
108
+ /**
109
+ * Enter a parse tree produced by `RuleParser.predefineStatement`.
110
+ * @param ctx the parse tree
111
+ */
112
+ enterPredefineStatement?: (ctx: PredefineStatementContext) => void;
113
+ /**
114
+ * Exit a parse tree produced by `RuleParser.predefineStatement`.
115
+ * @param ctx the parse tree
116
+ */
117
+ exitPredefineStatement?: (ctx: PredefineStatementContext) => void;
118
+ /**
119
+ * Enter a parse tree produced by `RuleParser.predefineItem`.
120
+ * @param ctx the parse tree
121
+ */
122
+ enterPredefineItem?: (ctx: PredefineItemContext) => void;
123
+ /**
124
+ * Exit a parse tree produced by `RuleParser.predefineItem`.
125
+ * @param ctx the parse tree
126
+ */
127
+ exitPredefineItem?: (ctx: PredefineItemContext) => void;
128
+ /**
129
+ * Enter a parse tree produced by `RuleParser.predefineVariableName`.
130
+ * @param ctx the parse tree
131
+ */
132
+ enterPredefineVariableName?: (ctx: PredefineVariableNameContext) => void;
133
+ /**
134
+ * Exit a parse tree produced by `RuleParser.predefineVariableName`.
135
+ * @param ctx the parse tree
136
+ */
137
+ exitPredefineVariableName?: (ctx: PredefineVariableNameContext) => void;
138
+ /**
139
+ * Enter a parse tree produced by `RuleParser.predefineAs`.
140
+ * @param ctx the parse tree
141
+ */
142
+ enterPredefineAs?: (ctx: PredefineAsContext) => void;
143
+ /**
144
+ * Exit a parse tree produced by `RuleParser.predefineAs`.
145
+ * @param ctx the parse tree
146
+ */
147
+ exitPredefineAs?: (ctx: PredefineAsContext) => void;
148
+ /**
149
+ * Enter a parse tree produced by `RuleParser.predefineValue`.
150
+ * @param ctx the parse tree
151
+ */
152
+ enterPredefineValue?: (ctx: PredefineValueContext) => void;
153
+ /**
154
+ * Exit a parse tree produced by `RuleParser.predefineValue`.
155
+ * @param ctx the parse tree
156
+ */
157
+ exitPredefineValue?: (ctx: PredefineValueContext) => void;
158
+ /**
159
+ * Enter a parse tree produced by `RuleParser.predefineConditionValue`.
160
+ * @param ctx the parse tree
161
+ */
162
+ enterPredefineConditionValue?: (ctx: PredefineConditionValueContext) => void;
163
+ /**
164
+ * Exit a parse tree produced by `RuleParser.predefineConditionValue`.
165
+ * @param ctx the parse tree
166
+ */
167
+ exitPredefineConditionValue?: (ctx: PredefineConditionValueContext) => void;
168
+ /**
169
+ * Enter a parse tree produced by `RuleParser.predefineObjectValue`.
170
+ * @param ctx the parse tree
171
+ */
172
+ enterPredefineObjectValue?: (ctx: PredefineObjectValueContext) => void;
173
+ /**
174
+ * Exit a parse tree produced by `RuleParser.predefineObjectValue`.
175
+ * @param ctx the parse tree
176
+ */
177
+ exitPredefineObjectValue?: (ctx: PredefineObjectValueContext) => void;
178
+ /**
179
+ * Enter a parse tree produced by `RuleParser.predefineSourceCondition`.
180
+ * @param ctx the parse tree
181
+ */
182
+ enterPredefineSourceCondition?: (ctx: PredefineSourceConditionContext) => void;
183
+ /**
184
+ * Exit a parse tree produced by `RuleParser.predefineSourceCondition`.
185
+ * @param ctx the parse tree
186
+ */
187
+ exitPredefineSourceCondition?: (ctx: PredefineSourceConditionContext) => void;
188
+ /**
189
+ * Enter a parse tree produced by `RuleParser.predefineObjectName`.
190
+ * @param ctx the parse tree
191
+ */
192
+ enterPredefineObjectName?: (ctx: PredefineObjectNameContext) => void;
193
+ /**
194
+ * Exit a parse tree produced by `RuleParser.predefineObjectName`.
195
+ * @param ctx the parse tree
196
+ */
197
+ exitPredefineObjectName?: (ctx: PredefineObjectNameContext) => void;
198
+ /**
199
+ * Enter a parse tree produced by `RuleParser.predefineSource`.
200
+ * @param ctx the parse tree
201
+ */
202
+ enterPredefineSource?: (ctx: PredefineSourceContext) => void;
203
+ /**
204
+ * Exit a parse tree produced by `RuleParser.predefineSource`.
205
+ * @param ctx the parse tree
206
+ */
207
+ exitPredefineSource?: (ctx: PredefineSourceContext) => void;
208
+ /**
209
+ * Enter a parse tree produced by `RuleParser.predefineSourceType`.
210
+ * @param ctx the parse tree
211
+ */
212
+ enterPredefineSourceType?: (ctx: PredefineSourceTypeContext) => void;
213
+ /**
214
+ * Exit a parse tree produced by `RuleParser.predefineSourceType`.
215
+ * @param ctx the parse tree
216
+ */
217
+ exitPredefineSourceType?: (ctx: PredefineSourceTypeContext) => void;
218
+ /**
219
+ * Enter a parse tree produced by `RuleParser.predefineType`.
220
+ * @param ctx the parse tree
221
+ */
222
+ enterPredefineType?: (ctx: PredefineTypeContext) => void;
223
+ /**
224
+ * Exit a parse tree produced by `RuleParser.predefineType`.
225
+ * @param ctx the parse tree
226
+ */
227
+ exitPredefineType?: (ctx: PredefineTypeContext) => void;
228
+ /**
229
+ * Enter a parse tree produced by `RuleParser.singleConditionExpression`.
230
+ * @param ctx the parse tree
231
+ */
232
+ enterSingleConditionExpression?: (ctx: SingleConditionExpressionContext) => void;
233
+ /**
234
+ * Exit a parse tree produced by `RuleParser.singleConditionExpression`.
235
+ * @param ctx the parse tree
236
+ */
237
+ exitSingleConditionExpression?: (ctx: SingleConditionExpressionContext) => void;
238
+ /**
239
+ * Enter a parse tree produced by `RuleParser.batchConditionsExpression`.
240
+ * @param ctx the parse tree
241
+ */
242
+ enterBatchConditionsExpression?: (ctx: BatchConditionsExpressionContext) => void;
243
+ /**
244
+ * Exit a parse tree produced by `RuleParser.batchConditionsExpression`.
245
+ * @param ctx the parse tree
246
+ */
247
+ exitBatchConditionsExpression?: (ctx: BatchConditionsExpressionContext) => void;
248
+ /**
249
+ * Enter a parse tree produced by `RuleParser.listCondition`.
250
+ * @param ctx the parse tree
251
+ */
252
+ enterListCondition?: (ctx: ListConditionContext) => void;
253
+ /**
254
+ * Exit a parse tree produced by `RuleParser.listCondition`.
255
+ * @param ctx the parse tree
256
+ */
257
+ exitListCondition?: (ctx: ListConditionContext) => void;
258
+ /**
259
+ * Enter a parse tree produced by the `method1`
260
+ * labeled alternative in `RuleParser.expression`.
261
+ * @param ctx the parse tree
262
+ */
263
+ enterMethod1?: (ctx: Method1Context) => void;
264
+ /**
265
+ * Exit a parse tree produced by the `method1`
266
+ * labeled alternative in `RuleParser.expression`.
267
+ * @param ctx the parse tree
268
+ */
269
+ exitMethod1?: (ctx: Method1Context) => void;
270
+ /**
271
+ * Enter a parse tree produced by the `method2`
272
+ * labeled alternative in `RuleParser.expression`.
273
+ * @param ctx the parse tree
274
+ */
275
+ enterMethod2?: (ctx: Method2Context) => void;
276
+ /**
277
+ * Exit a parse tree produced by the `method2`
278
+ * labeled alternative in `RuleParser.expression`.
279
+ * @param ctx the parse tree
280
+ */
281
+ exitMethod2?: (ctx: Method2Context) => void;
282
+ /**
283
+ * Enter a parse tree produced by the `method3`
284
+ * labeled alternative in `RuleParser.expression`.
285
+ * @param ctx the parse tree
286
+ */
287
+ enterMethod3?: (ctx: Method3Context) => void;
288
+ /**
289
+ * Exit a parse tree produced by the `method3`
290
+ * labeled alternative in `RuleParser.expression`.
291
+ * @param ctx the parse tree
292
+ */
293
+ exitMethod3?: (ctx: Method3Context) => void;
294
+ /**
295
+ * Enter a parse tree produced by the `batchConditions`
296
+ * labeled alternative in `RuleParser.expression`.
297
+ * @param ctx the parse tree
298
+ */
299
+ enterBatchConditions?: (ctx: BatchConditionsContext) => void;
300
+ /**
301
+ * Exit a parse tree produced by the `batchConditions`
302
+ * labeled alternative in `RuleParser.expression`.
303
+ * @param ctx the parse tree
304
+ */
305
+ exitBatchConditions?: (ctx: BatchConditionsContext) => void;
306
+ /**
307
+ * Enter a parse tree produced by the `multiplicative`
308
+ * labeled alternative in `RuleParser.expression`.
309
+ * @param ctx the parse tree
310
+ */
311
+ enterMultiplicative?: (ctx: MultiplicativeContext) => void;
312
+ /**
313
+ * Exit a parse tree produced by the `multiplicative`
314
+ * labeled alternative in `RuleParser.expression`.
315
+ * @param ctx the parse tree
316
+ */
317
+ exitMultiplicative?: (ctx: MultiplicativeContext) => void;
318
+ /**
319
+ * Enter a parse tree produced by the `basic`
320
+ * labeled alternative in `RuleParser.expression`.
321
+ * @param ctx the parse tree
322
+ */
323
+ enterBasic?: (ctx: BasicContext) => void;
324
+ /**
325
+ * Exit a parse tree produced by the `basic`
326
+ * labeled alternative in `RuleParser.expression`.
327
+ * @param ctx the parse tree
328
+ */
329
+ exitBasic?: (ctx: BasicContext) => void;
330
+ /**
331
+ * Enter a parse tree produced by the `additive`
332
+ * labeled alternative in `RuleParser.expression`.
333
+ * @param ctx the parse tree
334
+ */
335
+ enterAdditive?: (ctx: AdditiveContext) => void;
336
+ /**
337
+ * Exit a parse tree produced by the `additive`
338
+ * labeled alternative in `RuleParser.expression`.
339
+ * @param ctx the parse tree
340
+ */
341
+ exitAdditive?: (ctx: AdditiveContext) => void;
342
+ /**
343
+ * Enter a parse tree produced by `RuleParser.primary`.
344
+ * @param ctx the parse tree
345
+ */
346
+ enterPrimary?: (ctx: PrimaryContext) => void;
347
+ /**
348
+ * Exit a parse tree produced by `RuleParser.primary`.
349
+ * @param ctx the parse tree
350
+ */
351
+ exitPrimary?: (ctx: PrimaryContext) => void;
352
+ /**
353
+ * Enter a parse tree produced by `RuleParser.additiveOp`.
354
+ * @param ctx the parse tree
355
+ */
356
+ enterAdditiveOp?: (ctx: AdditiveOpContext) => void;
357
+ /**
358
+ * Exit a parse tree produced by `RuleParser.additiveOp`.
359
+ * @param ctx the parse tree
360
+ */
361
+ exitAdditiveOp?: (ctx: AdditiveOpContext) => void;
362
+ /**
363
+ * Enter a parse tree produced by `RuleParser.multiplicativeOp`.
364
+ * @param ctx the parse tree
365
+ */
366
+ enterMultiplicativeOp?: (ctx: MultiplicativeOpContext) => void;
367
+ /**
368
+ * Exit a parse tree produced by `RuleParser.multiplicativeOp`.
369
+ * @param ctx the parse tree
370
+ */
371
+ exitMultiplicativeOp?: (ctx: MultiplicativeOpContext) => void;
372
+ /**
373
+ * Enter a parse tree produced by `RuleParser.currentLoopItem`.
374
+ * @param ctx the parse tree
375
+ */
376
+ enterCurrentLoopItem?: (ctx: CurrentLoopItemContext) => void;
377
+ /**
378
+ * Exit a parse tree produced by `RuleParser.currentLoopItem`.
379
+ * @param ctx the parse tree
380
+ */
381
+ exitCurrentLoopItem?: (ctx: CurrentLoopItemContext) => void;
382
+ /**
383
+ * Enter a parse tree produced by `RuleParser.object`.
384
+ * @param ctx the parse tree
385
+ */
386
+ enterObject?: (ctx: ObjectContext) => void;
387
+ /**
388
+ * Exit a parse tree produced by `RuleParser.object`.
389
+ * @param ctx the parse tree
390
+ */
391
+ exitObject?: (ctx: ObjectContext) => void;
392
+ /**
393
+ * Enter a parse tree produced by `RuleParser.variable`.
394
+ * @param ctx the parse tree
395
+ */
396
+ enterVariable?: (ctx: VariableContext) => void;
397
+ /**
398
+ * Exit a parse tree produced by `RuleParser.variable`.
399
+ * @param ctx the parse tree
400
+ */
401
+ exitVariable?: (ctx: VariableContext) => void;
402
+ /**
403
+ * Enter a parse tree produced by `RuleParser.enum`.
404
+ * @param ctx the parse tree
405
+ */
406
+ enterEnum?: (ctx: EnumContext) => void;
407
+ /**
408
+ * Exit a parse tree produced by `RuleParser.enum`.
409
+ * @param ctx the parse tree
410
+ */
411
+ exitEnum?: (ctx: EnumContext) => void;
412
+ /**
413
+ * Enter a parse tree produced by `RuleParser.literal`.
414
+ * @param ctx the parse tree
415
+ */
416
+ enterLiteral?: (ctx: LiteralContext) => void;
417
+ /**
418
+ * Exit a parse tree produced by `RuleParser.literal`.
419
+ * @param ctx the parse tree
420
+ */
421
+ exitLiteral?: (ctx: LiteralContext) => void;
422
+ /**
423
+ * Enter a parse tree produced by `RuleParser.others`.
424
+ * @param ctx the parse tree
425
+ */
426
+ enterOthers?: (ctx: OthersContext) => void;
427
+ /**
428
+ * Exit a parse tree produced by `RuleParser.others`.
429
+ * @param ctx the parse tree
430
+ */
431
+ exitOthers?: (ctx: OthersContext) => void;
432
+ visitTerminal(node: TerminalNode): void;
433
+ visitErrorNode(node: ErrorNode): void;
434
+ enterEveryRule(node: ParserRuleContext): void;
435
+ exitEveryRule(node: ParserRuleContext): void;
436
+ }
@@ -0,0 +1,264 @@
1
+ import { AbstractParseTreeVisitor } from 'antlr4ng';
2
+ import { RuleStatementContext, DocumentationContext, ValueContext, ElseStatementContext, ThenStatementContext, IfStatementContext, ActionsContext, SingleActionContext, ActionContext, PreconditionContext, PredefineStatementContext, PredefineItemContext, PredefineVariableNameContext, PredefineAsContext, PredefineValueContext, PredefineConditionValueContext, PredefineObjectValueContext, PredefineSourceConditionContext, PredefineObjectNameContext, PredefineSourceContext, PredefineSourceTypeContext, PredefineTypeContext, SingleConditionExpressionContext, BatchConditionsExpressionContext, ListConditionContext, Method1Context, Method2Context, Method3Context, BatchConditionsContext, MultiplicativeContext, BasicContext, AdditiveContext, PrimaryContext, AdditiveOpContext, MultiplicativeOpContext, CurrentLoopItemContext, ObjectContext, VariableContext, EnumContext, LiteralContext, OthersContext } from './RuleParser.js';
3
+ /**
4
+ * This interface defines a complete generic visitor for a parse tree produced
5
+ * by `RuleParser`.
6
+ *
7
+ * @param <Result> The return type of the visit operation. Use `void` for
8
+ * operations with no return type.
9
+ */
10
+ export declare class RuleParserVisitor<Result> extends AbstractParseTreeVisitor<Result> {
11
+ /**
12
+ * Visit a parse tree produced by `RuleParser.ruleStatement`.
13
+ * @param ctx the parse tree
14
+ * @return the visitor result
15
+ */
16
+ visitRuleStatement?: (ctx: RuleStatementContext) => Result;
17
+ /**
18
+ * Visit a parse tree produced by `RuleParser.documentation`.
19
+ * @param ctx the parse tree
20
+ * @return the visitor result
21
+ */
22
+ visitDocumentation?: (ctx: DocumentationContext) => Result;
23
+ /**
24
+ * Visit a parse tree produced by `RuleParser.value`.
25
+ * @param ctx the parse tree
26
+ * @return the visitor result
27
+ */
28
+ visitValue?: (ctx: ValueContext) => Result;
29
+ /**
30
+ * Visit a parse tree produced by `RuleParser.elseStatement`.
31
+ * @param ctx the parse tree
32
+ * @return the visitor result
33
+ */
34
+ visitElseStatement?: (ctx: ElseStatementContext) => Result;
35
+ /**
36
+ * Visit a parse tree produced by `RuleParser.thenStatement`.
37
+ * @param ctx the parse tree
38
+ * @return the visitor result
39
+ */
40
+ visitThenStatement?: (ctx: ThenStatementContext) => Result;
41
+ /**
42
+ * Visit a parse tree produced by `RuleParser.ifStatement`.
43
+ * @param ctx the parse tree
44
+ * @return the visitor result
45
+ */
46
+ visitIfStatement?: (ctx: IfStatementContext) => Result;
47
+ /**
48
+ * Visit a parse tree produced by `RuleParser.actions`.
49
+ * @param ctx the parse tree
50
+ * @return the visitor result
51
+ */
52
+ visitActions?: (ctx: ActionsContext) => Result;
53
+ /**
54
+ * Visit a parse tree produced by `RuleParser.singleAction`.
55
+ * @param ctx the parse tree
56
+ * @return the visitor result
57
+ */
58
+ visitSingleAction?: (ctx: SingleActionContext) => Result;
59
+ /**
60
+ * Visit a parse tree produced by `RuleParser.action`.
61
+ * @param ctx the parse tree
62
+ * @return the visitor result
63
+ */
64
+ visitAction?: (ctx: ActionContext) => Result;
65
+ /**
66
+ * Visit a parse tree produced by `RuleParser.precondition`.
67
+ * @param ctx the parse tree
68
+ * @return the visitor result
69
+ */
70
+ visitPrecondition?: (ctx: PreconditionContext) => Result;
71
+ /**
72
+ * Visit a parse tree produced by `RuleParser.predefineStatement`.
73
+ * @param ctx the parse tree
74
+ * @return the visitor result
75
+ */
76
+ visitPredefineStatement?: (ctx: PredefineStatementContext) => Result;
77
+ /**
78
+ * Visit a parse tree produced by `RuleParser.predefineItem`.
79
+ * @param ctx the parse tree
80
+ * @return the visitor result
81
+ */
82
+ visitPredefineItem?: (ctx: PredefineItemContext) => Result;
83
+ /**
84
+ * Visit a parse tree produced by `RuleParser.predefineVariableName`.
85
+ * @param ctx the parse tree
86
+ * @return the visitor result
87
+ */
88
+ visitPredefineVariableName?: (ctx: PredefineVariableNameContext) => Result;
89
+ /**
90
+ * Visit a parse tree produced by `RuleParser.predefineAs`.
91
+ * @param ctx the parse tree
92
+ * @return the visitor result
93
+ */
94
+ visitPredefineAs?: (ctx: PredefineAsContext) => Result;
95
+ /**
96
+ * Visit a parse tree produced by `RuleParser.predefineValue`.
97
+ * @param ctx the parse tree
98
+ * @return the visitor result
99
+ */
100
+ visitPredefineValue?: (ctx: PredefineValueContext) => Result;
101
+ /**
102
+ * Visit a parse tree produced by `RuleParser.predefineConditionValue`.
103
+ * @param ctx the parse tree
104
+ * @return the visitor result
105
+ */
106
+ visitPredefineConditionValue?: (ctx: PredefineConditionValueContext) => Result;
107
+ /**
108
+ * Visit a parse tree produced by `RuleParser.predefineObjectValue`.
109
+ * @param ctx the parse tree
110
+ * @return the visitor result
111
+ */
112
+ visitPredefineObjectValue?: (ctx: PredefineObjectValueContext) => Result;
113
+ /**
114
+ * Visit a parse tree produced by `RuleParser.predefineSourceCondition`.
115
+ * @param ctx the parse tree
116
+ * @return the visitor result
117
+ */
118
+ visitPredefineSourceCondition?: (ctx: PredefineSourceConditionContext) => Result;
119
+ /**
120
+ * Visit a parse tree produced by `RuleParser.predefineObjectName`.
121
+ * @param ctx the parse tree
122
+ * @return the visitor result
123
+ */
124
+ visitPredefineObjectName?: (ctx: PredefineObjectNameContext) => Result;
125
+ /**
126
+ * Visit a parse tree produced by `RuleParser.predefineSource`.
127
+ * @param ctx the parse tree
128
+ * @return the visitor result
129
+ */
130
+ visitPredefineSource?: (ctx: PredefineSourceContext) => Result;
131
+ /**
132
+ * Visit a parse tree produced by `RuleParser.predefineSourceType`.
133
+ * @param ctx the parse tree
134
+ * @return the visitor result
135
+ */
136
+ visitPredefineSourceType?: (ctx: PredefineSourceTypeContext) => Result;
137
+ /**
138
+ * Visit a parse tree produced by `RuleParser.predefineType`.
139
+ * @param ctx the parse tree
140
+ * @return the visitor result
141
+ */
142
+ visitPredefineType?: (ctx: PredefineTypeContext) => Result;
143
+ /**
144
+ * Visit a parse tree produced by `RuleParser.singleConditionExpression`.
145
+ * @param ctx the parse tree
146
+ * @return the visitor result
147
+ */
148
+ visitSingleConditionExpression?: (ctx: SingleConditionExpressionContext) => Result;
149
+ /**
150
+ * Visit a parse tree produced by `RuleParser.batchConditionsExpression`.
151
+ * @param ctx the parse tree
152
+ * @return the visitor result
153
+ */
154
+ visitBatchConditionsExpression?: (ctx: BatchConditionsExpressionContext) => Result;
155
+ /**
156
+ * Visit a parse tree produced by `RuleParser.listCondition`.
157
+ * @param ctx the parse tree
158
+ * @return the visitor result
159
+ */
160
+ visitListCondition?: (ctx: ListConditionContext) => Result;
161
+ /**
162
+ * Visit a parse tree produced by the `method1`
163
+ * labeled alternative in `RuleParser.expression`.
164
+ * @param ctx the parse tree
165
+ * @return the visitor result
166
+ */
167
+ visitMethod1?: (ctx: Method1Context) => Result;
168
+ /**
169
+ * Visit a parse tree produced by the `method2`
170
+ * labeled alternative in `RuleParser.expression`.
171
+ * @param ctx the parse tree
172
+ * @return the visitor result
173
+ */
174
+ visitMethod2?: (ctx: Method2Context) => Result;
175
+ /**
176
+ * Visit a parse tree produced by the `method3`
177
+ * labeled alternative in `RuleParser.expression`.
178
+ * @param ctx the parse tree
179
+ * @return the visitor result
180
+ */
181
+ visitMethod3?: (ctx: Method3Context) => Result;
182
+ /**
183
+ * Visit a parse tree produced by the `batchConditions`
184
+ * labeled alternative in `RuleParser.expression`.
185
+ * @param ctx the parse tree
186
+ * @return the visitor result
187
+ */
188
+ visitBatchConditions?: (ctx: BatchConditionsContext) => Result;
189
+ /**
190
+ * Visit a parse tree produced by the `multiplicative`
191
+ * labeled alternative in `RuleParser.expression`.
192
+ * @param ctx the parse tree
193
+ * @return the visitor result
194
+ */
195
+ visitMultiplicative?: (ctx: MultiplicativeContext) => Result;
196
+ /**
197
+ * Visit a parse tree produced by the `basic`
198
+ * labeled alternative in `RuleParser.expression`.
199
+ * @param ctx the parse tree
200
+ * @return the visitor result
201
+ */
202
+ visitBasic?: (ctx: BasicContext) => Result;
203
+ /**
204
+ * Visit a parse tree produced by the `additive`
205
+ * labeled alternative in `RuleParser.expression`.
206
+ * @param ctx the parse tree
207
+ * @return the visitor result
208
+ */
209
+ visitAdditive?: (ctx: AdditiveContext) => Result;
210
+ /**
211
+ * Visit a parse tree produced by `RuleParser.primary`.
212
+ * @param ctx the parse tree
213
+ * @return the visitor result
214
+ */
215
+ visitPrimary?: (ctx: PrimaryContext) => Result;
216
+ /**
217
+ * Visit a parse tree produced by `RuleParser.additiveOp`.
218
+ * @param ctx the parse tree
219
+ * @return the visitor result
220
+ */
221
+ visitAdditiveOp?: (ctx: AdditiveOpContext) => Result;
222
+ /**
223
+ * Visit a parse tree produced by `RuleParser.multiplicativeOp`.
224
+ * @param ctx the parse tree
225
+ * @return the visitor result
226
+ */
227
+ visitMultiplicativeOp?: (ctx: MultiplicativeOpContext) => Result;
228
+ /**
229
+ * Visit a parse tree produced by `RuleParser.currentLoopItem`.
230
+ * @param ctx the parse tree
231
+ * @return the visitor result
232
+ */
233
+ visitCurrentLoopItem?: (ctx: CurrentLoopItemContext) => Result;
234
+ /**
235
+ * Visit a parse tree produced by `RuleParser.object`.
236
+ * @param ctx the parse tree
237
+ * @return the visitor result
238
+ */
239
+ visitObject?: (ctx: ObjectContext) => Result;
240
+ /**
241
+ * Visit a parse tree produced by `RuleParser.variable`.
242
+ * @param ctx the parse tree
243
+ * @return the visitor result
244
+ */
245
+ visitVariable?: (ctx: VariableContext) => Result;
246
+ /**
247
+ * Visit a parse tree produced by `RuleParser.enum`.
248
+ * @param ctx the parse tree
249
+ * @return the visitor result
250
+ */
251
+ visitEnum?: (ctx: EnumContext) => Result;
252
+ /**
253
+ * Visit a parse tree produced by `RuleParser.literal`.
254
+ * @param ctx the parse tree
255
+ * @return the visitor result
256
+ */
257
+ visitLiteral?: (ctx: LiteralContext) => Result;
258
+ /**
259
+ * Visit a parse tree produced by `RuleParser.others`.
260
+ * @param ctx the parse tree
261
+ * @return the visitor result
262
+ */
263
+ visitOthers?: (ctx: OthersContext) => Result;
264
+ }