javonet-nodejs-sdk 2.5.15 → 2.5.17

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 (2047) hide show
  1. package/dist/core/delegatesCache/DelegatesCache.cjs +55 -0
  2. package/dist/core/handler/AbstractHandler.cjs +60 -0
  3. package/dist/core/handler/ArrayGetItemHandler.cjs +59 -0
  4. package/dist/core/handler/ArrayGetRankHandler.cjs +50 -0
  5. package/dist/core/handler/ArrayGetSizeHandler.cjs +50 -0
  6. package/dist/core/handler/ArrayHandler.cjs +41 -0
  7. package/dist/core/handler/ArraySetItemHandler.cjs +60 -0
  8. package/dist/core/handler/CastingHandler.cjs +34 -0
  9. package/dist/core/handler/ConvertTypeHandler.cjs +53 -0
  10. package/dist/core/handler/CreateClassInstanceHandler.cjs +60 -0
  11. package/dist/core/handler/DestructReferenceHandler.cjs +42 -0
  12. package/dist/core/handler/EnableNamespaceHandler.cjs +56 -0
  13. package/dist/core/handler/EnableTypeHandler.cjs +56 -0
  14. package/dist/core/handler/GetGlobalStaticFieldHandler.cjs +60 -0
  15. package/dist/core/handler/GetInstanceFieldHandler.cjs +59 -0
  16. package/dist/core/handler/GetInstanceMethodAsDelegateHandler.cjs +83 -0
  17. package/dist/core/handler/GetStaticFieldHandler.cjs +59 -0
  18. package/dist/core/handler/GetStaticMethodAsDelegateHandler.cjs +83 -0
  19. package/dist/core/handler/GetTypeHandler.cjs +87 -0
  20. package/dist/core/handler/Handler.cjs +136 -0
  21. package/dist/core/handler/InvokeDelegateHandler.cjs +53 -0
  22. package/dist/core/handler/InvokeGlobalFunctionHandler.cjs +60 -0
  23. package/dist/core/handler/InvokeInstanceMethodHandler.cjs +62 -0
  24. package/dist/core/handler/InvokeStaticMethodHandler.cjs +62 -0
  25. package/dist/core/handler/LoadLibraryHandler.cjs +68 -0
  26. package/dist/core/handler/PassDelegateHandler.cjs +162 -0
  27. package/dist/core/handler/ResolveReferenceHandler.cjs +41 -0
  28. package/dist/core/handler/SetGlobalStaticFieldHandler.cjs +61 -0
  29. package/dist/core/handler/SetInstanceFieldHandler.cjs +59 -0
  30. package/dist/core/handler/SetStaticFieldHandler.cjs +57 -0
  31. package/dist/core/handler/ValueHandler.cjs +37 -0
  32. package/dist/core/interpreter/Interpreter.cjs +159 -0
  33. package/dist/core/namespaceCache/NamespaceCache.cjs +58 -0
  34. package/dist/core/protocol/CommandDeserializer.cjs +188 -0
  35. package/dist/core/protocol/CommandSerializer.cjs +64 -0
  36. package/dist/core/protocol/TypeDeserializer.cjs +91 -0
  37. package/dist/core/protocol/TypeSerializer.cjs +153 -0
  38. package/dist/core/receiver/Receiver.cjs +63 -0
  39. package/dist/core/receiver/ReceiverNative.cjs +37 -0
  40. package/dist/core/referenceCache/ReferencesCache.cjs +65 -0
  41. package/dist/core/transmitter/Transmitter.cjs +42 -0
  42. package/dist/core/transmitter/TransmitterWebsocket.cjs +55 -0
  43. package/dist/core/transmitter/TransmitterWebsocketBrowser.cjs +59 -0
  44. package/dist/core/transmitter/TransmitterWrapper.cjs +75 -0
  45. package/dist/core/typeCache/TypeCache.cjs +58 -0
  46. package/dist/core/webSocketClient/WebSocketClient.cjs +150 -0
  47. package/dist/core/webSocketClient/WebSocketClientBrowser.cjs +153 -0
  48. package/dist/sdk/ConfigRuntimeFactory.cjs +198 -0
  49. package/dist/sdk/InvocationContext.cjs +463 -0
  50. package/dist/sdk/Javonet.cjs +150 -0
  51. package/dist/sdk/RuntimeContext.cjs +288 -0
  52. package/dist/sdk/RuntimeFactory.cjs +98 -0
  53. package/dist/sdk/tools/browser/ConfigSourceResolver.cjs +153 -0
  54. package/dist/sdk/tools/browser/SdkExceptionHelper.cjs +37 -0
  55. package/dist/sdk/tools/nodejs/JsonFileResolver.cjs +120 -0
  56. package/dist/sdk/tools/nodejs/SdkExceptionHelper.cjs +100 -0
  57. package/dist/types/core/delegatesCache/DelegatesCache.d.ts +21 -0
  58. package/dist/types/core/handler/AbstractHandler.d.ts +7 -0
  59. package/dist/types/core/handler/ArrayGetItemHandler.d.ts +5 -0
  60. package/dist/types/core/handler/ArrayGetRankHandler.d.ts +5 -0
  61. package/dist/types/core/handler/ArrayGetSizeHandler.d.ts +5 -0
  62. package/dist/types/core/handler/ArrayHandler.d.ts +4 -0
  63. package/dist/types/core/handler/ArraySetItemHandler.d.ts +5 -0
  64. package/dist/types/core/handler/CastingHandler.d.ts +3 -0
  65. package/dist/types/core/handler/ConvertTypeHandler.d.ts +22 -0
  66. package/dist/types/core/handler/CreateClassInstanceHandler.d.ts +5 -0
  67. package/dist/types/core/handler/DestructReferenceHandler.d.ts +4 -0
  68. package/dist/types/core/handler/EnableNamespaceHandler.d.ts +5 -0
  69. package/dist/types/core/handler/EnableTypeHandler.d.ts +5 -0
  70. package/dist/types/core/handler/GetGlobalStaticFieldHandler.d.ts +5 -0
  71. package/dist/types/core/handler/GetInstanceFieldHandler.d.ts +5 -0
  72. package/dist/types/core/handler/GetInstanceMethodAsDelegateHandler.d.ts +38 -0
  73. package/dist/types/core/handler/GetStaticFieldHandler.d.ts +5 -0
  74. package/dist/types/core/handler/GetStaticMethodAsDelegateHandler.d.ts +36 -0
  75. package/dist/types/core/handler/GetTypeHandler.d.ts +16 -0
  76. package/dist/types/core/handler/Handler.d.ts +27 -0
  77. package/dist/types/core/handler/InvokeDelegateHandler.d.ts +15 -0
  78. package/dist/types/core/handler/InvokeGlobalFunctionHandler.d.ts +5 -0
  79. package/dist/types/core/handler/InvokeInstanceMethodHandler.d.ts +5 -0
  80. package/dist/types/core/handler/InvokeStaticMethodHandler.d.ts +5 -0
  81. package/dist/types/core/handler/LoadLibraryHandler.d.ts +7 -0
  82. package/dist/types/core/handler/PassDelegateHandler.d.ts +104 -0
  83. package/dist/types/core/handler/ResolveReferenceHandler.d.ts +12 -0
  84. package/dist/types/core/handler/SetGlobalStaticFieldHandler.d.ts +4 -0
  85. package/dist/types/core/handler/SetInstanceFieldHandler.d.ts +5 -0
  86. package/dist/types/core/handler/SetStaticFieldHandler.d.ts +5 -0
  87. package/dist/types/core/handler/ValueHandler.d.ts +4 -0
  88. package/dist/types/core/interpreter/Interpreter.d.ts +27 -0
  89. package/dist/types/core/namespaceCache/NamespaceCache.d.ts +9 -0
  90. package/dist/types/core/protocol/CommandDeserializer.d.ts +25 -0
  91. package/dist/types/core/protocol/CommandSerializer.d.ts +4 -0
  92. package/dist/types/core/protocol/TypeDeserializer.d.ts +15 -0
  93. package/dist/types/core/protocol/TypeSerializer.d.ts +17 -0
  94. package/dist/types/core/receiver/Receiver.d.ts +14 -0
  95. package/dist/types/core/receiver/ReceiverNative.d.ts +4 -0
  96. package/dist/types/core/referenceCache/ReferencesCache.d.ts +24 -0
  97. package/dist/types/core/transmitter/Transmitter.d.ts +6 -0
  98. package/dist/types/core/transmitter/TransmitterWebsocket.d.ts +21 -0
  99. package/dist/types/core/transmitter/TransmitterWebsocketBrowser.d.ts +30 -0
  100. package/dist/types/core/transmitter/TransmitterWrapper.d.ts +11 -0
  101. package/dist/types/core/typeCache/TypeCache.d.ts +9 -0
  102. package/dist/types/core/webSocketClient/WebSocketClient.d.ts +50 -0
  103. package/dist/types/core/webSocketClient/WebSocketClientBrowser.d.ts +63 -0
  104. package/dist/types/sdk/ConfigRuntimeFactory.d.ts +73 -0
  105. package/dist/types/sdk/InvocationContext.d.ts +207 -0
  106. package/dist/types/sdk/Javonet.d.ts +63 -0
  107. package/dist/types/sdk/RuntimeContext.d.ts +103 -0
  108. package/dist/types/sdk/RuntimeFactory.d.ts +58 -0
  109. package/dist/types/sdk/tools/browser/ConfigSourceResolver.d.ts +46 -0
  110. package/dist/types/sdk/tools/browser/SdkExceptionHelper.d.ts +7 -0
  111. package/dist/types/sdk/tools/nodejs/JsonFileResolver.d.ts +13 -0
  112. package/dist/types/sdk/tools/nodejs/SdkExceptionHelper.d.ts +6 -0
  113. package/dist/types/utils/Command.d.ts +42 -0
  114. package/dist/types/utils/CommandType.d.ts +44 -0
  115. package/dist/types/utils/ConnectionType.d.ts +5 -0
  116. package/dist/types/utils/CreateRequire.browser.d.ts +1 -0
  117. package/dist/types/utils/CreateRequire.node.d.ts +2 -0
  118. package/dist/types/utils/CustomError.d.ts +3 -0
  119. package/dist/types/utils/ExceptionType.d.ts +10 -0
  120. package/dist/types/utils/Runtime.d.ts +24 -0
  121. package/dist/types/utils/RuntimeLogger.d.ts +5 -0
  122. package/dist/types/utils/RuntimeLoggerBrowser.d.ts +15 -0
  123. package/dist/types/utils/RuntimeName.d.ts +13 -0
  124. package/dist/types/utils/RuntimeNameHandler.d.ts +7 -0
  125. package/dist/types/utils/StringEncodingMode.d.ts +6 -0
  126. package/dist/types/utils/Type.d.ts +14 -0
  127. package/dist/types/utils/connectionData/IConnectionData.d.ts +5 -0
  128. package/dist/types/utils/connectionData/InMemoryConnectionData.d.ts +16 -0
  129. package/dist/types/utils/connectionData/WsConnectionData.d.ts +31 -0
  130. package/dist/types/utils/exception/ExceptionSerializer.d.ts +6 -0
  131. package/dist/types/utils/exception/ExceptionThrower.d.ts +4 -0
  132. package/dist/types/utils/guid/generateGuid.d.ts +1 -0
  133. package/dist/types/utils/nodejs/TypesConverter.d.ts +48 -0
  134. package/dist/types/utils/nodejs/connectionData/TcpConnectionData.d.ts +25 -0
  135. package/dist/types/utils/nodejs/uuid/REGEX.d.ts +1 -0
  136. package/dist/types/utils/nodejs/uuid/rng.d.ts +1 -0
  137. package/dist/types/utils/nodejs/uuid/stringify.d.ts +1 -0
  138. package/dist/types/utils/nodejs/uuid/v4.d.ts +1 -0
  139. package/dist/types/utils/nodejs/uuid/validate.d.ts +1 -0
  140. package/dist/utils/Command.cjs +87 -0
  141. package/dist/utils/CommandType.cjs +74 -0
  142. package/dist/utils/ConnectionType.cjs +35 -0
  143. package/dist/utils/CreateRequire.browser.cjs +30 -0
  144. package/dist/utils/CreateRequire.node.cjs +28 -0
  145. package/dist/utils/CustomError.cjs +33 -0
  146. package/dist/utils/ExceptionType.cjs +40 -0
  147. package/dist/utils/Runtime.cjs +109 -0
  148. package/dist/utils/RuntimeLogger.cjs +61 -0
  149. package/dist/utils/RuntimeLoggerBrowser.cjs +56 -0
  150. package/dist/utils/RuntimeName.cjs +43 -0
  151. package/dist/utils/RuntimeNameHandler.cjs +62 -0
  152. package/dist/utils/StringEncodingMode.cjs +36 -0
  153. package/dist/utils/Type.cjs +44 -0
  154. package/dist/utils/connectionData/IConnectionData.cjs +38 -0
  155. package/dist/utils/connectionData/InMemoryConnectionData.cjs +52 -0
  156. package/dist/utils/connectionData/WsConnectionData.cjs +61 -0
  157. package/dist/utils/exception/ExceptionSerializer.cjs +82 -0
  158. package/dist/utils/exception/ExceptionThrower.cjs +111 -0
  159. package/dist/utils/guid/generateGuid.cjs +34 -0
  160. package/dist/utils/nodejs/TypesConverter.cjs +102 -0
  161. package/dist/utils/nodejs/connectionData/TcpConnectionData.cjs +101 -0
  162. package/dist/utils/nodejs/uuid/REGEX.cjs +28 -0
  163. package/dist/utils/nodejs/uuid/rng.cjs +47 -0
  164. package/dist/utils/nodejs/uuid/stringify.cjs +39 -0
  165. package/dist/utils/nodejs/uuid/v4.cjs +43 -0
  166. package/dist/utils/nodejs/uuid/validate.cjs +31 -0
  167. package/lib/core/delegatesCache/DelegatesCache.js +37 -0
  168. package/lib/core/handler/AbstractHandler.js +2 -2
  169. package/lib/core/handler/ArrayGetItemHandler.js +2 -2
  170. package/lib/core/handler/ArrayGetRankHandler.js +2 -2
  171. package/lib/core/handler/ArrayGetSizeHandler.js +2 -2
  172. package/lib/core/handler/ArrayHandler.js +2 -2
  173. package/lib/core/handler/ArraySetItemHandler.js +2 -2
  174. package/lib/core/handler/CastingHandler.js +2 -2
  175. package/lib/core/handler/ConvertTypeHandler.js +3 -3
  176. package/lib/core/handler/CreateClassInstanceHandler.js +4 -2
  177. package/lib/core/handler/DestructReferenceHandler.js +3 -3
  178. package/lib/core/handler/EnableNamespaceHandler.js +3 -3
  179. package/lib/core/handler/EnableTypeHandler.js +3 -3
  180. package/lib/core/handler/GetGlobalStaticFieldHandler.js +2 -2
  181. package/lib/core/handler/GetInstanceFieldHandler.js +2 -2
  182. package/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +2 -2
  183. package/lib/core/handler/GetStaticFieldHandler.js +3 -2
  184. package/lib/core/handler/GetStaticMethodAsDelegateHandler.js +2 -3
  185. package/lib/core/handler/GetTypeHandler.js +16 -7
  186. package/lib/core/handler/Handler.js +91 -60
  187. package/lib/core/handler/InvokeDelegateHandler.js +4 -4
  188. package/lib/core/handler/InvokeGlobalFunctionHandler.js +3 -5
  189. package/lib/core/handler/InvokeInstanceMethodHandler.js +2 -2
  190. package/lib/core/handler/InvokeStaticMethodHandler.js +2 -2
  191. package/lib/core/handler/LoadLibraryHandler.js +7 -4
  192. package/lib/core/handler/PassDelegateHandler.js +38 -24
  193. package/lib/core/handler/ResolveReferenceHandler.js +13 -3
  194. package/lib/core/handler/SetGlobalStaticFieldHandler.js +2 -2
  195. package/lib/core/handler/SetInstanceFieldHandler.js +2 -2
  196. package/lib/core/handler/SetStaticFieldHandler.js +2 -2
  197. package/lib/core/handler/ValueHandler.js +2 -2
  198. package/lib/core/interpreter/Interpreter.js +164 -0
  199. package/lib/core/namespaceCache/NamespaceCache.js +1 -1
  200. package/lib/core/protocol/CommandDeserializer.js +180 -0
  201. package/lib/core/protocol/CommandSerializer.js +48 -0
  202. package/lib/core/protocol/TypeDeserializer.js +81 -0
  203. package/lib/core/protocol/TypeSerializer.js +143 -0
  204. package/lib/core/receiver/Receiver.js +17 -8
  205. package/lib/core/receiver/ReceiverNative.js +2 -2
  206. package/lib/core/referenceCache/ReferencesCache.js +27 -4
  207. package/lib/core/transmitter/Transmitter.js +6 -8
  208. package/lib/core/transmitter/TransmitterWebsocket.js +2 -6
  209. package/lib/core/transmitter/TransmitterWebsocketBrowser.js +39 -0
  210. package/lib/core/transmitter/TransmitterWrapper.js +26 -13
  211. package/lib/core/typeCache/TypeCache.js +1 -1
  212. package/lib/core/webSocketClient/WebSocketClient.js +56 -24
  213. package/lib/core/webSocketClient/WebSocketClientBrowser.js +174 -0
  214. package/lib/declarations.d.ts +35 -0
  215. package/lib/sdk/ConfigRuntimeFactory.js +108 -58
  216. package/lib/sdk/InvocationContext.js +487 -0
  217. package/lib/sdk/Javonet.js +63 -29
  218. package/lib/sdk/RuntimeContext.js +289 -0
  219. package/lib/sdk/RuntimeFactory.js +12 -5
  220. package/lib/sdk/tools/browser/ConfigSourceResolver.js +146 -0
  221. package/lib/sdk/tools/browser/SdkExceptionHelper.js +20 -0
  222. package/lib/sdk/tools/nodejs/JsonFileResolver.js +106 -0
  223. package/lib/sdk/tools/nodejs/SdkExceptionHelper.js +89 -0
  224. package/lib/utils/Command.js +67 -0
  225. package/lib/utils/CommandType.js +45 -0
  226. package/lib/utils/ConnectionType.js +6 -0
  227. package/lib/utils/CreateRequire.browser.js +5 -0
  228. package/lib/utils/CreateRequire.node.js +3 -0
  229. package/lib/utils/CustomError.js +6 -0
  230. package/lib/utils/ExceptionType.js +13 -0
  231. package/lib/utils/Runtime.js +113 -0
  232. package/lib/utils/RuntimeLogger.js +19 -9
  233. package/lib/utils/RuntimeLoggerBrowser.js +35 -0
  234. package/lib/utils/RuntimeName.js +14 -0
  235. package/lib/utils/RuntimeNameHandler.js +38 -0
  236. package/lib/utils/StringEncodingMode.js +7 -0
  237. package/lib/utils/Type.js +15 -0
  238. package/lib/utils/connectionData/IConnectionData.js +13 -0
  239. package/lib/utils/connectionData/InMemoryConnectionData.js +35 -0
  240. package/lib/utils/connectionData/WsConnectionData.js +48 -0
  241. package/lib/utils/exception/ExceptionSerializer.js +64 -0
  242. package/lib/utils/exception/ExceptionThrower.js +96 -0
  243. package/lib/utils/guid/generateGuid.js +9 -0
  244. package/lib/utils/nodejs/TypesConverter.js +91 -0
  245. package/lib/utils/nodejs/connectionData/TcpConnectionData.js +89 -0
  246. package/lib/utils/nodejs/uuid/REGEX.js +2 -0
  247. package/lib/utils/nodejs/uuid/rng.js +23 -0
  248. package/lib/utils/nodejs/uuid/stringify.js +51 -0
  249. package/lib/utils/nodejs/uuid/v4.js +26 -0
  250. package/lib/utils/nodejs/uuid/validate.js +7 -0
  251. package/package.json +68 -47
  252. package/Binaries/Clr/Javonet.Clr.Utils.dll +0 -0
  253. package/Binaries/Clr/JavonetClrRuntime.dll +0 -0
  254. package/Binaries/Jvm/JavonetJvmRuntime.jar +0 -0
  255. package/Binaries/Native/Linux/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  256. package/Binaries/Native/Linux/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  257. package/Binaries/Native/Linux/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  258. package/Binaries/Native/Linux/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  259. package/Binaries/Native/Linux/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  260. package/Binaries/Native/Linux/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  261. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  262. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  263. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  264. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  265. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  266. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  267. package/Binaries/Native/Linux/ARM64/libJavonetActivationService.so +0 -0
  268. package/Binaries/Native/Linux/ARM64/libJavonetCppRuntimeNative.so +0 -0
  269. package/Binaries/Native/Linux/ARM64/libJavonetGoRuntimeNative.so +0 -0
  270. package/Binaries/Native/Linux/ARM64/libJavonetJvmRuntimeNative.so +0 -0
  271. package/Binaries/Native/Linux/ARM64/libJavonetNetcoreRuntimeNative.so +0 -0
  272. package/Binaries/Native/Linux/ARM64/libJavonetPhpRuntimeNative.so +0 -0
  273. package/Binaries/Native/Linux/ARM64/libJavonetPythonRuntimeNative.so +0 -0
  274. package/Binaries/Native/Linux/ARM64/libJavonetRuby342RuntimeNative.so +0 -0
  275. package/Binaries/Native/Linux/ARM64/libJavonetRubyRuntimeNative.so +0 -0
  276. package/Binaries/Native/Linux/ARM64/libJavonetTcpClient.so +0 -0
  277. package/Binaries/Native/Linux/ARM64/libJavonetTcpTlsClient.so +0 -0
  278. package/Binaries/Native/Linux/ARM64/libUtils.so +0 -0
  279. package/Binaries/Native/Linux/ARM64/libnethost.so +0 -0
  280. package/Binaries/Native/Linux/ARM64/version.txt +0 -1
  281. package/Binaries/Native/Linux/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  282. package/Binaries/Native/Linux/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  283. package/Binaries/Native/Linux/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  284. package/Binaries/Native/Linux/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  285. package/Binaries/Native/Linux/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  286. package/Binaries/Native/Linux/X64/NetVersionLatest.runtimeconfig.json +0 -10
  287. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  288. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  289. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  290. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  291. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  292. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  293. package/Binaries/Native/Linux/X64/libJavonetActivationService.so +0 -0
  294. package/Binaries/Native/Linux/X64/libJavonetCppRuntimeNative.so +0 -0
  295. package/Binaries/Native/Linux/X64/libJavonetGoRuntimeNative.so +0 -0
  296. package/Binaries/Native/Linux/X64/libJavonetJvmRuntimeNative.so +0 -0
  297. package/Binaries/Native/Linux/X64/libJavonetNetcoreRuntimeNative.so +0 -0
  298. package/Binaries/Native/Linux/X64/libJavonetNodejs1816RuntimeNative.so +0 -0
  299. package/Binaries/Native/Linux/X64/libJavonetNodejsRuntimeNative.so +0 -0
  300. package/Binaries/Native/Linux/X64/libJavonetPerlRuntimeNative.so +0 -0
  301. package/Binaries/Native/Linux/X64/libJavonetPhpRuntimeNative.so +0 -0
  302. package/Binaries/Native/Linux/X64/libJavonetPython2RuntimeNative.so +0 -0
  303. package/Binaries/Native/Linux/X64/libJavonetPythonRuntimeNative.so +0 -0
  304. package/Binaries/Native/Linux/X64/libJavonetRuby278RuntimeNative.so +0 -0
  305. package/Binaries/Native/Linux/X64/libJavonetRuby342RuntimeNative.so +0 -0
  306. package/Binaries/Native/Linux/X64/libJavonetRubyRuntimeNative.so +0 -0
  307. package/Binaries/Native/Linux/X64/libJavonetTcpClient.so +0 -0
  308. package/Binaries/Native/Linux/X64/libJavonetTcpTlsClient.so +0 -0
  309. package/Binaries/Native/Linux/X64/libUtils.so +0 -0
  310. package/Binaries/Native/Linux/X64/libnethost.so +0 -0
  311. package/Binaries/Native/Linux/X64/libnode.so.108 +0 -0
  312. package/Binaries/Native/Linux/X64/libperl.so.5.34.0 +0 -0
  313. package/Binaries/Native/Linux/X64/libpython2.7.so.1.0 +0 -0
  314. package/Binaries/Native/Linux/X64/libruby.so.2.7.8 +0 -0
  315. package/Binaries/Native/Linux/X64/libruby.so.3.4.2 +0 -0
  316. package/Binaries/Native/Linux/X64/version.txt +0 -1
  317. package/Binaries/Native/MacOs/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  318. package/Binaries/Native/MacOs/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  319. package/Binaries/Native/MacOs/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  320. package/Binaries/Native/MacOs/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  321. package/Binaries/Native/MacOs/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  322. package/Binaries/Native/MacOs/X64/NetVersionLatest.runtimeconfig.json +0 -10
  323. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  324. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  325. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  326. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  327. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  328. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  329. package/Binaries/Native/MacOs/X64/libJavonetActivationService.dylib +0 -0
  330. package/Binaries/Native/MacOs/X64/libJavonetCppRuntimeNative.dylib +0 -0
  331. package/Binaries/Native/MacOs/X64/libJavonetGoRuntimeNative.dylib +0 -0
  332. package/Binaries/Native/MacOs/X64/libJavonetJvmRuntimeNative.dylib +0 -0
  333. package/Binaries/Native/MacOs/X64/libJavonetNetcoreRuntimeNative.dylib +0 -0
  334. package/Binaries/Native/MacOs/X64/libJavonetNodejs1816RuntimeNative.dylib +0 -0
  335. package/Binaries/Native/MacOs/X64/libJavonetNodejsRuntimeNative.dylib +0 -0
  336. package/Binaries/Native/MacOs/X64/libJavonetPhpRuntimeNative.dylib +0 -0
  337. package/Binaries/Native/MacOs/X64/libJavonetPythonRuntimeNative.dylib +0 -0
  338. package/Binaries/Native/MacOs/X64/libJavonetRuby278RuntimeNative.dylib +0 -0
  339. package/Binaries/Native/MacOs/X64/libJavonetRuby342RuntimeNative.dylib +0 -0
  340. package/Binaries/Native/MacOs/X64/libJavonetRubyRuntimeNative.dylib +0 -0
  341. package/Binaries/Native/MacOs/X64/libJavonetTcpClient.dylib +0 -0
  342. package/Binaries/Native/MacOs/X64/libJavonetTcpTlsClient.dylib +0 -0
  343. package/Binaries/Native/MacOs/X64/libUtils.dylib +0 -0
  344. package/Binaries/Native/MacOs/X64/libnethost.dylib +0 -0
  345. package/Binaries/Native/MacOs/X64/libnode.108.dylib +0 -0
  346. package/Binaries/Native/MacOs/X64/libruby.2.7.dylib +0 -0
  347. package/Binaries/Native/MacOs/X64/libruby.3.4.dylib +0 -0
  348. package/Binaries/Native/MacOs/X64/version.txt +0 -1
  349. package/Binaries/Native/Windows/ARM64/JavonetActivationService.dll +0 -0
  350. package/Binaries/Native/Windows/ARM64/JavonetCppRuntimeNative.dll +0 -0
  351. package/Binaries/Native/Windows/ARM64/JavonetGoRuntimeNative.dll +0 -0
  352. package/Binaries/Native/Windows/ARM64/JavonetJvmRuntimeNative.dll +0 -0
  353. package/Binaries/Native/Windows/ARM64/JavonetNetcoreRuntimeNative.dll +0 -0
  354. package/Binaries/Native/Windows/ARM64/JavonetPhpRuntimeNative.dll +0 -0
  355. package/Binaries/Native/Windows/ARM64/JavonetPythonRuntimeNative.dll +0 -0
  356. package/Binaries/Native/Windows/ARM64/JavonetRuby278RuntimeNative.dll +0 -0
  357. package/Binaries/Native/Windows/ARM64/JavonetRubyRuntimeNative.dll +0 -0
  358. package/Binaries/Native/Windows/ARM64/JavonetTcpClient.dll +0 -0
  359. package/Binaries/Native/Windows/ARM64/JavonetTcpTlsClient.dll +0 -0
  360. package/Binaries/Native/Windows/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  361. package/Binaries/Native/Windows/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  362. package/Binaries/Native/Windows/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  363. package/Binaries/Native/Windows/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  364. package/Binaries/Native/Windows/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  365. package/Binaries/Native/Windows/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  366. package/Binaries/Native/Windows/ARM64/Utils.dll +0 -0
  367. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  368. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  369. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  370. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  371. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  372. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  373. package/Binaries/Native/Windows/ARM64/libcrypto-3-arm64.dll +0 -0
  374. package/Binaries/Native/Windows/ARM64/libssl-3-arm64.dll +0 -0
  375. package/Binaries/Native/Windows/ARM64/libxml2.dll +0 -0
  376. package/Binaries/Native/Windows/ARM64/libxmlsec-openssl.dll +0 -0
  377. package/Binaries/Native/Windows/ARM64/libxmlsec.dll +0 -0
  378. package/Binaries/Native/Windows/ARM64/libxslt.dll +0 -0
  379. package/Binaries/Native/Windows/ARM64/nethost.dll +0 -0
  380. package/Binaries/Native/Windows/ARM64/version.txt +0 -0
  381. package/Binaries/Native/Windows/X64/JavonetActivationService.dll +0 -0
  382. package/Binaries/Native/Windows/X64/JavonetClrRuntimeNative.dll +0 -0
  383. package/Binaries/Native/Windows/X64/JavonetCppRuntimeNative.dll +0 -0
  384. package/Binaries/Native/Windows/X64/JavonetGoRuntimeNative.dll +0 -0
  385. package/Binaries/Native/Windows/X64/JavonetJvmRuntimeNative.dll +0 -0
  386. package/Binaries/Native/Windows/X64/JavonetNetcoreRuntimeNative.dll +0 -0
  387. package/Binaries/Native/Windows/X64/JavonetNodejs1816RuntimeNative.dll +0 -0
  388. package/Binaries/Native/Windows/X64/JavonetNodejsRuntimeNative.dll +0 -0
  389. package/Binaries/Native/Windows/X64/JavonetPerl532RuntimeNativeAuxiliary.dll +0 -0
  390. package/Binaries/Native/Windows/X64/JavonetPerl540RuntimeNativeAuxiliary.dll +0 -0
  391. package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNative.dll +0 -0
  392. package/Binaries/Native/Windows/X64/JavonetPhpRuntimeNative.dll +0 -0
  393. package/Binaries/Native/Windows/X64/JavonetPython2RuntimeNative.dll +0 -0
  394. package/Binaries/Native/Windows/X64/JavonetPythonRuntimeNative.dll +0 -0
  395. package/Binaries/Native/Windows/X64/JavonetRuby278RuntimeNative.dll +0 -0
  396. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNative.dll +0 -0
  397. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNativeAuxiliary.dll +0 -0
  398. package/Binaries/Native/Windows/X64/JavonetTcpClient.dll +0 -0
  399. package/Binaries/Native/Windows/X64/JavonetTcpTlsClient.dll +0 -0
  400. package/Binaries/Native/Windows/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  401. package/Binaries/Native/Windows/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  402. package/Binaries/Native/Windows/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  403. package/Binaries/Native/Windows/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  404. package/Binaries/Native/Windows/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  405. package/Binaries/Native/Windows/X64/NetVersionLatest.runtimeconfig.json +0 -10
  406. package/Binaries/Native/Windows/X64/Utils.dll +0 -0
  407. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  408. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  409. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  410. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  411. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  412. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  413. package/Binaries/Native/Windows/X64/libcrypto-3-x64.dll +0 -0
  414. package/Binaries/Native/Windows/X64/libnode.dll +0 -0
  415. package/Binaries/Native/Windows/X64/libssl-3-x64.dll +0 -0
  416. package/Binaries/Native/Windows/X64/libxml2.dll +0 -0
  417. package/Binaries/Native/Windows/X64/libxmlsec-openssl.dll +0 -0
  418. package/Binaries/Native/Windows/X64/libxmlsec.dll +0 -0
  419. package/Binaries/Native/Windows/X64/libxslt.dll +0 -0
  420. package/Binaries/Native/Windows/X64/nethost.dll +0 -0
  421. package/Binaries/Native/Windows/X64/python27.dll +0 -0
  422. package/Binaries/Native/Windows/X64/version.txt +0 -1
  423. package/Binaries/Native/Windows/X64/x64-msvcrt-ruby270.dll +0 -0
  424. package/Binaries/Native/Windows/X64/x64-ucrt-ruby340.dll +0 -0
  425. package/Binaries/Native/Windows/X86/JavonetActivationService.dll +0 -0
  426. package/Binaries/Native/Windows/X86/JavonetClrRuntimeNative.dll +0 -0
  427. package/Binaries/Native/Windows/X86/JavonetCppRuntimeNative.dll +0 -0
  428. package/Binaries/Native/Windows/X86/JavonetGoRuntimeNative.dll +0 -0
  429. package/Binaries/Native/Windows/X86/JavonetJvmRuntimeNative.dll +0 -0
  430. package/Binaries/Native/Windows/X86/JavonetNetcoreRuntimeNative.dll +0 -0
  431. package/Binaries/Native/Windows/X86/JavonetPhpRuntimeNative.dll +0 -0
  432. package/Binaries/Native/Windows/X86/JavonetPython2RuntimeNative.dll +0 -0
  433. package/Binaries/Native/Windows/X86/JavonetPythonRuntimeNative.dll +0 -0
  434. package/Binaries/Native/Windows/X86/JavonetTcpClient.dll +0 -0
  435. package/Binaries/Native/Windows/X86/JavonetTcpTlsClient.dll +0 -0
  436. package/Binaries/Native/Windows/X86/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  437. package/Binaries/Native/Windows/X86/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  438. package/Binaries/Native/Windows/X86/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  439. package/Binaries/Native/Windows/X86/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  440. package/Binaries/Native/Windows/X86/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  441. package/Binaries/Native/Windows/X86/NetVersionLatest.runtimeconfig.json +0 -10
  442. package/Binaries/Native/Windows/X86/Utils.dll +0 -0
  443. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  444. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  445. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  446. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  447. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  448. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  449. package/Binaries/Native/Windows/X86/libcrypto-3.dll +0 -0
  450. package/Binaries/Native/Windows/X86/libssl-3.dll +0 -0
  451. package/Binaries/Native/Windows/X86/libxml2.dll +0 -0
  452. package/Binaries/Native/Windows/X86/libxmlsec-openssl.dll +0 -0
  453. package/Binaries/Native/Windows/X86/libxmlsec.dll +0 -0
  454. package/Binaries/Native/Windows/X86/libxslt.dll +0 -0
  455. package/Binaries/Native/Windows/X86/nethost.dll +0 -0
  456. package/Binaries/Native/Windows/X86/version.txt +0 -1
  457. package/Binaries/Netcore/Javonet.Netcore.Core.dll +0 -0
  458. package/Binaries/Netcore/Javonet.Netcore.Utils.dll +0 -0
  459. package/Binaries/Nodejs/index.js +0 -66
  460. package/Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache.js +0 -35
  461. package/Binaries/Nodejs/lib/core/handler/AbstractHandler.js +0 -41
  462. package/Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler.js +0 -38
  463. package/Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler.js +0 -28
  464. package/Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  465. package/Binaries/Nodejs/lib/core/handler/ArrayHandler.js +0 -18
  466. package/Binaries/Nodejs/lib/core/handler/ArraySetItemHandler.js +0 -43
  467. package/Binaries/Nodejs/lib/core/handler/CastingHandler.js +0 -10
  468. package/Binaries/Nodejs/lib/core/handler/ConvertTypeHandler.js +0 -38
  469. package/Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  470. package/Binaries/Nodejs/lib/core/handler/DestructReferenceHandler.js +0 -19
  471. package/Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler.js +0 -34
  472. package/Binaries/Nodejs/lib/core/handler/EnableTypeHandler.js +0 -35
  473. package/Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  474. package/Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  475. package/Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  476. package/Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler.js +0 -36
  477. package/Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  478. package/Binaries/Nodejs/lib/core/handler/GetTypeHandler.js +0 -63
  479. package/Binaries/Nodejs/lib/core/handler/Handler.js +0 -98
  480. package/Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler.js +0 -36
  481. package/Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  482. package/Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  483. package/Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  484. package/Binaries/Nodejs/lib/core/handler/LoadLibraryHandler.js +0 -48
  485. package/Binaries/Nodejs/lib/core/handler/PassDelegateHandler.js +0 -157
  486. package/Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler.js +0 -13
  487. package/Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  488. package/Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  489. package/Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler.js +0 -33
  490. package/Binaries/Nodejs/lib/core/handler/ValueHandler.js +0 -13
  491. package/Binaries/Nodejs/lib/core/interpreter/Interpreter.js +0 -142
  492. package/Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache.js +0 -39
  493. package/Binaries/Nodejs/lib/core/protocol/CommandDeserializer.js +0 -181
  494. package/Binaries/Nodejs/lib/core/protocol/CommandSerializer.js +0 -50
  495. package/Binaries/Nodejs/lib/core/protocol/TypeDeserializer.js +0 -83
  496. package/Binaries/Nodejs/lib/core/protocol/TypeSerializer.js +0 -143
  497. package/Binaries/Nodejs/lib/core/receiver/Receiver.js +0 -32
  498. package/Binaries/Nodejs/lib/core/receiver/ReceiverNative.js +0 -13
  499. package/Binaries/Nodejs/lib/core/referenceCache/ReferencesCache.js +0 -30
  500. package/Binaries/Nodejs/lib/core/transmitter/Transmitter.js +0 -21
  501. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  502. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper.js +0 -47
  503. package/Binaries/Nodejs/lib/core/typeCache/TypeCache.js +0 -39
  504. package/Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient.js +0 -136
  505. package/Binaries/Nodejs/lib/declarations.d.ts +0 -64
  506. package/Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory.js +0 -155
  507. package/Binaries/Nodejs/lib/sdk/InvocationContext.js +0 -485
  508. package/Binaries/Nodejs/lib/sdk/Javonet.js +0 -105
  509. package/Binaries/Nodejs/lib/sdk/RuntimeContext.js +0 -300
  510. package/Binaries/Nodejs/lib/sdk/RuntimeFactory.js +0 -87
  511. package/Binaries/Nodejs/lib/sdk/tools/JsonFileResolver.js +0 -101
  512. package/Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  513. package/Binaries/Nodejs/lib/utils/Command.js +0 -69
  514. package/Binaries/Nodejs/lib/utils/CommandType.js +0 -47
  515. package/Binaries/Nodejs/lib/utils/ConnectionType.js +0 -8
  516. package/Binaries/Nodejs/lib/utils/CustomError.js +0 -8
  517. package/Binaries/Nodejs/lib/utils/ExceptionType.js +0 -13
  518. package/Binaries/Nodejs/lib/utils/RuntimeLogger.js +0 -30
  519. package/Binaries/Nodejs/lib/utils/RuntimeName.js +0 -16
  520. package/Binaries/Nodejs/lib/utils/RuntimeNameHandler.js +0 -38
  521. package/Binaries/Nodejs/lib/utils/StringEncodingMode.js +0 -9
  522. package/Binaries/Nodejs/lib/utils/Type.js +0 -17
  523. package/Binaries/Nodejs/lib/utils/TypesConverter.js +0 -91
  524. package/Binaries/Nodejs/lib/utils/connectionData/IConnectionData.js +0 -15
  525. package/Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  526. package/Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData.js +0 -77
  527. package/Binaries/Nodejs/lib/utils/connectionData/WsConnectionData.js +0 -50
  528. package/Binaries/Nodejs/lib/utils/exception/ExceptionSerializer.js +0 -64
  529. package/Binaries/Nodejs/lib/utils/exception/ExceptionThrower.js +0 -95
  530. package/Binaries/Nodejs/lib/utils/guid/generateGuid.js +0 -9
  531. package/Binaries/Nodejs/lib/utils/uuid/REGEX.js +0 -2
  532. package/Binaries/Nodejs/lib/utils/uuid/rng.js +0 -12
  533. package/Binaries/Nodejs/lib/utils/uuid/stringify.js +0 -51
  534. package/Binaries/Nodejs/lib/utils/uuid/v4.js +0 -27
  535. package/Binaries/Nodejs/lib/utils/uuid/validate.js +0 -6
  536. package/Binaries/Perl/Linux/X64/deps/bin/moose-outdated +0 -22
  537. package/Binaries/Perl/Linux/X64/deps/bin/package-stash-conflicts +0 -22
  538. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-events +0 -62
  539. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-highlight +0 -54
  540. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load +0 -155
  541. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load-dump +0 -314
  542. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-parse-emit +0 -123
  543. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  544. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  545. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  546. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  547. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  548. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  549. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Capture/Tiny.pm +0 -917
  550. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load/PP.pm +0 -59
  551. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load.pm +0 -420
  552. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  553. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  554. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  555. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/OptList.pm +0 -416
  556. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/GlobalDestruction.pm +0 -110
  557. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/OverloadInfo.pm +0 -309
  558. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace/Frame.pm +0 -272
  559. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace.pm +0 -624
  560. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Eval/Closure.pm +0 -379
  561. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config/MakeMaker.pm +0 -141
  562. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config.pm +0 -152
  563. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Unix.pm +0 -97
  564. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/VMS.pm +0 -118
  565. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Windows.pm +0 -125
  566. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers.pm +0 -122
  567. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/InstallPaths.pm +0 -627
  568. package/Binaries/Perl/Linux/X64/deps/lib/perl5/FFI/CheckLib.pm +0 -856
  569. package/Binaries/Perl/Linux/X64/deps/lib/perl5/File/Which.pm +0 -398
  570. package/Binaries/Perl/Linux/X64/deps/lib/perl5/IPC/System/Simple.pm +0 -1115
  571. package/Binaries/Perl/Linux/X64/deps/lib/perl5/MRO/Compat.pm +0 -407
  572. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Implementation.pm +0 -290
  573. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime/Conflicts.pm +0 -105
  574. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime.pm +0 -520
  575. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  576. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  577. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  578. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  579. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  580. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  581. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  582. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  583. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  584. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  585. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  586. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  587. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  588. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  589. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  590. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  591. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  592. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  593. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  594. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  595. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  596. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  597. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  598. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  599. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  600. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  601. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  602. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  603. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  604. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  605. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  606. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  607. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  608. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  609. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  610. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  611. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  612. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  613. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  614. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  615. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  616. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  617. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  618. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  619. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  620. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  621. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  622. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  623. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  624. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  625. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  626. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  627. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  628. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  629. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  630. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  631. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  632. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  633. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  634. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  635. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  636. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  637. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  638. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  639. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  640. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  641. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  642. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  643. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  644. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  645. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  646. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  647. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  648. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  649. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  650. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  651. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  652. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  653. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  654. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  655. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  656. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  657. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  658. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  659. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  660. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  661. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  662. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  663. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  664. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  665. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  666. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  667. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  668. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  669. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  670. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI.pm +0 -822
  671. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/DeprecationManager.pm +0 -368
  672. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/Conflicts.pm +0 -35
  673. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/PP.pm +0 -503
  674. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash.pm +0 -308
  675. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Path/Tiny.pm +0 -3946
  676. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  677. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Scope/Guard.pm +0 -183
  678. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Cookbook.pod +0 -602
  679. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Progressive.pm +0 -174
  680. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Tutorial.pod +0 -539
  681. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Util.pm +0 -488
  682. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter.pm +0 -1769
  683. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Install.pm +0 -486
  684. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Task/Weaken.pm +0 -95
  685. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  686. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Try/Tiny.pm +0 -820
  687. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  688. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  689. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  690. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  691. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  692. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  693. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  694. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  695. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  696. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  697. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  698. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  699. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  700. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  701. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  702. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  703. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  704. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  705. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  706. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  707. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  708. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  709. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  710. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  711. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  712. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  713. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  714. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  715. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  716. package/Binaries/Perl/Linux/X64/deps/lib/perl5/aliased.pm +0 -371
  717. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  718. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/install.json +0 -1
  719. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/MYMETA.json +0 -124
  720. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/install.json +0 -1
  721. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/MYMETA.json +0 -1290
  722. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/install.json +0 -1
  723. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/MYMETA.json +0 -1222
  724. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/install.json +0 -1
  725. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  726. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/install.json +0 -1
  727. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/MYMETA.json +0 -570
  728. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/install.json +0 -1
  729. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  730. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/install.json +0 -1
  731. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/MYMETA.json +0 -65
  732. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/install.json +0 -1
  733. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/MYMETA.json +0 -73
  734. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/install.json +0 -1
  735. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/MYMETA.json +0 -1081
  736. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/install.json +0 -1
  737. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/MYMETA.json +0 -463
  738. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/install.json +0 -1
  739. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/MYMETA.json +0 -599
  740. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/install.json +0 -1
  741. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/MYMETA.json +0 -79
  742. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/install.json +0 -1
  743. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/MYMETA.json +0 -89
  744. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/install.json +0 -1
  745. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/MYMETA.json +0 -76
  746. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/install.json +0 -1
  747. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/MYMETA.json +0 -156
  748. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/install.json +0 -1
  749. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/MYMETA.json +0 -198
  750. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/install.json +0 -1
  751. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/MYMETA.json +0 -81
  752. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/install.json +0 -1
  753. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/MYMETA.json +0 -69
  754. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/install.json +0 -1
  755. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/MYMETA.json +0 -66
  756. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/install.json +0 -1
  757. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/MYMETA.json +0 -122
  758. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/install.json +0 -1
  759. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/MYMETA.json +0 -625
  760. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/install.json +0 -1
  761. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/MYMETA.json +0 -83
  762. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/install.json +0 -1
  763. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/MYMETA.json +0 -1162
  764. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/install.json +0 -1
  765. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/MYMETA.json +0 -3189
  766. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/install.json +0 -1
  767. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  768. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/install.json +0 -1
  769. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/MYMETA.json +0 -1115
  770. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/install.json +0 -1
  771. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  772. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/install.json +0 -1
  773. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/MYMETA.json +0 -1069
  774. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/install.json +0 -1
  775. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/MYMETA.json +0 -1371
  776. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/install.json +0 -1
  777. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/MYMETA.json +0 -1331
  778. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/install.json +0 -1
  779. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/MYMETA.json +0 -89
  780. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/install.json +0 -1
  781. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/MYMETA.json +0 -186
  782. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/install.json +0 -1
  783. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  784. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/install.json +0 -1
  785. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  786. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  787. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/MYMETA.json +0 -53
  788. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/install.json +0 -1
  789. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/MYMETA.json +0 -595
  790. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/install.json +0 -1
  791. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/MYMETA.json +0 -55
  792. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/install.json +0 -1
  793. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/MYMETA.json +0 -572
  794. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/install.json +0 -1
  795. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/MYMETA.json +0 -1092
  796. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/install.json +0 -1
  797. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  798. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/install.json +0 -1
  799. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/MYMETA.json +0 -1344
  800. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/install.json +0 -1
  801. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/MYMETA.json +0 -40
  802. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/install.json +0 -1
  803. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  804. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/install.json +0 -1
  805. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/MYMETA.json +0 -1035
  806. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/install.json +0 -1
  807. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  808. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/install.json +0 -1
  809. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/Load/XS.pm +0 -89
  810. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Attribute.pm +0 -1100
  811. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class/Immutable/Trait.pm +0 -172
  812. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class.pm +0 -2312
  813. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Deprecated.pm +0 -95
  814. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Instance.pm +0 -533
  815. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Accessor.pm +0 -404
  816. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Constructor.pm +0 -251
  817. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Generated.pm +0 -142
  818. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Inlined.pm +0 -191
  819. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Meta.pm +0 -169
  820. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Wrapped.pm +0 -333
  821. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method.pm +0 -356
  822. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/MiniTrait.pm +0 -113
  823. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/AttributeCore.pm +0 -125
  824. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasAttributes.pm +0 -171
  825. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasMethods.pm +0 -304
  826. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasOverloads.pm +0 -243
  827. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin.pm +0 -107
  828. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Module.pm +0 -209
  829. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Object.pm +0 -196
  830. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Overload.pm +0 -340
  831. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Package.pm +0 -460
  832. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP.pm +0 -1222
  833. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Data/UUID.pm +0 -158
  834. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Build.pm +0 -634
  835. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/API.pm +0 -293
  836. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Buffer.pm +0 -366
  837. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Bundle.pm +0 -795
  838. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Closure.pm +0 -199
  839. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Constant.pm +0 -246
  840. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/DL.pm +0 -231
  841. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Function.pm +0 -229
  842. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Internal.pm +0 -96
  843. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/ASM.pm +0 -126
  844. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/C.pm +0 -123
  845. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/Win32.pm +0 -457
  846. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang.pm +0 -141
  847. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Legacy.pm +0 -140
  848. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Memory.pm +0 -268
  849. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/Meta.pm +0 -148
  850. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/TieArray.pm +0 -174
  851. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record.pm +0 -575
  852. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/ShareConfig.pm +0 -122
  853. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/PointerSizeBuffer.pm +0 -162
  854. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringArray.pm +0 -272
  855. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringPointer.pm +0 -190
  856. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/WideString.pm +0 -529
  857. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type.pm +0 -1399
  858. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version0.pm +0 -285
  859. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version1.pm +0 -390
  860. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version2.pm +0 -115
  861. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser.pm +0 -183
  862. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus.pm +0 -3302
  863. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Builder.pm +0 -538
  864. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Result.pm +0 -134
  865. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner.pm +0 -204
  866. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe.pm +0 -715
  867. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Temp.pm +0 -147
  868. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/typemap +0 -46
  869. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Conflicts.pm +0 -132
  870. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod +0 -384
  871. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod +0 -397
  872. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod +0 -176
  873. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Company_Subtypes.pod +0 -615
  874. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod +0 -127
  875. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Document_AugmentAndInner.pod +0 -197
  876. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod +0 -318
  877. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod +0 -345
  878. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Immutable.pod +0 -99
  879. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod +0 -180
  880. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod +0 -489
  881. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod +0 -153
  882. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/ExtensionOverview.pod +0 -404
  883. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod +0 -160
  884. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod +0 -172
  885. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod +0 -337
  886. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod +0 -132
  887. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod +0 -304
  888. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod +0 -325
  889. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod +0 -224
  890. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Table_MetaclassTrait.pod +0 -157
  891. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/WhyMeta.pod +0 -117
  892. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/ApplicationToInstance.pod +0 -191
  893. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Comparable_CodeReuse.pod +0 -379
  894. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod +0 -230
  895. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Keywords.pod +0 -240
  896. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Types.pod +0 -130
  897. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Style.pod +0 -77
  898. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook.pod +0 -289
  899. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Deprecated.pm +0 -98
  900. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AccessorMustReadWrite.pm +0 -14
  901. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +0 -19
  902. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +0 -19
  903. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +0 -19
  904. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ApplyTakesABlessedInstance.pm +0 -19
  905. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +0 -19
  906. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInRoles.pm +0 -32
  907. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInSummation.pm +0 -28
  908. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +0 -19
  909. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeIsRequired.pm +0 -45
  910. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +0 -19
  911. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeNamesDoNotMatch.pm +0 -25
  912. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotAnObject.pm +0 -28
  913. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotDefined.pm +0 -22
  914. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +0 -14
  915. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BadOptionFormat.pm +0 -25
  916. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +0 -19
  917. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderDoesNotExist.pm +0 -14
  918. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +0 -14
  919. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +0 -26
  920. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMustBeAMethodName.pm +0 -19
  921. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +0 -19
  922. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +0 -19
  923. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanExtendOnlyClasses.pm +0 -15
  924. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyConsumeRole.pm +0 -18
  925. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyWrapBlessedCode.pm +0 -25
  926. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASubclass.pm +0 -15
  927. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +0 -14
  928. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +0 -18
  929. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAsAnAttributeToARole.pm +0 -20
  930. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +0 -13
  931. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +0 -20
  932. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +0 -13
  933. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentNoSuperMethod.pm +0 -26
  934. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDerefWithoutIsa.pm +0 -14
  935. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +0 -14
  936. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCalculateNativeType.pm +0 -14
  937. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +0 -19
  938. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractMethod.pm +0 -12
  939. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAWeakRef.pm +0 -14
  940. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +0 -17
  941. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +0 -13
  942. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +0 -25
  943. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +0 -19
  944. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +0 -14
  945. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateWithoutIsa.pm +0 -13
  946. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindDelegateMetaclass.pm +0 -14
  947. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindType.pm +0 -19
  948. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +0 -33
  949. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFixMetaclassCompatibility.pm +0 -26
  950. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotGenerateInlineConstraint.pm +0 -30
  951. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +0 -30
  952. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInlineTypeConstraintCheck.pm +0 -14
  953. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotLocatePackageInINC.pm +0 -41
  954. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotMakeMetaclassCompatible.pm +0 -23
  955. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideALocalMethod.pm +0 -20
  956. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +0 -19
  957. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +0 -13
  958. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideNoSuperMethod.pm +0 -26
  959. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +0 -12
  960. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +0 -14
  961. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CircularReferenceInAlso.pm +0 -31
  962. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesNotHaveInitMeta.pm +0 -22
  963. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesTheExcludedRole.pm +0 -22
  964. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassNamesDoNotMatch.pm +0 -25
  965. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +0 -20
  966. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CodeBlockMustBeACodeRef.pm +0 -13
  967. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercingWithoutCoercions.pm +0 -12
  968. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionAlreadyExists.pm +0 -20
  969. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionNeedsTypeConstraint.pm +0 -14
  970. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +0 -22
  971. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +0 -16
  972. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +0 -12
  973. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateMethod.pm +0 -32
  974. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateWriter.pm +0 -24
  975. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalConstructor.pm +0 -34
  976. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalDestructor.pm +0 -34
  977. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +0 -20
  978. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +0 -26
  979. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +0 -14
  980. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotParseType.pm +0 -30
  981. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +0 -13
  982. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +0 -13
  983. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +0 -13
  984. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesArrayRefOfRoles.pm +0 -13
  985. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfAttributes.pm +0 -13
  986. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfMethods.pm +0 -13
  987. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +0 -33
  988. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +0 -20
  989. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +0 -20
  990. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +0 -14
  991. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DoesRequiresRoleName.pm +0 -13
  992. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  993. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumValuesMustBeString.pm +0 -26
  994. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ExtendsMissingArgs.pm +0 -13
  995. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/HandlesMustBeAHashRef.pm +0 -20
  996. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalInheritedOptions.pm +0 -23
  997. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +0 -31
  998. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +0 -27
  999. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm +0 -13
  1000. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +0 -18
  1001. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceBlessedIntoWrongClass.pm +0 -14
  1002. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceMustBeABlessedReference.pm +0 -20
  1003. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +0 -41
  1004. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentToMethod.pm +0 -45
  1005. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentsToTraitAliases.pm +0 -32
  1006. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1007. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHandleValue.pm +0 -20
  1008. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHasProvidedInARole.pm +0 -19
  1009. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidNameForType.pm +0 -17
  1010. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidOverloadOperator.pm +0 -21
  1011. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidRoleApplication.pm +0 -19
  1012. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeConstraint.pm +0 -24
  1013. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1014. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidValueForIs.pm +0 -14
  1015. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaDoesNotDoTheRole.pm +0 -14
  1016. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaLacksDoesMethod.pm +0 -14
  1017. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/LazyAttributeNeedsADefault.pm +0 -14
  1018. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Legacy.pm +0 -8
  1019. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +0 -19
  1020. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MatchActionMustBeACodeRef.pm +0 -28
  1021. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MessageParameterMustBeCodeRef.pm +0 -19
  1022. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +0 -24
  1023. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +0 -26
  1024. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +0 -23
  1025. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +0 -14
  1026. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +0 -14
  1027. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +0 -19
  1028. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassNotLoaded.pm +0 -14
  1029. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassTypeIncompatible.pm +0 -39
  1030. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectedAMetaclassObject.pm +0 -24
  1031. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsFewerArgs.pm +0 -27
  1032. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsMoreArgs.pm +0 -25
  1033. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodModifierNeedsMethodName.pm +0 -13
  1034. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameConflictInRoles.pm +0 -47
  1035. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +0 -20
  1036. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotGiven.pm +0 -13
  1037. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAMethodName.pm +0 -13
  1038. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnAttributeName.pm +0 -13
  1039. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnOverloadOperator.pm +0 -13
  1040. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +0 -19
  1041. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAHashOfOptions.pm +0 -19
  1042. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +0 -24
  1043. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +0 -19
  1044. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfArguments.pm +0 -25
  1045. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +0 -24
  1046. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustProvideANameForTheAttribute.pm +0 -19
  1047. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneMethod.pm +0 -13
  1048. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRole.pm +0 -13
  1049. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +0 -19
  1050. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +0 -19
  1051. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyADelegateToMethod.pm +0 -19
  1052. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMetaclass.pm +0 -20
  1053. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +0 -19
  1054. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +0 -19
  1055. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +0 -19
  1056. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +0 -13
  1057. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyPackageNameAndName.pm +0 -20
  1058. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +0 -25
  1059. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +0 -12
  1060. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +0 -12
  1061. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +0 -12
  1062. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +0 -12
  1063. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoAttributeFoundInSuperClass.pm +0 -14
  1064. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +0 -19
  1065. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoCasesMatched.pm +0 -27
  1066. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +0 -14
  1067. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoDestructorClassSpecified.pm +0 -13
  1068. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +0 -17
  1069. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoParentGivenToSubtype.pm +0 -18
  1070. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OnlyInstancesCanBeCloned.pm +0 -20
  1071. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OperatorIsRequired.pm +0 -19
  1072. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadConflictInSummation.pm +0 -62
  1073. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaClass.pm +0 -13
  1074. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaMethod.pm +0 -13
  1075. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaOverload.pm +0 -13
  1076. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm +0 -13
  1077. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAnOperator.pm +0 -13
  1078. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresNamesForCoderef.pm +0 -13
  1079. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInComposition.pm +0 -43
  1080. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInSummation.pm +0 -66
  1081. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageDoesNotUseMooseExporter.pm +0 -28
  1082. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +0 -25
  1083. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackagesAndModulesAreNotCachable.pm +0 -26
  1084. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +0 -26
  1085. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +0 -27
  1086. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeLacksInitialization.pm +0 -19
  1087. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeNeedsADefault.pm +0 -14
  1088. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsImportedByClass.pm +0 -46
  1089. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +0 -31
  1090. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Attribute.pm +0 -12
  1091. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/AttributeName.pm +0 -12
  1092. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Class.pm +0 -14
  1093. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +0 -49
  1094. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Instance.pm +0 -12
  1095. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InstanceClass.pm +0 -12
  1096. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InvalidAttributeOptions.pm +0 -13
  1097. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Method.pm +0 -12
  1098. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/ParamsHash.pm +0 -12
  1099. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Role.pm +0 -16
  1100. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreate.pm +0 -13
  1101. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreateMOPClass.pm +0 -13
  1102. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/TypeConstraint.pm +0 -14
  1103. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleDoesTheExcludedRole.pm +0 -28
  1104. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleExclusionConflict.pm +0 -27
  1105. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequired.pm +0 -13
  1106. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +0 -13
  1107. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportAugment.pm +0 -12
  1108. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportExtends.pm +0 -12
  1109. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportInner.pm +0 -12
  1110. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +0 -20
  1111. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +0 -14
  1112. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +0 -26
  1113. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +0 -12
  1114. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TriggerMustBeACodeRef.pm +0 -14
  1115. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +0 -25
  1116. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +0 -26
  1117. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +0 -13
  1118. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeHandles.pm +0 -20
  1119. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +0 -20
  1120. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +0 -22
  1121. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +0 -25
  1122. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  1123. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +0 -12
  1124. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +0 -49
  1125. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForTypeConstraint.pm +0 -33
  1126. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrapTakesACodeRefToBless.pm +0 -26
  1127. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrongTypeConstraintGiven.pm +0 -21
  1128. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception.pm +0 -211
  1129. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exporter.pm +0 -1048
  1130. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Intro.pod +0 -77
  1131. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Attributes.pod +0 -709
  1132. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/BestPractices.pod +0 -292
  1133. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Classes.pod +0 -218
  1134. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Concepts.pod +0 -439
  1135. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Construction.pod +0 -228
  1136. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Contributing.pod +0 -545
  1137. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delegation.pod +0 -313
  1138. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delta.pod +0 -1275
  1139. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions/Manifest.pod +0 -4124
  1140. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions.pod +0 -239
  1141. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/FAQ.pod +0 -470
  1142. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MOP.pod +0 -214
  1143. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MethodModifiers.pod +0 -449
  1144. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MooseX.pod +0 -326
  1145. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Resources.pod +0 -526
  1146. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Roles.pod +0 -557
  1147. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Support.pod +0 -204
  1148. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Types.pod +0 -501
  1149. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Unsweetened.pod +0 -386
  1150. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual.pod +0 -334
  1151. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Array.pm +0 -387
  1152. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Bool.pm +0 -146
  1153. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Code.pm +0 -129
  1154. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Counter.pm +0 -157
  1155. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Hash.pm +0 -227
  1156. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Number.pm +0 -155
  1157. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/String.pm +0 -187
  1158. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait.pm +0 -244
  1159. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native.pm +0 -299
  1160. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute.pm +0 -1810
  1161. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class/Immutable/Trait.pm +0 -123
  1162. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class.pm +0 -1014
  1163. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Instance.pm +0 -109
  1164. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/Writer.pm +0 -27
  1165. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/accessor.pm +0 -56
  1166. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/clear.pm +0 -28
  1167. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/count.pm +0 -22
  1168. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/delete.pm +0 -50
  1169. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/elements.pm +0 -22
  1170. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first.pm +0 -42
  1171. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first_index.pm +0 -51
  1172. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/get.pm +0 -31
  1173. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/grep.pm +0 -41
  1174. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/insert.pm +0 -58
  1175. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm +0 -22
  1176. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/join.pm +0 -41
  1177. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/map.pm +0 -41
  1178. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/natatime.pm +0 -66
  1179. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/pop.pm +0 -47
  1180. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/push.pm +0 -36
  1181. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/reduce.pm +0 -42
  1182. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/set.pm +0 -64
  1183. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm +0 -26
  1184. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shift.pm +0 -47
  1185. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm +0 -24
  1186. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort.pm +0 -44
  1187. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm +0 -45
  1188. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/splice.pm +0 -72
  1189. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/uniq.pm +0 -24
  1190. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/unshift.pm +0 -36
  1191. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array.pm +0 -28
  1192. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/not.pm +0 -20
  1193. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/set.pm +0 -24
  1194. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm +0 -29
  1195. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/unset.pm +0 -24
  1196. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute.pm +0 -20
  1197. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm +0 -20
  1198. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Collection.pm +0 -167
  1199. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm +0 -24
  1200. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/dec.pm +0 -30
  1201. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/inc.pm +0 -30
  1202. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/reset.pm +0 -36
  1203. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/set.pm +0 -25
  1204. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm +0 -41
  1205. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm +0 -61
  1206. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +0 -37
  1207. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/count.pm +0 -22
  1208. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/defined.pm +0 -31
  1209. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/delete.pm +0 -46
  1210. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/elements.pm +0 -23
  1211. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/exists.pm +0 -31
  1212. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/get.pm +0 -35
  1213. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm +0 -22
  1214. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/keys.pm +0 -22
  1215. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/kv.pm +0 -23
  1216. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/set.pm +0 -99
  1217. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm +0 -26
  1218. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/values.pm +0 -22
  1219. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash.pm +0 -28
  1220. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/abs.pm +0 -29
  1221. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/add.pm +0 -31
  1222. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/div.pm +0 -31
  1223. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mod.pm +0 -31
  1224. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mul.pm +0 -31
  1225. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/set.pm +0 -25
  1226. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/sub.pm +0 -31
  1227. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Reader.pm +0 -47
  1228. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/append.pm +0 -31
  1229. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chomp.pm +0 -40
  1230. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chop.pm +0 -40
  1231. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/clear.pm +0 -24
  1232. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/inc.pm +0 -33
  1233. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/length.pm +0 -22
  1234. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/match.pm +0 -42
  1235. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/prepend.pm +0 -31
  1236. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/replace.pm +0 -69
  1237. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/substr.pm +0 -123
  1238. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Writer.pm +0 -174
  1239. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native.pm +0 -157
  1240. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor.pm +0 -208
  1241. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Augmented.pm +0 -171
  1242. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Constructor.pm +0 -145
  1243. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Delegation.pm +0 -307
  1244. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Destructor.pm +0 -251
  1245. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Meta.pm +0 -112
  1246. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Overridden.pm +0 -160
  1247. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method.pm +0 -100
  1248. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Mixin/AttributeCore.pm +0 -185
  1249. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Object/Trait.pm +0 -107
  1250. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/RoleSummation.pm +0 -440
  1251. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToClass.pm +0 -314
  1252. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToInstance.pm +0 -142
  1253. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToRole.pm +0 -283
  1254. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application.pm +0 -225
  1255. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Attribute.pm +0 -259
  1256. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Composite.pm +0 -320
  1257. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Conflicting.pm +0 -135
  1258. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Required.pm +0 -127
  1259. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method.pm +0 -101
  1260. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role.pm +0 -1059
  1261. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion/Union.pm +0 -141
  1262. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion.pm +0 -239
  1263. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Class.pm +0 -261
  1264. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/DuckType.pm +0 -217
  1265. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Enum.pm +0 -235
  1266. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterizable.pm +0 -200
  1267. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterized.pm +0 -188
  1268. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Registry.pm +0 -206
  1269. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Role.pm +0 -235
  1270. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Union.pm +0 -346
  1271. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint.pm +0 -607
  1272. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Object.pm +0 -271
  1273. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Role.pm +0 -377
  1274. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Spec/Role.pod +0 -397
  1275. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Unsweetened.pod +0 -77
  1276. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/MetaRole.pm +0 -329
  1277. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints/Builtins.pm +0 -305
  1278. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints.pm +0 -1443
  1279. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util.pm +0 -725
  1280. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose.pm +0 -1268
  1281. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/PPI/XS.pm +0 -137
  1282. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Package/Stash/XS.pm +0 -110
  1283. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util/PP.pm +0 -276
  1284. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util.pm +0 -486
  1285. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/Util/Numeric.pm +0 -137
  1286. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Test/Moose.pm +0 -228
  1287. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Want.pm +0 -742
  1288. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Attribute/Util/.packlist +0 -12
  1289. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Capture/Tiny/.packlist +0 -2
  1290. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/.packlist +0 -3
  1291. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/.packlist +0 -3
  1292. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/XS.so +0 -0
  1293. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/Cmp/.packlist +0 -6
  1294. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/OptList/.packlist +0 -2
  1295. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/.packlist +0 -3
  1296. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/UUID.so +0 -0
  1297. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/GlobalDestruction/.packlist +0 -2
  1298. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/OverloadInfo/.packlist +0 -2
  1299. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/StackTrace/.packlist +0 -4
  1300. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Eval/Closure/.packlist +0 -2
  1301. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Config/.packlist +0 -4
  1302. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Helpers/.packlist +0 -8
  1303. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/InstallPaths/.packlist +0 -2
  1304. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/CheckLib/.packlist +0 -2
  1305. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/.packlist +0 -98
  1306. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Constant/Constant.txt +0 -1
  1307. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Memory/Memory.txt +0 -1
  1308. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Platypus.so +0 -0
  1309. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Record/Meta/Meta.txt +0 -1
  1310. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/File/Which/.packlist +0 -2
  1311. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/IPC/System/Simple/.packlist +0 -2
  1312. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MRO/Compat/.packlist +0 -2
  1313. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Implementation/.packlist +0 -2
  1314. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/.packlist +0 -2
  1315. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/Conflicts/.packlist +0 -2
  1316. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/.packlist +0 -574
  1317. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/Moose.so +0 -0
  1318. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Nice/Try/.packlist +0 -2
  1319. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/.packlist +0 -186
  1320. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/.packlist +0 -3
  1321. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/XS.so +0 -0
  1322. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/DeprecationManager/.packlist +0 -2
  1323. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/.packlist +0 -6
  1324. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/.packlist +0 -3
  1325. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/XS.so +0 -0
  1326. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/.packlist +0 -5
  1327. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/Util.so +0 -0
  1328. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Path/Tiny/.packlist +0 -2
  1329. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Safe/Isa/.packlist +0 -2
  1330. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/.packlist +0 -3
  1331. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/Numeric.so +0 -0
  1332. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scope/Guard/.packlist +0 -2
  1333. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/.packlist +0 -8
  1334. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/Progressive/.packlist +0 -2
  1335. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Install/.packlist +0 -2
  1336. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Task/Weaken/.packlist +0 -2
  1337. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Fatal/.packlist +0 -2
  1338. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Try/Tiny/.packlist +0 -2
  1339. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/.packlist +0 -3
  1340. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/Want.so +0 -0
  1341. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/YAML/PP/.packlist +0 -55
  1342. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/aliased/.packlist +0 -2
  1343. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/.packlist +0 -5
  1344. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/autobox.so +0 -0
  1345. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox/universal.pm +0 -13
  1346. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pm +0 -404
  1347. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pod +0 -709
  1348. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/metaclass.pm +0 -155
  1349. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/oose.pm +0 -137
  1350. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod +0 -968
  1351. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1352. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1353. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1354. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1355. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1356. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1357. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1358. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1359. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1360. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1361. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1362. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1363. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1364. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1365. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1366. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1367. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1368. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1369. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1370. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1371. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1372. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1373. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1374. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1375. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1376. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1377. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1378. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1379. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1380. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1381. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1382. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1383. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1384. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1385. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1386. package/Binaries/Perl/Linux/X64/lib/Javonet/Javonet.pm +0 -82
  1387. package/Binaries/Perl/Linux/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1388. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1389. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1390. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1391. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1392. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1393. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1394. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1395. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1396. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1397. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1398. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1399. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1400. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1401. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1402. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1403. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1404. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1405. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events +0 -62
  1406. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events.bat +0 -79
  1407. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight +0 -54
  1408. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight.bat +0 -71
  1409. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load +0 -155
  1410. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump +0 -314
  1411. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump.bat +0 -331
  1412. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load.bat +0 -172
  1413. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit +0 -123
  1414. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit.bat +0 -140
  1415. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  1416. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  1417. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  1418. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  1419. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  1420. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  1421. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  1422. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  1423. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  1424. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  1425. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/install.json +0 -1
  1426. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  1427. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/install.json +0 -1
  1428. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  1429. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/install.json +0 -1
  1430. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  1431. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/install.json +0 -1
  1432. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/MYMETA.json +0 -1115
  1433. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/install.json +0 -1
  1434. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  1435. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/install.json +0 -1
  1436. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  1437. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/install.json +0 -1
  1438. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  1439. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  1440. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  1441. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/install.json +0 -1
  1442. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/MYMETA.json +0 -40
  1443. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/install.json +0 -1
  1444. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  1445. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/install.json +0 -1
  1446. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  1447. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/install.json +0 -1
  1448. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Data/UUID.pm +0 -158
  1449. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/PPI/XS.pm +0 -137
  1450. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Scalar/Util/Numeric.pm +0 -137
  1451. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Want.pm +0 -742
  1452. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Attribute/Util/.packlist +0 -6
  1453. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/Cmp/.packlist +0 -3
  1454. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/.packlist +0 -2
  1455. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/UUID.xs.dll +0 -0
  1456. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Nice/Try/.packlist +0 -1
  1457. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/.packlist +0 -95
  1458. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/.packlist +0 -2
  1459. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/XS.xs.dll +0 -0
  1460. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Safe/Isa/.packlist +0 -1
  1461. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/.packlist +0 -2
  1462. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/Numeric.xs.dll +0 -0
  1463. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Test/Fatal/.packlist +0 -1
  1464. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/.packlist +0 -2
  1465. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/Want.xs.dll +0 -0
  1466. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/YAML/PP/.packlist +0 -39
  1467. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/.packlist +0 -4
  1468. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/autobox.xs.dll +0 -0
  1469. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox/universal.pm +0 -13
  1470. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pm +0 -404
  1471. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pod +0 -709
  1472. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/perllocal.pod +0 -264
  1473. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  1474. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  1475. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  1476. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  1477. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  1478. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  1479. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  1480. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  1481. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  1482. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  1483. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  1484. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  1485. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  1486. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  1487. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  1488. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  1489. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  1490. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  1491. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  1492. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  1493. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  1494. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  1495. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  1496. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  1497. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  1498. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  1499. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  1500. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  1501. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  1502. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  1503. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  1504. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  1505. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  1506. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  1507. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  1508. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  1509. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  1510. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  1511. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  1512. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  1513. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  1514. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  1515. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  1516. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  1517. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  1518. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  1519. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  1520. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  1521. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  1522. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  1523. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  1524. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  1525. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  1526. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  1527. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  1528. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  1529. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  1530. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  1531. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  1532. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  1533. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  1534. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  1535. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  1536. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  1537. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  1538. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  1539. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  1540. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  1541. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  1542. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  1543. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  1544. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  1545. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  1546. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  1547. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  1548. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  1549. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  1550. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  1551. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  1552. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  1553. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  1554. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  1555. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  1556. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  1557. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  1558. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  1559. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  1560. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  1561. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  1562. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  1563. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  1564. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  1565. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  1566. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  1567. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  1568. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI.pm +0 -822
  1569. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  1570. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  1571. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  1572. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  1573. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  1574. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  1575. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  1576. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  1577. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  1578. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  1579. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  1580. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  1581. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  1582. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  1583. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  1584. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  1585. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  1586. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  1587. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  1588. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  1589. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  1590. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  1591. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  1592. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  1593. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  1594. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  1595. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  1596. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  1597. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  1598. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  1599. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  1600. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1601. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1602. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1603. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1604. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1605. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1606. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1607. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1608. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1609. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1610. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1611. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1612. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1613. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1614. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1615. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1616. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1617. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1618. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1619. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1620. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1621. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1622. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1623. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1624. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1625. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1626. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1627. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1628. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1629. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1630. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1631. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1632. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1633. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1634. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1635. package/Binaries/Perl/Windows/X64/lib/Javonet/Javonet.pm +0 -82
  1636. package/Binaries/Perl/Windows/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1637. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1638. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1639. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1640. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1641. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1642. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1643. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1644. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1645. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1646. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1647. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1648. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1649. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1650. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1651. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1652. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1653. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1654. package/Binaries/Python/javonet/core/__init__.py +0 -0
  1655. package/Binaries/Python/javonet/core/callback/__init__.py +0 -0
  1656. package/Binaries/Python/javonet/core/callback/callbackFunc.py +0 -7
  1657. package/Binaries/Python/javonet/core/delegateCache/DelegatesCache.py +0 -39
  1658. package/Binaries/Python/javonet/core/delegateCache/__init__.py +0 -0
  1659. package/Binaries/Python/javonet/core/handler/AbstractCommandHandler.py +0 -20
  1660. package/Binaries/Python/javonet/core/handler/AbstractHandler.py +0 -3
  1661. package/Binaries/Python/javonet/core/handler/ArrayGetItemHandler.py +0 -27
  1662. package/Binaries/Python/javonet/core/handler/ArrayGetRankHandler.py +0 -25
  1663. package/Binaries/Python/javonet/core/handler/ArrayGetSizeHandler.py +0 -24
  1664. package/Binaries/Python/javonet/core/handler/ArrayHandler.py +0 -13
  1665. package/Binaries/Python/javonet/core/handler/ArraySetItemHandler.py +0 -39
  1666. package/Binaries/Python/javonet/core/handler/CastingHandler.py +0 -6
  1667. package/Binaries/Python/javonet/core/handler/CreateClassInstanceHandler.py +0 -22
  1668. package/Binaries/Python/javonet/core/handler/DestructReferenceHandler.py +0 -13
  1669. package/Binaries/Python/javonet/core/handler/EnableNamespaceHandler.py +0 -28
  1670. package/Binaries/Python/javonet/core/handler/EnableTypeHandler.py +0 -28
  1671. package/Binaries/Python/javonet/core/handler/GetEnumItemHandler.py +0 -29
  1672. package/Binaries/Python/javonet/core/handler/GetEnumNameHandler.py +0 -22
  1673. package/Binaries/Python/javonet/core/handler/GetEnumValueHandler.py +0 -22
  1674. package/Binaries/Python/javonet/core/handler/GetInstanceFieldHandler.py +0 -27
  1675. package/Binaries/Python/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -29
  1676. package/Binaries/Python/javonet/core/handler/GetStaticFieldHandler.py +0 -27
  1677. package/Binaries/Python/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -31
  1678. package/Binaries/Python/javonet/core/handler/GetTypeHandler.py +0 -85
  1679. package/Binaries/Python/javonet/core/handler/Handler.py +0 -100
  1680. package/Binaries/Python/javonet/core/handler/HandlerDictionary.py +0 -8
  1681. package/Binaries/Python/javonet/core/handler/InvokeDelegateHandler.py +0 -27
  1682. package/Binaries/Python/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -46
  1683. package/Binaries/Python/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -31
  1684. package/Binaries/Python/javonet/core/handler/InvokeStaticMethodHandler.py +0 -33
  1685. package/Binaries/Python/javonet/core/handler/LoadLibraryHandler.py +0 -40
  1686. package/Binaries/Python/javonet/core/handler/PassDelegateHandler.py +0 -21
  1687. package/Binaries/Python/javonet/core/handler/ResolveInstanceHandler.py +0 -19
  1688. package/Binaries/Python/javonet/core/handler/SetInstanceFieldHandler.py +0 -29
  1689. package/Binaries/Python/javonet/core/handler/SetStaticFieldHandler.py +0 -29
  1690. package/Binaries/Python/javonet/core/handler/ValueHandler.py +0 -6
  1691. package/Binaries/Python/javonet/core/handler/__init__.py +0 -0
  1692. package/Binaries/Python/javonet/core/interpreter/Interpreter.py +0 -55
  1693. package/Binaries/Python/javonet/core/interpreter/__init__.py +0 -0
  1694. package/Binaries/Python/javonet/core/namespaceCache/NamespaceCache.py +0 -44
  1695. package/Binaries/Python/javonet/core/namespaceCache/__init__.py +0 -0
  1696. package/Binaries/Python/javonet/core/protocol/CommandDeserializer.py +0 -164
  1697. package/Binaries/Python/javonet/core/protocol/CommandSerializer.py +0 -29
  1698. package/Binaries/Python/javonet/core/protocol/TypeDeserializer.py +0 -64
  1699. package/Binaries/Python/javonet/core/protocol/TypeSerializer.py +0 -96
  1700. package/Binaries/Python/javonet/core/protocol/__init__.py +0 -0
  1701. package/Binaries/Python/javonet/core/receiver/Receiver.py +0 -42
  1702. package/Binaries/Python/javonet/core/receiver/__init__.py +0 -0
  1703. package/Binaries/Python/javonet/core/referenceCache/ReferencesCache.py +0 -39
  1704. package/Binaries/Python/javonet/core/referenceCache/__init__.py +0 -0
  1705. package/Binaries/Python/javonet/core/transmitter/Transmitter.py +0 -20
  1706. package/Binaries/Python/javonet/core/transmitter/TransmitterWrapper.py +0 -110
  1707. package/Binaries/Python/javonet/core/transmitter/__init__.py +0 -0
  1708. package/Binaries/Python/javonet/core/typeCache/TypeCache.py +0 -44
  1709. package/Binaries/Python/javonet/core/typeCache/__init__.py +0 -0
  1710. package/Binaries/Python/javonet/core/webSocketClient/WebSocketClient.py +0 -32
  1711. package/Binaries/Python/javonet/utils/Command.py +0 -90
  1712. package/Binaries/Python/javonet/utils/CommandType.py +0 -46
  1713. package/Binaries/Python/javonet/utils/ConnectionType.py +0 -7
  1714. package/Binaries/Python/javonet/utils/ExceptionType.py +0 -55
  1715. package/Binaries/Python/javonet/utils/RuntimeLogger.py +0 -30
  1716. package/Binaries/Python/javonet/utils/RuntimeName.py +0 -18
  1717. package/Binaries/Python/javonet/utils/RuntimeNameHandler.py +0 -30
  1718. package/Binaries/Python/javonet/utils/StringEncodingMode.py +0 -8
  1719. package/Binaries/Python/javonet/utils/Type.py +0 -16
  1720. package/Binaries/Python/javonet/utils/UtilsConst.py +0 -42
  1721. package/Binaries/Python/javonet/utils/__init__.py +0 -0
  1722. package/Binaries/Python/javonet/utils/connectionData/IConnectionData.py +0 -18
  1723. package/Binaries/Python/javonet/utils/connectionData/InMemoryConnectionData.py +0 -23
  1724. package/Binaries/Python/javonet/utils/connectionData/TcpConnectionData.py +0 -67
  1725. package/Binaries/Python/javonet/utils/connectionData/WsConnectionData.py +0 -30
  1726. package/Binaries/Python/javonet/utils/connectionData/__init__.py +0 -0
  1727. package/Binaries/Python/javonet/utils/exception/ExceptionSerializer.py +0 -66
  1728. package/Binaries/Python/javonet/utils/exception/ExceptionThrower.py +0 -81
  1729. package/Binaries/Python/javonet/utils/exception/JavonetException.py +0 -10
  1730. package/Binaries/Python/javonet/utils/exception/__init__.py +0 -0
  1731. package/Binaries/Python/javonet/utils/messageHelper/MessageHelper.py +0 -86
  1732. package/Binaries/Python/javonet/utils/messageHelper/__init__.py +0 -0
  1733. package/Binaries/Python2/javonet/__init__.py +0 -32
  1734. package/Binaries/Python2/javonet/core/__init__.py +0 -1
  1735. package/Binaries/Python2/javonet/core/callback/__init__.py +0 -4
  1736. package/Binaries/Python2/javonet/core/callback/callbackFunc.py +0 -20
  1737. package/Binaries/Python2/javonet/core/delegateCache/DelegatesCache.py +0 -73
  1738. package/Binaries/Python2/javonet/core/delegateCache/__init__.py +0 -4
  1739. package/Binaries/Python2/javonet/core/handler/AbstractCommandHandler.py +0 -45
  1740. package/Binaries/Python2/javonet/core/handler/AbstractHandler.py +0 -9
  1741. package/Binaries/Python2/javonet/core/handler/ArrayGetItemHandler.py +0 -51
  1742. package/Binaries/Python2/javonet/core/handler/ArrayGetRankHandler.py +0 -41
  1743. package/Binaries/Python2/javonet/core/handler/ArrayGetSizeHandler.py +0 -45
  1744. package/Binaries/Python2/javonet/core/handler/ArrayHandler.py +0 -25
  1745. package/Binaries/Python2/javonet/core/handler/ArraySetItemHandler.py +0 -60
  1746. package/Binaries/Python2/javonet/core/handler/CastingHandler.py +0 -11
  1747. package/Binaries/Python2/javonet/core/handler/CreateClassInstanceHandler.py +0 -39
  1748. package/Binaries/Python2/javonet/core/handler/DestructReferenceHandler.py +0 -25
  1749. package/Binaries/Python2/javonet/core/handler/EnableNamespaceHandler.py +0 -43
  1750. package/Binaries/Python2/javonet/core/handler/EnableTypeHandler.py +0 -43
  1751. package/Binaries/Python2/javonet/core/handler/GetEnumItemHandler.py +0 -54
  1752. package/Binaries/Python2/javonet/core/handler/GetEnumNameHandler.py +0 -44
  1753. package/Binaries/Python2/javonet/core/handler/GetEnumValueHandler.py +0 -36
  1754. package/Binaries/Python2/javonet/core/handler/GetInstanceFieldHandler.py +0 -40
  1755. package/Binaries/Python2/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -43
  1756. package/Binaries/Python2/javonet/core/handler/GetStaticFieldHandler.py +0 -41
  1757. package/Binaries/Python2/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -43
  1758. package/Binaries/Python2/javonet/core/handler/GetTypeHandler.py +0 -115
  1759. package/Binaries/Python2/javonet/core/handler/Handler.py +0 -152
  1760. package/Binaries/Python2/javonet/core/handler/HandlerDictionary.py +0 -23
  1761. package/Binaries/Python2/javonet/core/handler/InvokeDelegateHandler.py +0 -56
  1762. package/Binaries/Python2/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -78
  1763. package/Binaries/Python2/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -45
  1764. package/Binaries/Python2/javonet/core/handler/InvokeStaticMethodHandler.py +0 -45
  1765. package/Binaries/Python2/javonet/core/handler/LoadLibraryHandler.py +0 -62
  1766. package/Binaries/Python2/javonet/core/handler/PassDelegateHandler.py +0 -36
  1767. package/Binaries/Python2/javonet/core/handler/ResolveInstanceHandler.py +0 -33
  1768. package/Binaries/Python2/javonet/core/handler/SetInstanceFieldHandler.py +0 -42
  1769. package/Binaries/Python2/javonet/core/handler/SetStaticFieldHandler.py +0 -43
  1770. package/Binaries/Python2/javonet/core/handler/ValueHandler.py +0 -27
  1771. package/Binaries/Python2/javonet/core/handler/__init__.py +0 -1
  1772. package/Binaries/Python2/javonet/core/interpreter/Interpreter.py +0 -36
  1773. package/Binaries/Python2/javonet/core/interpreter/__init__.py +0 -0
  1774. package/Binaries/Python2/javonet/core/namespaceCache/NamespaceCache.py +0 -69
  1775. package/Binaries/Python2/javonet/core/namespaceCache/__init__.py +0 -4
  1776. package/Binaries/Python2/javonet/core/protocol/CommandDeserializer.py +0 -237
  1777. package/Binaries/Python2/javonet/core/protocol/CommandSerializer.py +0 -56
  1778. package/Binaries/Python2/javonet/core/protocol/TypeDeserializer.py +0 -154
  1779. package/Binaries/Python2/javonet/core/protocol/TypeSerializer.py +0 -187
  1780. package/Binaries/Python2/javonet/core/protocol/__init__.py +0 -0
  1781. package/Binaries/Python2/javonet/core/receiver/Receiver.py +0 -35
  1782. package/Binaries/Python2/javonet/core/receiver/__init__.py +0 -1
  1783. package/Binaries/Python2/javonet/core/referenceCache/ReferencesCache.py +0 -57
  1784. package/Binaries/Python2/javonet/core/referenceCache/__init__.py +0 -0
  1785. package/Binaries/Python2/javonet/core/transmitter/Transmitter.py +0 -59
  1786. package/Binaries/Python2/javonet/core/transmitter/TransmitterWrapper.py +0 -102
  1787. package/Binaries/Python2/javonet/core/transmitter/__init__.py +0 -0
  1788. package/Binaries/Python2/javonet/core/typeCache/TypeCache.py +0 -69
  1789. package/Binaries/Python2/javonet/core/typeCache/__init__.py +0 -4
  1790. package/Binaries/Python2/javonet/core/webSocketClient/WebSocketClient.py +0 -39
  1791. package/Binaries/Python2/javonet/core/webSocketClient/__init__.py +0 -0
  1792. package/Binaries/Python2/javonet/utils/Command.py +0 -170
  1793. package/Binaries/Python2/javonet/utils/CommandType.py +0 -154
  1794. package/Binaries/Python2/javonet/utils/ConnectionType.py +0 -36
  1795. package/Binaries/Python2/javonet/utils/ExceptionType.py +0 -95
  1796. package/Binaries/Python2/javonet/utils/PythonStringBuilder.py +0 -38
  1797. package/Binaries/Python2/javonet/utils/RuntimeLogger.py +0 -50
  1798. package/Binaries/Python2/javonet/utils/RuntimeName.py +0 -120
  1799. package/Binaries/Python2/javonet/utils/RuntimeNameHandler.py +0 -47
  1800. package/Binaries/Python2/javonet/utils/StringEncodingMode.py +0 -38
  1801. package/Binaries/Python2/javonet/utils/Type.py +0 -68
  1802. package/Binaries/Python2/javonet/utils/UtilsConst.py +0 -38
  1803. package/Binaries/Python2/javonet/utils/__init__.py +0 -4
  1804. package/Binaries/Python2/javonet/utils/connectionData/IConnectionData.py +0 -45
  1805. package/Binaries/Python2/javonet/utils/connectionData/InMemoryConnectionData.py +0 -32
  1806. package/Binaries/Python2/javonet/utils/connectionData/TcpConnectionData.py +0 -142
  1807. package/Binaries/Python2/javonet/utils/connectionData/WsConnectionData.py +0 -75
  1808. package/Binaries/Python2/javonet/utils/connectionData/__init__.py +0 -4
  1809. package/Binaries/Python2/javonet/utils/exception/ExceptionSerializer.py +0 -94
  1810. package/Binaries/Python2/javonet/utils/exception/ExceptionThrower.py +0 -85
  1811. package/Binaries/Python2/javonet/utils/exception/JavonetException.py +0 -31
  1812. package/Binaries/Python2/javonet/utils/exception/__init__.py +0 -4
  1813. package/Binaries/Ruby/Linux/X64/core/handler/abstract_command_handler.rb +0 -24
  1814. package/Binaries/Ruby/Linux/X64/core/handler/abstract_handler.rb +0 -5
  1815. package/Binaries/Ruby/Linux/X64/core/handler/array_get_item_handler.rb +0 -47
  1816. package/Binaries/Ruby/Linux/X64/core/handler/array_get_rank_handler.rb +0 -23
  1817. package/Binaries/Ruby/Linux/X64/core/handler/array_get_size_handler.rb +0 -37
  1818. package/Binaries/Ruby/Linux/X64/core/handler/array_handler.rb +0 -12
  1819. package/Binaries/Ruby/Linux/X64/core/handler/array_set_item_handler.rb +0 -47
  1820. package/Binaries/Ruby/Linux/X64/core/handler/casting_handler.rb +0 -11
  1821. package/Binaries/Ruby/Linux/X64/core/handler/create_class_instance_handler.rb +0 -34
  1822. package/Binaries/Ruby/Linux/X64/core/handler/destruct_reference_handler.rb +0 -21
  1823. package/Binaries/Ruby/Linux/X64/core/handler/enable_namespace_handler.rb +0 -31
  1824. package/Binaries/Ruby/Linux/X64/core/handler/enable_type_handler.rb +0 -32
  1825. package/Binaries/Ruby/Linux/X64/core/handler/get_instance_field_handler.rb +0 -34
  1826. package/Binaries/Ruby/Linux/X64/core/handler/get_static_field_handler.rb +0 -34
  1827. package/Binaries/Ruby/Linux/X64/core/handler/get_type_handler.rb +0 -71
  1828. package/Binaries/Ruby/Linux/X64/core/handler/handler.rb +0 -111
  1829. package/Binaries/Ruby/Linux/X64/core/handler/handler_dictionary.rb +0 -8
  1830. package/Binaries/Ruby/Linux/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1831. package/Binaries/Ruby/Linux/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1832. package/Binaries/Ruby/Linux/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1833. package/Binaries/Ruby/Linux/X64/core/handler/load_library_handler.rb +0 -33
  1834. package/Binaries/Ruby/Linux/X64/core/handler/resolve_instance_handler.rb +0 -24
  1835. package/Binaries/Ruby/Linux/X64/core/handler/set_instance_field_handler.rb +0 -35
  1836. package/Binaries/Ruby/Linux/X64/core/handler/set_static_field_handler.rb +0 -31
  1837. package/Binaries/Ruby/Linux/X64/core/handler/value_handler.rb +0 -7
  1838. package/Binaries/Ruby/Linux/X64/core/interpreter/interpreter.rb +0 -25
  1839. package/Binaries/Ruby/Linux/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1840. package/Binaries/Ruby/Linux/X64/core/protocol/command_deserializer.rb +0 -182
  1841. package/Binaries/Ruby/Linux/X64/core/protocol/command_serializer.rb +0 -35
  1842. package/Binaries/Ruby/Linux/X64/core/protocol/type_deserializer.rb +0 -126
  1843. package/Binaries/Ruby/Linux/X64/core/protocol/type_serializer.rb +0 -259
  1844. package/Binaries/Ruby/Linux/X64/core/receiver/receiver.rb +0 -22
  1845. package/Binaries/Ruby/Linux/X64/core/reference_cache/references_cache.rb +0 -39
  1846. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter.rb +0 -58
  1847. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1848. package/Binaries/Ruby/Linux/X64/core/type_cache/type_cache.rb +0 -42
  1849. package/Binaries/Ruby/Linux/X64/utils/command.rb +0 -93
  1850. package/Binaries/Ruby/Linux/X64/utils/command_type.rb +0 -135
  1851. package/Binaries/Ruby/Linux/X64/utils/connection_type.rb +0 -4
  1852. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_serializer.rb +0 -93
  1853. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_thrower.rb +0 -65
  1854. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_type.rb +0 -10
  1855. package/Binaries/Ruby/Linux/X64/utils/runtime_logger.rb +0 -30
  1856. package/Binaries/Ruby/Linux/X64/utils/runtime_name.rb +0 -13
  1857. package/Binaries/Ruby/Linux/X64/utils/runtime_name_handler.rb +0 -40
  1858. package/Binaries/Ruby/Linux/X64/utils/string_encoding_mode.rb +0 -6
  1859. package/Binaries/Ruby/Linux/X64/utils/tcp_connection_data.rb +0 -37
  1860. package/Binaries/Ruby/Linux/X64/utils/type.rb +0 -14
  1861. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_command_handler.rb +0 -24
  1862. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_handler.rb +0 -5
  1863. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_item_handler.rb +0 -47
  1864. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_rank_handler.rb +0 -23
  1865. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_size_handler.rb +0 -37
  1866. package/Binaries/Ruby/MacOs/X64/core/handler/array_handler.rb +0 -12
  1867. package/Binaries/Ruby/MacOs/X64/core/handler/array_set_item_handler.rb +0 -47
  1868. package/Binaries/Ruby/MacOs/X64/core/handler/casting_handler.rb +0 -11
  1869. package/Binaries/Ruby/MacOs/X64/core/handler/create_class_instance_handler.rb +0 -34
  1870. package/Binaries/Ruby/MacOs/X64/core/handler/destruct_reference_handler.rb +0 -21
  1871. package/Binaries/Ruby/MacOs/X64/core/handler/enable_namespace_handler.rb +0 -31
  1872. package/Binaries/Ruby/MacOs/X64/core/handler/enable_type_handler.rb +0 -32
  1873. package/Binaries/Ruby/MacOs/X64/core/handler/get_instance_field_handler.rb +0 -34
  1874. package/Binaries/Ruby/MacOs/X64/core/handler/get_static_field_handler.rb +0 -34
  1875. package/Binaries/Ruby/MacOs/X64/core/handler/get_type_handler.rb +0 -71
  1876. package/Binaries/Ruby/MacOs/X64/core/handler/handler.rb +0 -111
  1877. package/Binaries/Ruby/MacOs/X64/core/handler/handler_dictionary.rb +0 -8
  1878. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1879. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1880. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1881. package/Binaries/Ruby/MacOs/X64/core/handler/load_library_handler.rb +0 -33
  1882. package/Binaries/Ruby/MacOs/X64/core/handler/resolve_instance_handler.rb +0 -24
  1883. package/Binaries/Ruby/MacOs/X64/core/handler/set_instance_field_handler.rb +0 -35
  1884. package/Binaries/Ruby/MacOs/X64/core/handler/set_static_field_handler.rb +0 -31
  1885. package/Binaries/Ruby/MacOs/X64/core/handler/value_handler.rb +0 -7
  1886. package/Binaries/Ruby/MacOs/X64/core/interpreter/interpreter.rb +0 -25
  1887. package/Binaries/Ruby/MacOs/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1888. package/Binaries/Ruby/MacOs/X64/core/protocol/command_deserializer.rb +0 -182
  1889. package/Binaries/Ruby/MacOs/X64/core/protocol/command_serializer.rb +0 -35
  1890. package/Binaries/Ruby/MacOs/X64/core/protocol/type_deserializer.rb +0 -126
  1891. package/Binaries/Ruby/MacOs/X64/core/protocol/type_serializer.rb +0 -259
  1892. package/Binaries/Ruby/MacOs/X64/core/receiver/receiver.rb +0 -22
  1893. package/Binaries/Ruby/MacOs/X64/core/reference_cache/references_cache.rb +0 -39
  1894. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter.rb +0 -58
  1895. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1896. package/Binaries/Ruby/MacOs/X64/core/type_cache/type_cache.rb +0 -42
  1897. package/Binaries/Ruby/MacOs/X64/utils/command.rb +0 -93
  1898. package/Binaries/Ruby/MacOs/X64/utils/command_type.rb +0 -135
  1899. package/Binaries/Ruby/MacOs/X64/utils/connection_type.rb +0 -4
  1900. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_serializer.rb +0 -93
  1901. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_thrower.rb +0 -65
  1902. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_type.rb +0 -10
  1903. package/Binaries/Ruby/MacOs/X64/utils/runtime_logger.rb +0 -30
  1904. package/Binaries/Ruby/MacOs/X64/utils/runtime_name.rb +0 -13
  1905. package/Binaries/Ruby/MacOs/X64/utils/runtime_name_handler.rb +0 -40
  1906. package/Binaries/Ruby/MacOs/X64/utils/string_encoding_mode.rb +0 -6
  1907. package/Binaries/Ruby/MacOs/X64/utils/tcp_connection_data.rb +0 -37
  1908. package/Binaries/Ruby/MacOs/X64/utils/type.rb +0 -14
  1909. package/Binaries/Ruby/Windows/X64/core/handler/abstract_command_handler.rb +0 -24
  1910. package/Binaries/Ruby/Windows/X64/core/handler/abstract_handler.rb +0 -5
  1911. package/Binaries/Ruby/Windows/X64/core/handler/array_get_item_handler.rb +0 -47
  1912. package/Binaries/Ruby/Windows/X64/core/handler/array_get_rank_handler.rb +0 -23
  1913. package/Binaries/Ruby/Windows/X64/core/handler/array_get_size_handler.rb +0 -37
  1914. package/Binaries/Ruby/Windows/X64/core/handler/array_handler.rb +0 -12
  1915. package/Binaries/Ruby/Windows/X64/core/handler/array_set_item_handler.rb +0 -47
  1916. package/Binaries/Ruby/Windows/X64/core/handler/casting_handler.rb +0 -11
  1917. package/Binaries/Ruby/Windows/X64/core/handler/create_class_instance_handler.rb +0 -34
  1918. package/Binaries/Ruby/Windows/X64/core/handler/destruct_reference_handler.rb +0 -21
  1919. package/Binaries/Ruby/Windows/X64/core/handler/enable_namespace_handler.rb +0 -31
  1920. package/Binaries/Ruby/Windows/X64/core/handler/enable_type_handler.rb +0 -32
  1921. package/Binaries/Ruby/Windows/X64/core/handler/get_instance_field_handler.rb +0 -34
  1922. package/Binaries/Ruby/Windows/X64/core/handler/get_static_field_handler.rb +0 -34
  1923. package/Binaries/Ruby/Windows/X64/core/handler/get_type_handler.rb +0 -71
  1924. package/Binaries/Ruby/Windows/X64/core/handler/handler.rb +0 -111
  1925. package/Binaries/Ruby/Windows/X64/core/handler/handler_dictionary.rb +0 -8
  1926. package/Binaries/Ruby/Windows/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1927. package/Binaries/Ruby/Windows/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1928. package/Binaries/Ruby/Windows/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1929. package/Binaries/Ruby/Windows/X64/core/handler/load_library_handler.rb +0 -33
  1930. package/Binaries/Ruby/Windows/X64/core/handler/resolve_instance_handler.rb +0 -24
  1931. package/Binaries/Ruby/Windows/X64/core/handler/set_instance_field_handler.rb +0 -35
  1932. package/Binaries/Ruby/Windows/X64/core/handler/set_static_field_handler.rb +0 -31
  1933. package/Binaries/Ruby/Windows/X64/core/handler/value_handler.rb +0 -7
  1934. package/Binaries/Ruby/Windows/X64/core/interpreter/interpreter.rb +0 -25
  1935. package/Binaries/Ruby/Windows/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1936. package/Binaries/Ruby/Windows/X64/core/protocol/command_deserializer.rb +0 -182
  1937. package/Binaries/Ruby/Windows/X64/core/protocol/command_serializer.rb +0 -35
  1938. package/Binaries/Ruby/Windows/X64/core/protocol/type_deserializer.rb +0 -126
  1939. package/Binaries/Ruby/Windows/X64/core/protocol/type_serializer.rb +0 -259
  1940. package/Binaries/Ruby/Windows/X64/core/receiver/receiver.rb +0 -22
  1941. package/Binaries/Ruby/Windows/X64/core/reference_cache/references_cache.rb +0 -39
  1942. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter.rb +0 -58
  1943. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1944. package/Binaries/Ruby/Windows/X64/core/type_cache/type_cache.rb +0 -42
  1945. package/Binaries/Ruby/Windows/X64/utils/command.rb +0 -93
  1946. package/Binaries/Ruby/Windows/X64/utils/command_type.rb +0 -135
  1947. package/Binaries/Ruby/Windows/X64/utils/connection_type.rb +0 -4
  1948. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_serializer.rb +0 -93
  1949. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_thrower.rb +0 -65
  1950. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_type.rb +0 -10
  1951. package/Binaries/Ruby/Windows/X64/utils/runtime_logger.rb +0 -30
  1952. package/Binaries/Ruby/Windows/X64/utils/runtime_name.rb +0 -13
  1953. package/Binaries/Ruby/Windows/X64/utils/runtime_name_handler.rb +0 -40
  1954. package/Binaries/Ruby/Windows/X64/utils/string_encoding_mode.rb +0 -6
  1955. package/Binaries/Ruby/Windows/X64/utils/tcp_connection_data.rb +0 -37
  1956. package/Binaries/Ruby/Windows/X64/utils/type.rb +0 -14
  1957. package/Binaries/version.txt +0 -1
  1958. package/addon/JavonetNodejsRuntimeAddon.cpp +0 -299
  1959. package/addon/JavonetNodejsRuntimeAddon.h +0 -70
  1960. package/binding.gyp +0 -8
  1961. package/dist/Javonet.d.ts +0 -4858
  1962. package/dist/index.js +0 -66
  1963. package/dist/lib/core/delegatesCache/DelegatesCache.js +0 -35
  1964. package/dist/lib/core/handler/AbstractHandler.js +0 -41
  1965. package/dist/lib/core/handler/ArrayGetItemHandler.js +0 -38
  1966. package/dist/lib/core/handler/ArrayGetRankHandler.js +0 -28
  1967. package/dist/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  1968. package/dist/lib/core/handler/ArrayHandler.js +0 -18
  1969. package/dist/lib/core/handler/ArraySetItemHandler.js +0 -43
  1970. package/dist/lib/core/handler/CastingHandler.js +0 -10
  1971. package/dist/lib/core/handler/ConvertTypeHandler.js +0 -38
  1972. package/dist/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  1973. package/dist/lib/core/handler/DestructReferenceHandler.js +0 -19
  1974. package/dist/lib/core/handler/EnableNamespaceHandler.js +0 -34
  1975. package/dist/lib/core/handler/EnableTypeHandler.js +0 -35
  1976. package/dist/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  1977. package/dist/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  1978. package/dist/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  1979. package/dist/lib/core/handler/GetStaticFieldHandler.js +0 -36
  1980. package/dist/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  1981. package/dist/lib/core/handler/GetTypeHandler.js +0 -63
  1982. package/dist/lib/core/handler/Handler.js +0 -98
  1983. package/dist/lib/core/handler/InvokeDelegateHandler.js +0 -36
  1984. package/dist/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  1985. package/dist/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  1986. package/dist/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  1987. package/dist/lib/core/handler/LoadLibraryHandler.js +0 -48
  1988. package/dist/lib/core/handler/PassDelegateHandler.js +0 -157
  1989. package/dist/lib/core/handler/ResolveReferenceHandler.js +0 -13
  1990. package/dist/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  1991. package/dist/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  1992. package/dist/lib/core/handler/SetStaticFieldHandler.js +0 -33
  1993. package/dist/lib/core/handler/ValueHandler.js +0 -13
  1994. package/dist/lib/core/interpreter/Interpreter.js +0 -142
  1995. package/dist/lib/core/namespaceCache/NamespaceCache.js +0 -39
  1996. package/dist/lib/core/protocol/CommandDeserializer.js +0 -181
  1997. package/dist/lib/core/protocol/CommandSerializer.js +0 -50
  1998. package/dist/lib/core/protocol/TypeDeserializer.js +0 -83
  1999. package/dist/lib/core/protocol/TypeSerializer.js +0 -143
  2000. package/dist/lib/core/receiver/Receiver.js +0 -32
  2001. package/dist/lib/core/receiver/ReceiverNative.js +0 -13
  2002. package/dist/lib/core/referenceCache/ReferencesCache.js +0 -30
  2003. package/dist/lib/core/transmitter/Transmitter.js +0 -21
  2004. package/dist/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  2005. package/dist/lib/core/transmitter/TransmitterWrapper.js +0 -47
  2006. package/dist/lib/core/typeCache/TypeCache.js +0 -39
  2007. package/dist/lib/core/webSocketClient/WebSocketClient.js +0 -136
  2008. package/dist/lib/declarations.d.ts +0 -64
  2009. package/dist/lib/sdk/ConfigRuntimeFactory.js +0 -155
  2010. package/dist/lib/sdk/InvocationContext.js +0 -485
  2011. package/dist/lib/sdk/Javonet.js +0 -105
  2012. package/dist/lib/sdk/RuntimeContext.js +0 -300
  2013. package/dist/lib/sdk/RuntimeFactory.js +0 -87
  2014. package/dist/lib/sdk/tools/JsonFileResolver.js +0 -101
  2015. package/dist/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2016. package/dist/lib/utils/Command.js +0 -69
  2017. package/dist/lib/utils/CommandType.js +0 -47
  2018. package/dist/lib/utils/ConnectionType.js +0 -8
  2019. package/dist/lib/utils/CustomError.js +0 -8
  2020. package/dist/lib/utils/ExceptionType.js +0 -13
  2021. package/dist/lib/utils/RuntimeLogger.js +0 -30
  2022. package/dist/lib/utils/RuntimeName.js +0 -16
  2023. package/dist/lib/utils/RuntimeNameHandler.js +0 -38
  2024. package/dist/lib/utils/StringEncodingMode.js +0 -9
  2025. package/dist/lib/utils/Type.js +0 -17
  2026. package/dist/lib/utils/TypesConverter.js +0 -91
  2027. package/dist/lib/utils/connectionData/IConnectionData.js +0 -15
  2028. package/dist/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  2029. package/dist/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2030. package/dist/lib/utils/connectionData/WsConnectionData.js +0 -50
  2031. package/dist/lib/utils/exception/ExceptionSerializer.js +0 -64
  2032. package/dist/lib/utils/exception/ExceptionThrower.js +0 -95
  2033. package/dist/lib/utils/guid/generateGuid.js +0 -9
  2034. package/dist/lib/utils/uuid/REGEX.js +0 -2
  2035. package/dist/lib/utils/uuid/rng.js +0 -12
  2036. package/dist/lib/utils/uuid/stringify.js +0 -51
  2037. package/dist/lib/utils/uuid/v4.js +0 -27
  2038. package/dist/lib/utils/uuid/validate.js +0 -6
  2039. package/lib/sdk/tools/JsonFileResolver.js +0 -101
  2040. package/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2041. package/lib/utils/TypesConverter.js +0 -91
  2042. package/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2043. package/lib/utils/uuid/REGEX.js +0 -2
  2044. package/lib/utils/uuid/rng.js +0 -12
  2045. package/lib/utils/uuid/stringify.js +0 -51
  2046. package/lib/utils/uuid/v4.js +0 -27
  2047. package/lib/utils/uuid/validate.js +0 -6
package/dist/Javonet.d.ts DELETED
@@ -1,4858 +0,0 @@
1
- declare module "Binaries/Nodejs/lib/utils/CommandType" {
2
- export let Value: 0;
3
- export let LoadLibrary: 1;
4
- export let InvokeStaticMethod: 2;
5
- export let GetStaticField: 3;
6
- export let SetStaticField: 4;
7
- export let CreateClassInstance: 5;
8
- export let GetType: 6;
9
- export let Reference: 7;
10
- export let GetModule: 8;
11
- export let InvokeInstanceMethod: 9;
12
- export let Exception: 10;
13
- export let HeartBeat: 11;
14
- export let Cast: 12;
15
- export let GetInstanceField: 13;
16
- export let Optimize: 14;
17
- export let GenerateLib: 15;
18
- export let InvokeGlobalFunction: 16;
19
- export let DestructReference: 17;
20
- export let ArrayReference: 18;
21
- export let ArrayGetItem: 19;
22
- export let ArrayGetSize: 20;
23
- export let ArrayGetRank: 21;
24
- export let ArraySetItem: 22;
25
- export let Array: 23;
26
- export let RetrieveArray: 24;
27
- export let SetInstanceField: 25;
28
- export let InvokeGenericStaticMethod: 26;
29
- export let InvokeGenericMethod: 27;
30
- export let GetEnumItem: 28;
31
- export let GetEnumName: 29;
32
- export let GetEnumValue: 30;
33
- export let AsRef: 31;
34
- export let AsOut: 32;
35
- export let GetRefValue: 33;
36
- export let EnableNamespace: 34;
37
- export let EnableType: 35;
38
- export let CreateNull: 36;
39
- export let GetStaticMethodAsDelegate: 37;
40
- export let GetInstanceMethodAsDelegate: 38;
41
- export let PassDelegate: 39;
42
- export let InvokeDelegate: 40;
43
- export let ConvertType: 41;
44
- }
45
- declare module "Binaries/Nodejs/lib/utils/Command" {
46
- export = Command;
47
- class Command {
48
- /**
49
- * @param {any} [response]
50
- * @param {number} runtimeName
51
- */
52
- static createResponse(response?: any, runtimeName: number): Command;
53
- /**
54
- * @param {any} [response]
55
- * @param {number} runtimeName
56
- * @method
57
- */
58
- static createReference(response?: any, runtimeName: number): Command;
59
- /**
60
- * @param {any} [response]
61
- * @param {number} runtimeName
62
- * @returns {Command}
63
- * @method
64
- */
65
- static createArrayResponse(response?: any, runtimeName: number): Command;
66
- /**
67
- * Constructs a new Command instance.
68
- * @param {number} runtimeName - The runtime name associated with the command.
69
- * @param {number} commandType - The type of the command.
70
- * @param {any} [payload] - The optional payload of the command.
71
- * @method
72
- */
73
- constructor(runtimeName: number, commandType: number, payload?: any);
74
- runtimeName: number;
75
- commandType: number;
76
- payload: any;
77
- dropFirstPayloadArg(): Command;
78
- /**
79
- * @param {any} arg
80
- * @returns {Command}
81
- */
82
- addArgToPayload(arg: any): Command;
83
- /**
84
- * @param {Command|null} current_command
85
- * @returns {Command}
86
- */
87
- prependArgToPayload(current_command: Command | null): Command;
88
- }
89
- }
90
- declare module "Binaries/Nodejs/lib/utils/StringEncodingMode" {
91
- export let ASCII: 0;
92
- export let UTF8: 1;
93
- export let UTF16: 2;
94
- export let UTF32: 3;
95
- }
96
- declare module "Binaries/Nodejs/lib/core/protocol/TypeDeserializer" {
97
- export = TypeDeserializer;
98
- class TypeDeserializer {
99
- static deserializeCommand(encodedCommand: any): Command;
100
- static deserializeString(stringEncodingMode: any, encodedString: any): string;
101
- static deserializeInt(encodedInt: any): number;
102
- static deserializeBool(encodedBool: any): boolean;
103
- static deserializeFloat(encodedFloat: any): number;
104
- static deserializeByte(encodedByte: any): number;
105
- static deserializeChar(encodedChar: any): number;
106
- static deserializeLongLong(encodedLongLong: any): bigint;
107
- static deserializeDouble(encodedDouble: any): number;
108
- static deserializeULLong(encodedULLong: any): bigint;
109
- static deserializeUInt(encodedUInt: any): number;
110
- static deserializeNull(encodedNull?: null): null;
111
- }
112
- import Command = require("Binaries/Nodejs/lib/utils/Command");
113
- }
114
- declare module "Binaries/Nodejs/lib/utils/Type" {
115
- export let JAVONET_COMMAND: 0;
116
- export let JAVONET_STRING: 1;
117
- export let JAVONET_INTEGER: 2;
118
- export let JAVONET_BOOLEAN: 3;
119
- export let JAVONET_FLOAT: 4;
120
- export let JAVONET_BYTE: 5;
121
- export let JAVONET_CHAR: 6;
122
- export let JAVONET_LONG_LONG: 7;
123
- export let JAVONET_DOUBLE: 8;
124
- export let JAVONET_UNSIGNED_LONG_LONG: 9;
125
- export let JAVONET_UNSIGNED_INTEGER: 10;
126
- export let JAVONET_NULL: 11;
127
- }
128
- declare module "Binaries/Nodejs/lib/core/protocol/CommandDeserializer" {
129
- export = CommandDeserializer;
130
- class CommandDeserializer {
131
- constructor(buffer: any);
132
- buffer: any;
133
- command: Command;
134
- position: number;
135
- /**
136
- * @returns {Command}
137
- */
138
- deserialize(): Command;
139
- isAtEnd(): boolean;
140
- readObject(typeNum: any): string | number | bigint | boolean | Command | (() => bigint) | null;
141
- readCommand(): Command;
142
- readString(): string;
143
- readInt(): number;
144
- readBool(): boolean;
145
- readFloat(): number;
146
- readByte(): number;
147
- readChar(): number;
148
- readLongLong(): bigint;
149
- readDouble(): number;
150
- readUllong(): bigint;
151
- readUInt(): number;
152
- readNull(): null;
153
- }
154
- import Command = require("Binaries/Nodejs/lib/utils/Command");
155
- }
156
- declare module "Binaries/Nodejs/lib/utils/CustomError" {
157
- export = CustomError;
158
- class CustomError extends Error {
159
- constructor(message: any, cause: any);
160
- }
161
- }
162
- declare module "Binaries/Nodejs/lib/core/protocol/TypeSerializer" {
163
- export = TypeSerializer;
164
- class TypeSerializer {
165
- static serializePrimitive(payload_item: any): Buffer<ArrayBuffer>;
166
- static serializeCommand(command: any): Buffer<ArrayBuffer>;
167
- static serializeString(string_value: any): Buffer<ArrayBuffer>;
168
- static serializeInt(int_value: any): Buffer<ArrayBuffer>;
169
- static serializeBool(bool_value: any): Buffer<ArrayBuffer>;
170
- static serializeFloat(float_value: any): Buffer<ArrayBuffer>;
171
- static serializeByte(byte_value: any): Buffer<ArrayBuffer>;
172
- static serializeChar(char_value: any): Buffer<ArrayBuffer>;
173
- static serializeLongLong(longlong_value: any): Buffer<ArrayBuffer>;
174
- static serializeDouble(double_value: any): Buffer<ArrayBuffer>;
175
- static serializeULLong(ullong_value: any): Buffer<ArrayBuffer>;
176
- static serializeUInt(uint_value: any): Buffer<ArrayBuffer>;
177
- static serializeNull(): Buffer<ArrayBuffer>;
178
- static serializeIntValue(int_value: any): Buffer<ArrayBuffer>;
179
- }
180
- import { Buffer } from "buffer";
181
- }
182
- declare module "Binaries/Nodejs/lib/utils/RuntimeName" {
183
- export let Clr: 0;
184
- export let Go: 1;
185
- export let Jvm: 2;
186
- export let Netcore: 3;
187
- export let Perl: 4;
188
- export let Python: 5;
189
- export let Ruby: 6;
190
- export let Nodejs: 7;
191
- export let Cpp: 8;
192
- export let Php: 9;
193
- export let Python27: 10;
194
- }
195
- declare module "Binaries/Nodejs/lib/core/protocol/CommandSerializer" {
196
- export = CommandSerializer;
197
- class CommandSerializer {
198
- serialize(rootCommand: any, connectionData: any): Uint8Array<any>;
199
- serializeRecursively(command: any, buffers: any): void;
200
- }
201
- }
202
- declare module "Binaries/Nodejs/lib/utils/ConnectionType" {
203
- export let IN_MEMORY: 0;
204
- export let TCP: 1;
205
- export let WEB_SOCKET: 2;
206
- }
207
- declare module "Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient" {
208
- export = WebSocketClient;
209
- /**
210
- * WebSocketClient class that handles WebSocket connection, message sending, and automatic disconnection.
211
- */
212
- class WebSocketClient {
213
- /**
214
- * @param {string} url
215
- * @param {object} options
216
- */
217
- constructor(url: string, options: object);
218
- /**
219
- * @type {string}
220
- */
221
- url: string;
222
- /**
223
- * @type {WebSocket | null}
224
- */
225
- instance: WebSocket | null;
226
- /**
227
- * @type {boolean} isConnected indicates whether the WebSocket is connected.
228
- */
229
- isConnected: boolean;
230
- /**
231
- * @type {boolean}
232
- */
233
- isDisconnectedAfterMessage: boolean;
234
- /**
235
- * Connects to the WebSocket server.
236
- * @async
237
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
238
- */
239
- connect(): Promise<WebSocket>;
240
- /**
241
- * Sends messageArray through websocket connection
242
- * @async
243
- * @param {Buffer|ArrayBuffer|Buffer[]} messageArray
244
- * @returns {Promise<Buffer|ArrayBuffer|Buffer[]>}
245
- */
246
- send(messageArray: Buffer | ArrayBuffer | Buffer[]): Promise<Buffer | ArrayBuffer | Buffer[]>;
247
- /**
248
- * Disconnects the WebSocket by terminating the connection.
249
- */
250
- disconnect(): void;
251
- /**
252
- * Connects to the WebSocket server.
253
- * @private
254
- * @async
255
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
256
- */
257
- private _connect;
258
- }
259
- }
260
- declare module "Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket" {
261
- export = TransmitterWebsocket;
262
- /** @typedef {import('../../../../core/lib/declarations').WsConnectionData} WsConnectionData */
263
- class TransmitterWebsocket {
264
- /**
265
- * @returns {void}
266
- */
267
- static initialize(): void;
268
- /**
269
- * @returns {void}
270
- */
271
- static setConfigSource(): void;
272
- /**
273
- * @returns {void}
274
- */
275
- static activate(): void;
276
- /**
277
- * @async
278
- * @param {number[]} messageByteArray
279
- * @param {WsConnectionData} connectionData
280
- * @returns {Promise<number[]>} responseByteArray
281
- */
282
- static sendCommand(messageByteArray: number[], connectionData: WsConnectionData): Promise<number[]>;
283
- }
284
- namespace TransmitterWebsocket {
285
- export { WsConnectionData };
286
- }
287
- type WsConnectionData = any;
288
- }
289
- declare module "Binaries/Nodejs/lib/core/interpreter/Interpreter" {
290
- export = Interpreter;
291
- class Interpreter {
292
- handler: any;
293
- /**
294
- *
295
- * @param {Command} command
296
- * @param {IConnectionData} connectionData
297
- * @returns
298
- */
299
- executeAsync(command: Command, connectionData: IConnectionData): Promise<import("Binaries/Nodejs/lib/utils/Command") | undefined>;
300
- /**
301
- *
302
- * @param {Command} command
303
- * @param {WsConnectionData} connectionData
304
- * @returns {Promise<Command>}
305
- */
306
- execute(command: Command, connectionData: WsConnectionData): Promise<Command>;
307
- /**
308
- *
309
- * @param {number[]} messageByteArray
310
- * @returns {Command}
311
- */
312
- process(messageByteArray: number[]): Command;
313
- }
314
- namespace Interpreter {
315
- export { WsConnectionData };
316
- }
317
- type WsConnectionData = any;
318
- }
319
- declare module "Binaries/Nodejs/lib/utils/guid/generateGuid" {
320
- export = generateGUID;
321
- function generateGUID(): string;
322
- }
323
- declare module "Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache" {
324
- const _exports: DelegatesCache;
325
- export = _exports;
326
- /**
327
- * A cache for storing and retrieving delegates.
328
- */
329
- class DelegatesCache {
330
- cache: Map<any, any>;
331
- /**
332
- * Adds a delegate to the cache and returns its unique ID.
333
- * @param {Function} delegateInstance - The delegate function to store.
334
- * @returns {string} The unique ID for the delegate.
335
- */
336
- addDelegate(delegateInstance: Function): string;
337
- /**
338
- * Retrieves a delegate by its unique ID.
339
- * @param {string} delegateId - The unique ID of the delegate.
340
- * @returns {Function} The delegate function.
341
- * @throws {Error} If the delegate is not found.
342
- */
343
- getDelegate(delegateId: string): Function;
344
- }
345
- }
346
- declare module "Binaries/Nodejs/lib/utils/ExceptionType" {
347
- export let EXCEPTION: 0;
348
- export let IO_EXCEPTION: 1;
349
- export let FILE_NOT_FOUND_EXCEPTION: 2;
350
- export let RUNTIME_EXCEPTION: 3;
351
- export let ARITHMETIC_EXCEPTION: 4;
352
- export let ILLEGAL_ARGUMENT_EXCEPTION: 5;
353
- export let INDEX_OUT_OF_BOUNDS_EXCEPTION: 6;
354
- export let NULL_POINTER_EXCEPTION: 7;
355
- }
356
- declare module "Binaries/Nodejs/lib/utils/exception/ExceptionThrower" {
357
- export = ExceptionThrower;
358
- class ExceptionThrower {
359
- static throwException(commandException: any): Error;
360
- static serializeStack(stackTraceClasses: any, stackTraceMethods: any, stackTraceLines: any, stackTraceFiles: any): string;
361
- }
362
- }
363
- declare module "Binaries/Nodejs/lib/sdk/InvocationContext" {
364
- /**
365
- * InvocationContext is a class that represents a context for invoking commands.
366
- * It implements several interfaces for different types of interactions.
367
- * This class is used to construct chains of invocations, representing expressions of interaction that have not yet been executed.
368
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/invocation-context)
369
- * @class
370
- */
371
- export class InvocationContext {
372
- constructor(runtimeName: any, connectionData: any, command: any, isExecuted?: boolean);
373
- get_current_command(): any;
374
- /**
375
- * Executes the current command.
376
- * Because invocation context is building the intent of executing particular expression on target environment, we call the initial state of invocation context as non-materialized.
377
- * The non-materialized context wraps either single command or chain of recursively nested commands.
378
- * Commands are becoming nested through each invocation of methods on Invocation Context.
379
- * Each invocation triggers the creation of new Invocation Context instance wrapping the current command with new parent command valid for invoked method.
380
- * Developer can decide on any moment of the materialization for the context taking full control of the chunks of the expression being transferred and processed on target runtime.
381
- * @returns {InvocationContext} the InvocationContext after executing the command.
382
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
383
- * @method
384
- */
385
- execute(): InvocationContext;
386
- /**
387
- * Invokes a static method on the target runtime.
388
- * @param {string} methodName - The name of the method to invoke.
389
- * @param {...any} args - Method arguments.
390
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the static method.
391
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/invoking-static-method)
392
- * @method
393
- */
394
- invokeStaticMethod(methodName: string, ...args: any[]): InvocationContext;
395
- /**
396
- * Retrieves the value of a static field from the target runtime.
397
- * @param {string} fieldName - The name of the field to get.
398
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the static field.
399
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-static-fields-and-properties)
400
- * @method
401
- */
402
- getStaticField(fieldName: string): InvocationContext;
403
- /**
404
- * Sets the value of a static field in the target runtime.
405
- * @param {string} fieldName - The name of the field to set.
406
- * @param {any} value - The new value of the field.
407
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the static field.
408
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-static-fields-and-properties)
409
- * @method
410
- */
411
- setStaticField(fieldName: string, value: any): InvocationContext;
412
- /**
413
- * Creates a new instance of a class in the target runtime.
414
- * @param {...any} args - The arguments to pass to the class constructor
415
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to create the instance.
416
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/creating-instance-and-calling-instance-methods)
417
- * @method
418
- */
419
- createInstance(...args: any[]): InvocationContext;
420
- /**
421
- * Retrieves the value of an instance field from the target runtime.
422
- * @param {string} fieldName - The name of the field to get.
423
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the instance field.
424
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-instance-fields-and-properties)
425
- * @method
426
- */
427
- getInstanceField(fieldName: string): InvocationContext;
428
- /**
429
- * Sets the value of an instance field in the target runtime.
430
- * @param {string} fieldName - The name of the field to set.
431
- * @param {any} value - The new value of the field.
432
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the instance field.
433
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-instance-fields-and-properties)
434
- * @method
435
- */
436
- setInstanceField(fieldName: string, value: any): InvocationContext;
437
- /**
438
- * Invokes an instance method on the target runtime.
439
- * @param {string} methodName - The name of the method to invoke.
440
- * @param {...any} args - Method arguments.
441
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the instance method.
442
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/invoking-instance-method)
443
- * @method
444
- */
445
- invokeInstanceMethod(methodName: string, ...args: any[]): InvocationContext;
446
- /**
447
- * Retrieves the value at a specific index in an array from the target runtime.
448
- * @param {...any} indexes - the arguments to pass to the array getter. The first argument should be the index.
449
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the index.
450
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
451
- * @method
452
- */
453
- getIndex(...indexes: any[]): InvocationContext;
454
- /**
455
- * Sets the value at a specific index in an array in the target runtime.
456
- * @param {number[]} indexes - The index to set the value at.
457
- * @param {any} value - The value to set at the index.
458
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the index.
459
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
460
- * @method
461
- */
462
- setIndex(indexes: number[], value: any): InvocationContext;
463
- /**
464
- * Retrieves the size of an array from the target runtime.
465
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the size.
466
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
467
- * @method
468
- */
469
- getSize(): InvocationContext;
470
- /**
471
- * Retrieves the rank of an array from the target runtime.
472
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the rank.
473
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
474
- * @method
475
- */
476
- getRank(): InvocationContext;
477
- /**
478
- * Invokes a generic static method on the target runtime.
479
- * @param {string} methodName - The name of the method to invoke.
480
- * @param {...any} args - Method arguments.
481
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the generic static method.
482
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/generics/calling-generic-static-method)
483
- * @method
484
- */
485
- invokeGenericStaticMethod(methodName: string, ...args: any[]): InvocationContext;
486
- /**
487
- * Invokes a generic method on the target runtime.
488
- * @param {string} methodName - The name of the method to invoke.
489
- * @param {...any} args - Method arguments.
490
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the generic method.
491
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/generics/calling-generic-instance-method)
492
- * @method
493
- */
494
- invokeGenericMethod(methodName: string, ...args: any[]): InvocationContext;
495
- /**
496
- * Retrieves the name of an enum from the target runtime.
497
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the enum name.
498
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
499
- * @method
500
- */
501
- getEnumName(): InvocationContext;
502
- /**
503
- * Retrieves the value of an enum from the target runtime.
504
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the enum value.
505
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
506
- * @method
507
- */
508
- getEnumValue(): InvocationContext;
509
- /**
510
- * Retrieves the value of a reference from the target runtime.
511
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the ref value.
512
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-ref-keyword)
513
- * @method
514
- */
515
- getRefValue(): InvocationContext;
516
- /**
517
- * Creates a null object of a specific type on the target runtime.
518
- *
519
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
520
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/null-handling/create-null-object)
521
- * @method
522
- */
523
- createNull(): InvocationContext;
524
- /**
525
- * Creates a null object of a specific type on the target runtime.
526
- * @param {string} methodName - The name of the method to invoke.
527
- * @param {...any} args - Method arguments.
528
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
529
- * TODO: connect documentation page url
530
- * @see [Javonet Guides](https://www.javonet.com/guides/)
531
- * @method
532
- */
533
- getStaticMethodAsDelegate(methodName: string, ...args: any[]): InvocationContext;
534
- /**
535
- * Creates a null object of a specific type on the target runtime.
536
- * @param {string} methodName - The name of the method to invoke.
537
- * @param {...any} args - Method arguments.
538
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
539
- * TODO: connect documentation page url
540
- * @see [Javonet Guides](https://www.javonet.com/guides/)
541
- * @method
542
- */
543
- getInstanceMethodAsDelegate(methodName: string, ...args: any[]): InvocationContext;
544
- /**
545
- * Retrieves an array from the target runtime.
546
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to retrieve the array.
547
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/retrieve-array)
548
- * @method
549
- */
550
- retrieveArray(): InvocationContext;
551
- /**
552
- * Returns the primitive value from the target runtime. This could be any primitive type in JavaScript,
553
- * such as int, boolean, byte, char, long, double, float, etc.
554
- * @returns {Command} The value of the current command.
555
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
556
- * @method
557
- */
558
- getValue(): Command;
559
- [Symbol.iterator]: () => {
560
- next: () => {
561
- value: any;
562
- done: boolean;
563
- };
564
- };
565
- #private;
566
- }
567
- export class InvocationWsContext extends InvocationContext {
568
- #private;
569
- }
570
- import Command = require("Binaries/Nodejs/lib/utils/Command");
571
- }
572
- declare module "Binaries/Nodejs/lib/sdk/RuntimeContext" {
573
- export = RuntimeContext;
574
- /**
575
- * Represents a single context which allows interaction with a selected technology.
576
- * Refers to a single instance of the called runtime within a particular target OS process.
577
- * This can be either the local currently running process (inMemory) or a particular remote process identified by the IP Address and PORT of the target Javonet instance.
578
- * Multiple Runtime Contexts can be initialized within one process.
579
- * Calling the same technology on inMemory communication channel will return the existing instance of runtime context.
580
- * Calling the same technology on TCP channel but on different nodes will result in unique Runtime Contexts.
581
- * Within the runtime context, any number of libraries can be loaded and any objects from the target technology can be interacted with, as they are aware of each other due to sharing the same memory space and same runtime instance.
582
- * @see [Javonet Guides]{@link https://www.javonet.com/guides/v2/javascript/foundations/runtime-context}
583
- * @class
584
- */
585
- class RuntimeContext {
586
- static memoryRuntimeContexts: Map<any, any>;
587
- static networkRuntimeContexts: Map<any, any>;
588
- static webSocketRuntimeContexts: Map<any, any>;
589
- static getGeneratorHandler(): any;
590
- static getInstance(runtimeName: any, connectionData: any): any;
591
- constructor(runtimeName: any, connectionData: any);
592
- runtimeName: any;
593
- connectionData: any;
594
- /**
595
- * Executes the current command. The initial state of RuntimeContext is non-materialized,
596
- * wrapping either a single command or a chain of recursively nested commands.
597
- * Commands become nested through each invocation of methods on RuntimeContext.
598
- * Each invocation triggers the creation of a new RuntimeContext instance wrapping the current command with a new parent command.
599
- * The developer can decide at any moment of the materialization for the context, taking full control of the chunks of the expression being transferred and processed on the target runtime.
600
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
601
- * @method
602
- */
603
- execute(): void;
604
- /**
605
- * Adds a reference to a library. Javonet allows you to reference and use modules or packages written in various languages.
606
- * This method allows you to use any library from all supported technologies. The necessary libraries need to be referenced.
607
- * The argument is a relative or full path to the library. If the library has dependencies on other libraries, the latter needs to be added first.
608
- * After referencing the library, any objects stored in this package can be used. Use static classes, create instances, call methods, use fields and properties, and much more.
609
- * @param {string} libraryPath - The relative or full path to the library.
610
- * @returns {RuntimeContext} RuntimeContext instance.
611
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/adding-references-to-libraries)
612
- * @method
613
- */
614
- loadLibrary(libraryPath: string): RuntimeContext;
615
- /**
616
- * Retrieves a reference to a specific type. The type can be a class, interface or enum. The type can be retrieved from any referenced library.
617
- * @param {string} typeName - The full name of the type.
618
- * @param {...any} args - The arguments to be passed, if needed
619
- * @returns {InvocationContext} InvocationContext instance, that wraps the command to get the type.
620
- * @method
621
- */
622
- getType(typeName: string, ...args: any[]): InvocationContext;
623
- /**
624
- * Casts the provided value to a specific type. This method is used when invoking methods that require specific types of arguments.
625
- * The arguments include the target type and the value to be cast. The target type must be retrieved from the called runtime using the getType method.
626
- * After casting the value, it can be used as an argument when invoking methods.
627
- * @param {...any} args - The target type and the value to be cast.
628
- * @returns {InvocationContext} InvocationContext instance that wraps the command to cast the value.
629
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/casting/casting)
630
- * @method
631
- */
632
- cast(...args: any[]): InvocationContext;
633
- /**
634
- * Retrieves a specific item from an enum type. This method is used when working with enums from the called runtime.
635
- * The arguments include the enum type and the name of the item. The enum type must be retrieved from the called runtime using the getType method.
636
- * After retrieving the item, it can be used as an argument when invoking methods or for other operations.
637
- * @param {...any} args - The enum type and the name of the item.
638
- * @returns {InvocationContext} InvocationContext instance that wraps the command to get the enum item.
639
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
640
- * @method
641
- */
642
- getEnumItem(...args: any[]): InvocationContext;
643
- /**
644
- * Creates a reference type argument that can be passed to a method with a ref parameter modifier. This method is used when working with methods from the called runtime that require arguments to be passed by reference.
645
- * The arguments include the value and optionally the type of the reference. The type must be retrieved from the called runtime using the getType method.
646
- * After creating the reference, it can be used as an argument when invoking methods.
647
- * @param {...any} args - The value and optionally the type of the reference.
648
- * @returns {InvocationContext} InvocationContext instance that wraps the command to create a reference as ref.
649
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-ref-keyword)
650
- * @method
651
- */
652
- asRef(...args: any[]): InvocationContext;
653
- /**
654
- * Creates a reference type argument that can be passed to a method with an out parameter modifier. This method is used when working with methods from the called runtime that require arguments to be passed by reference.
655
- * The arguments include the value and optionally the type of the reference. The type must be retrieved from the called runtime using the getType method.
656
- * After creating the reference, it can be used as an argument when invoking methods.
657
- * @param {...any} args - The value and optionally the type of the reference.
658
- * @returns {InvocationContext} InvocationContext instance that wraps the command to create a reference as out.
659
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-out-keyword |Passing Arguments by Reference with out Keyword Guide)
660
- * @method
661
- */
662
- asOut(...args: any[]): InvocationContext;
663
- /**
664
- * Invokes a function from the called runtime. This method is used when working with functions from the called runtime.
665
- * The arguments include the function name and the arguments to be passed to the function.
666
- * After invoking the function, the result can be used for further operations.
667
- * @param {string} functionName - The name of the function to invoke.
668
- * @param {...any} args - The arguments to be passed to the function.
669
- * @returns {InvocationContext} InvocationContext instance that wraps the command to invoke the function.
670
- * @see [Invoking Functions Guide](https://www.javonet.com/guides/v2/csharp/functions/invoking-functions)
671
- * @method
672
- */
673
- invokeGlobalFunction(functionName: string, ...args: any[]): InvocationContext;
674
- healthCheck(): void;
675
- #private;
676
- }
677
- import { InvocationContext } from "Binaries/Nodejs/lib/sdk/InvocationContext";
678
- }
679
- declare module "Binaries/Nodejs/lib/sdk/RuntimeFactory" {
680
- export = RuntimeFactory;
681
- /**
682
- * The RuntimeFactory class provides methods for creating runtime contexts.
683
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
684
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
685
- */
686
- class RuntimeFactory {
687
- constructor(connectionData: any);
688
- connectionData: any;
689
- /**
690
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
691
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
692
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
693
- */
694
- clr(): RuntimeContext;
695
- /**
696
- * Creates RuntimeContext instance to interact with the JVM runtime.
697
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
698
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
699
- */
700
- jvm(): RuntimeContext;
701
- /**
702
- * Creates RuntimeContext instance to interact with the .NET runtime.
703
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
704
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
705
- */
706
- netcore(): RuntimeContext;
707
- /**
708
- * Creates RuntimeContext instance to interact with the Perl runtime.
709
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
710
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
711
- */
712
- perl(): RuntimeContext;
713
- /**
714
- * Creates RuntimeContext instance to interact with the Python runtime.
715
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
716
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
717
- */
718
- python(): RuntimeContext;
719
- /**
720
- * Creates RuntimeContext instance to interact with the Ruby runtime.
721
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
722
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
723
- */
724
- ruby(): RuntimeContext;
725
- /**
726
- * Creates RuntimeContext instance to interact with Node.js runtime.
727
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
728
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
729
- */
730
- nodejs(): RuntimeContext;
731
- /**
732
- * Creates RuntimeContext instance to interact with the Python runtime.
733
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
734
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
735
- */
736
- python27(): RuntimeContext;
737
- }
738
- import RuntimeContext = require("Binaries/Nodejs/lib/sdk/RuntimeContext");
739
- }
740
- declare module "Binaries/Nodejs/lib/utils/RuntimeNameHandler" {
741
- export = RuntimeNameHandler;
742
- class RuntimeNameHandler {
743
- /**
744
- * @param {number} runtimeName
745
- * @returns {string}
746
- */
747
- static getName(runtimeName: number): string;
748
- }
749
- }
750
- declare module "Binaries/Nodejs/lib/utils/connectionData/IConnectionData" {
751
- export = IConnectionData;
752
- class IConnectionData {
753
- get connectionType(): void;
754
- get hostname(): void;
755
- serializeConnectionData(): void;
756
- }
757
- }
758
- declare module "Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData" {
759
- export = InMemoryConnectionData;
760
- /**
761
- * @extends IConnectionData
762
- */
763
- class InMemoryConnectionData extends IConnectionData {
764
- _connectionType: 0;
765
- _hostname: string;
766
- get connectionType(): 0;
767
- get hostname(): string;
768
- serializeConnectionData(): number[];
769
- /**
770
- * @param {InMemoryConnectionData} other
771
- * @returns {boolean}
772
- */
773
- equals(other: InMemoryConnectionData): boolean;
774
- }
775
- import IConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/IConnectionData");
776
- }
777
- declare module "Binaries/Nodejs/lib/utils/connectionData/WsConnectionData" {
778
- export = WsConnectionData;
779
- /** @typedef {import('../../declarations').ConnectionType} ConnectionType */
780
- /**
781
- * Represents WebSocket connection data.
782
- * @extends IConnectionData
783
- */
784
- class WsConnectionData extends IConnectionData {
785
- /**
786
- * @param {string} hostname - The hostname of the connection.
787
- */
788
- constructor(hostname: string);
789
- /** @private @type {string} */
790
- private _hostname;
791
- /** @private @type {ConnectionType} */
792
- private _connectionType;
793
- /** @type {ConnectionType} */
794
- get connectionType(): ConnectionType;
795
- /** @type {string} */
796
- set hostname(value: string);
797
- /** @type {string} */
798
- get hostname(): string;
799
- /**
800
- * Serializes the connection data.
801
- * @returns {number[]} An array of connection data values.
802
- */
803
- serializeConnectionData(): number[];
804
- equals(other: any): boolean;
805
- }
806
- namespace WsConnectionData {
807
- export { ConnectionType };
808
- }
809
- import IConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/IConnectionData");
810
- type ConnectionType = import("Binaries/Nodejs/lib/declarations").ConnectionType;
811
- }
812
- declare module "Binaries/Nodejs/lib/utils/exception/ExceptionSerializer" {
813
- export = ExceptionSerializer;
814
- class ExceptionSerializer {
815
- static serializeException(exception: any, command: any): Command;
816
- static getExceptionCode(exception: any): 0 | 5 | 6;
817
- static serializeStackTrace(exception: any, stackClasses: any, stackMethods: any, stackLines: any, stackFiles: any): void;
818
- }
819
- import Command = require("Binaries/Nodejs/lib/utils/Command");
820
- }
821
- declare module "Binaries/Nodejs/index" {
822
- import CommandSerializer = require("Binaries/Nodejs/lib/core/protocol/CommandSerializer");
823
- import CommandDeserializer = require("Binaries/Nodejs/lib/core/protocol/CommandDeserializer");
824
- import TypeDeserializer = require("Binaries/Nodejs/lib/core/protocol/TypeDeserializer");
825
- import TypeSerializer = require("Binaries/Nodejs/lib/core/protocol/TypeSerializer");
826
- import Interpreter = require("Binaries/Nodejs/lib/core/interpreter/Interpreter");
827
- import DelegatesCache = require("Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache");
828
- import { InvocationContext } from "Binaries/Nodejs/lib/sdk/InvocationContext";
829
- import { InvocationWsContext } from "Binaries/Nodejs/lib/sdk/InvocationContext";
830
- import RuntimeContext = require("Binaries/Nodejs/lib/sdk/RuntimeContext");
831
- import RuntimeFactory = require("Binaries/Nodejs/lib/sdk/RuntimeFactory");
832
- import Command = require("Binaries/Nodejs/lib/utils/Command");
833
- import CommandType = require("Binaries/Nodejs/lib/utils/CommandType");
834
- import ConnectionType = require("Binaries/Nodejs/lib/utils/ConnectionType");
835
- import ExceptionType = require("Binaries/Nodejs/lib/utils/ExceptionType");
836
- import RuntimeName = require("Binaries/Nodejs/lib/utils/RuntimeName");
837
- import RuntimeNameHandler = require("Binaries/Nodejs/lib/utils/RuntimeNameHandler");
838
- import StringEncodingMode = require("Binaries/Nodejs/lib/utils/StringEncodingMode");
839
- import Type = require("Binaries/Nodejs/lib/utils/Type");
840
- import IConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/IConnectionData");
841
- import InMemoryConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData");
842
- import WsConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/WsConnectionData");
843
- import ExceptionSerializer = require("Binaries/Nodejs/lib/utils/exception/ExceptionSerializer");
844
- import ExceptionThrower = require("Binaries/Nodejs/lib/utils/exception/ExceptionThrower");
845
- export { CommandSerializer, CommandDeserializer, TypeDeserializer, TypeSerializer, Interpreter, DelegatesCache, InvocationContext, InvocationWsContext, RuntimeContext, RuntimeFactory, Command, CommandType, ConnectionType, ExceptionType, RuntimeName, RuntimeNameHandler, StringEncodingMode, Type, IConnectionData, InMemoryConnectionData, WsConnectionData, ExceptionSerializer, ExceptionThrower };
846
- }
847
- declare module "Binaries/Nodejs/lib/core/handler/AbstractHandler" {
848
- export = AbstractHandler;
849
- class AbstractHandler {
850
- handlers: any[];
851
- process(command: any): void;
852
- handleCommand(command: any): void;
853
- iterate(cmd: any): void;
854
- process_stack_trace(error: any, class_name: any): any;
855
- }
856
- }
857
- declare module "Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler" {
858
- const _exports: ArrayGetItemHandler;
859
- export = _exports;
860
- class ArrayGetItemHandler extends AbstractHandler {
861
- requiredParametersCount: number;
862
- process(command: any): any;
863
- }
864
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
865
- }
866
- declare module "Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler" {
867
- const _exports: ArrayGetRankHandler;
868
- export = _exports;
869
- class ArrayGetRankHandler extends AbstractHandler {
870
- requiredParametersCount: number;
871
- process(command: any): number;
872
- }
873
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
874
- }
875
- declare module "Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler" {
876
- const _exports: ArrayGetSizeHandler;
877
- export = _exports;
878
- class ArrayGetSizeHandler extends AbstractHandler {
879
- requiredParametersCount: number;
880
- process(command: any): number;
881
- }
882
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
883
- }
884
- declare module "Binaries/Nodejs/lib/core/handler/ArrayHandler" {
885
- const _exports: ArrayHandler;
886
- export = _exports;
887
- class ArrayHandler extends AbstractHandler {
888
- process(command: any): any;
889
- }
890
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
891
- }
892
- declare module "Binaries/Nodejs/lib/core/handler/ArraySetItemHandler" {
893
- const _exports: ArraySetItemHandler;
894
- export = _exports;
895
- class ArraySetItemHandler extends AbstractHandler {
896
- requiredParametersCount: number;
897
- process(command: any): number;
898
- }
899
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
900
- }
901
- declare module "Binaries/Nodejs/lib/core/handler/CastingHandler" {
902
- const _exports: CastingHandler;
903
- export = _exports;
904
- class CastingHandler extends AbstractHandler {
905
- }
906
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
907
- }
908
- declare module "Binaries/Nodejs/lib/utils/TypesConverter" {
909
- /**
910
- * ConvertTypeHandler class handles the conversion of JType to Type.
911
- */
912
- export class ConvertTypeHandler {
913
- /**
914
- * Minimum required parameters count for the command.
915
- * @type {number}
916
- */
917
- requiredParametersCount: number;
918
- /**
919
- * Processes the given command to convert JType to Type.
920
- * @param {Object} command - The command to process.
921
- * @returns {any} The converted type.
922
- */
923
- process(command: Object): any;
924
- /**
925
- * Validates the command to ensure it has enough parameters.
926
- * @param {Object} command - The command to validate.
927
- */
928
- validateCommand(command: Object): void;
929
- }
930
- /**
931
- * TypesConverter class provides utilities for converting between types.
932
- */
933
- export class TypesConverter {
934
- /**
935
- * Converts a JavaScript type to a JType equivalent.
936
- * @param {Function} type - The JavaScript type.
937
- * @returns {number} The corresponding JType.
938
- */
939
- static convertTypeToJType(type: Function): number;
940
- /**
941
- * Converts a JType to a JavaScript type equivalent.
942
- * @param {number} type - The JType to convert.
943
- * @returns {Function} The corresponding JavaScript type.
944
- */
945
- static convertJTypeToType(type: number): Function;
946
- }
947
- /**
948
- * Enum for JType mappings.
949
- */
950
- export type JType = number;
951
- export namespace JType {
952
- let Boolean: number;
953
- let Float: number;
954
- let String: number;
955
- let Null: number;
956
- }
957
- }
958
- declare module "Binaries/Nodejs/lib/core/handler/ConvertTypeHandler" {
959
- export = ConvertTypeHandler;
960
- /**
961
- * ConvertTypeHandler class handles the conversion of JType to Type.
962
- */
963
- class ConvertTypeHandler extends AbstractHandler {
964
- /**
965
- * Minimum required parameters count for the command.
966
- * @type {number}
967
- */
968
- requiredParametersCount: number;
969
- /**
970
- * Processes the given command to convert JType to Type.
971
- * @param {Object} command - The command to process.
972
- * @returns {any} The converted type.
973
- */
974
- process(command: Object): any;
975
- /**
976
- * Validates the command to ensure it has enough parameters.
977
- * @param {Object} command - The command to validate.
978
- */
979
- validateCommand(command: Object): void;
980
- }
981
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
982
- }
983
- declare module "Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler" {
984
- const _exports: CreateClassInstanceHandler;
985
- export = _exports;
986
- class CreateClassInstanceHandler extends AbstractHandler {
987
- requiredParametersCount: number;
988
- process(command: any): any;
989
- }
990
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
991
- }
992
- declare module "Binaries/Nodejs/lib/utils/uuid/rng" {
993
- function _exports(): Uint8Array<ArrayBuffer>;
994
- export = _exports;
995
- }
996
- declare module "Binaries/Nodejs/lib/utils/uuid/REGEX" {
997
- const _exports: RegExp;
998
- export = _exports;
999
- }
1000
- declare module "Binaries/Nodejs/lib/utils/uuid/validate" {
1001
- export = validate;
1002
- function validate(uuid: any): boolean;
1003
- }
1004
- declare module "Binaries/Nodejs/lib/utils/uuid/stringify" {
1005
- export = stringify;
1006
- function stringify(arr: any, offset?: number): string;
1007
- }
1008
- declare module "Binaries/Nodejs/lib/utils/uuid/v4" {
1009
- export = v4;
1010
- function v4(options: any, buf: any, offset: any): any;
1011
- }
1012
- declare module "Binaries/Nodejs/lib/core/referenceCache/ReferencesCache" {
1013
- export = ReferencesCache;
1014
- class ReferencesCache {
1015
- static getInstance(): any;
1016
- cacheReference(reference: any): any;
1017
- resolveReference(id: any): any;
1018
- deleteReference(referenceGuid: any): number;
1019
- }
1020
- }
1021
- declare module "Binaries/Nodejs/lib/core/handler/DestructReferenceHandler" {
1022
- const _exports: DestructReferenceHandler;
1023
- export = _exports;
1024
- class DestructReferenceHandler extends AbstractHandler {
1025
- process(command: any): any;
1026
- }
1027
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1028
- }
1029
- declare module "Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache" {
1030
- export = NamespaceCache;
1031
- class NamespaceCache {
1032
- static _instance: null;
1033
- namespaceCache: any[];
1034
- cacheNamespace(namespaceRegex: any): void;
1035
- isNamespaceCacheEmpty(): boolean;
1036
- isTypeAllowed(typeToCheck: any): boolean;
1037
- getCachedNamespaces(): any[];
1038
- clearCache(): number;
1039
- }
1040
- }
1041
- declare module "Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler" {
1042
- const _exports: EnableNamespaceHandler;
1043
- export = _exports;
1044
- class EnableNamespaceHandler extends AbstractHandler {
1045
- requiredParametersCount: number;
1046
- process(command: any): number;
1047
- }
1048
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1049
- }
1050
- declare module "Binaries/Nodejs/lib/core/typeCache/TypeCache" {
1051
- export = TypeCache;
1052
- class TypeCache {
1053
- static _instance: null;
1054
- typeCache: any[];
1055
- cacheType(typRegex: any): void;
1056
- isTypeCacheEmpty(): boolean;
1057
- isTypeAllowed(typeToCheck: any): boolean;
1058
- getCachedTypes(): any[];
1059
- clearCache(): number;
1060
- }
1061
- }
1062
- declare module "Binaries/Nodejs/lib/core/handler/EnableTypeHandler" {
1063
- const _exports: EnableTypeHandler;
1064
- export = _exports;
1065
- class EnableTypeHandler extends AbstractHandler {
1066
- requiredParametersCount: number;
1067
- process(command: any): number;
1068
- }
1069
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1070
- }
1071
- declare module "Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler" {
1072
- const _exports: GetGlobalStaticFieldHandler;
1073
- export = _exports;
1074
- class GetGlobalStaticFieldHandler extends AbstractHandler {
1075
- requiredParametersCount: number;
1076
- process(command: any): any;
1077
- }
1078
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1079
- }
1080
- declare module "Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler" {
1081
- const _exports: GetInstanceFieldHandler;
1082
- export = _exports;
1083
- class GetInstanceFieldHandler extends AbstractHandler {
1084
- requiredParametersCount: number;
1085
- process(command: any): any;
1086
- }
1087
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1088
- }
1089
- declare module "Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler" {
1090
- const _exports: GetInstanceMethodAsDelegateHandler;
1091
- export = _exports;
1092
- /**
1093
- * Handles retrieving an instance method as a delegate.
1094
- */
1095
- class GetInstanceMethodAsDelegateHandler extends AbstractHandler {
1096
- /** @type {Function|null} */
1097
- method: Function | null;
1098
- /** @type {number} */
1099
- requiredParametersCount: number;
1100
- /** @type {Array<*>} */
1101
- args: Array<any>;
1102
- /** @type {Object|null} */
1103
- instance: Object | null;
1104
- /**
1105
- * Processes a command to retrieve an instance method as a delegate.
1106
- * @param {Object} command - The command containing payload data.
1107
- * @param {Array<*>} command.payload - The payload containing instance, method name, and arguments.
1108
- * @returns {Function} The delegate for the instance method.
1109
- * @throws {Error} If the parameters mismatch or the method cannot be found.
1110
- */
1111
- process(command: {
1112
- payload: Array<any>;
1113
- }): Function;
1114
- /**
1115
- * Retrieves the method from the type.
1116
- * @param {Object} type - The class or constructor to search for the method.
1117
- * @param {string} methodName - The name of the method.
1118
- * @returns {Function|null} The found method or null if not found.
1119
- */
1120
- getMethod(type: Object, methodName: string): Function | null;
1121
- /**
1122
- * Creates an error message when the method is not found.
1123
- * @param {Object} type - The class or constructor.
1124
- * @param {string} methodName - The method name.
1125
- * @returns {Error} The error with detailed message.
1126
- */
1127
- createMethodNotFoundError(type: Object, methodName: string): Error;
1128
- }
1129
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1130
- }
1131
- declare module "Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler" {
1132
- const _exports: GetStaticFieldHandler;
1133
- export = _exports;
1134
- class GetStaticFieldHandler extends AbstractHandler {
1135
- requiredParametersCount: number;
1136
- process(command: any): any;
1137
- }
1138
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1139
- }
1140
- declare module "Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler" {
1141
- const _exports: GetStaticMethodAsDelegateHandler;
1142
- export = _exports;
1143
- /**
1144
- * Handles retrieving a static method as a delegate.
1145
- */
1146
- class GetStaticMethodAsDelegateHandler extends AbstractHandler {
1147
- /** @type {Array<*>} */
1148
- args: Array<any>;
1149
- /** @type {Function|null} */
1150
- method: Function | null;
1151
- /** @type {number} */
1152
- requiredParametersCount: number;
1153
- /**
1154
- * Processes a command to retrieve a static method as a delegate.
1155
- * @param {Command} command - The command containing payload data.
1156
- * @param {Array<*>} command.payload - The payload containing type, method name, and arguments.
1157
- * @returns {Function} The delegate for the static method.
1158
- * @throws {Error} If the parameters mismatch or the method cannot be found.
1159
- */
1160
- process(command: Command): Function;
1161
- /**
1162
- * Retrieves the method from the type.
1163
- * @param {Object} type - The class or constructor to search for the method.
1164
- * @param {string} methodName - The name of the method.
1165
- * @param {Array<Function>} argsType - The argument types.
1166
- * @param {Object} modifier - Parameter modifier (not used in JS implementation).
1167
- * @returns {Function|null} The found method or null if not found.
1168
- */
1169
- getMethod(type: Object, methodName: string): Function | null;
1170
- /**
1171
- * Creates an error message when the method is not found.
1172
- * @param {Object} type - The class or constructor.
1173
- * @param {string} methodName - The method name.
1174
- * @returns {Error} The error with detailed message.
1175
- */
1176
- createMethodNotFoundError(type: Object, methodName: string): Error;
1177
- }
1178
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1179
- import { Command } from "Binaries/Nodejs";
1180
- }
1181
- declare module "Binaries/Nodejs/lib/core/handler/LoadLibraryHandler" {
1182
- const _exports: LoadLibraryHandler;
1183
- export = _exports;
1184
- class LoadLibraryHandler extends AbstractHandler {
1185
- static loadedLibraries: any[];
1186
- requiredParametersCount: number;
1187
- process(command: any): number;
1188
- getLoadedLibraries(): any[];
1189
- }
1190
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1191
- }
1192
- declare module "Binaries/Nodejs/lib/core/handler/GetTypeHandler" {
1193
- const _exports: GetTypeHandler;
1194
- export = _exports;
1195
- class GetTypeHandler extends AbstractHandler {
1196
- requiredParametersCount: number;
1197
- namespaceCache: NamespaceCache;
1198
- typeCache: TypeCache;
1199
- process(command: any): any;
1200
- getAvailableTypes(): any[];
1201
- }
1202
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1203
- import NamespaceCache = require("Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache");
1204
- import TypeCache = require("Binaries/Nodejs/lib/core/typeCache/TypeCache");
1205
- }
1206
- declare module "Binaries/Nodejs/lib/core/handler/ValueHandler" {
1207
- const _exports: ValueHandler;
1208
- export = _exports;
1209
- class ValueHandler extends AbstractHandler {
1210
- process(command: any): any;
1211
- }
1212
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1213
- }
1214
- declare module "Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler" {
1215
- const _exports: InvokeStaticMethodHandler;
1216
- export = _exports;
1217
- class InvokeStaticMethodHandler extends AbstractHandler {
1218
- requiredParametersCount: number;
1219
- process(command: any): any;
1220
- }
1221
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1222
- }
1223
- declare module "Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler" {
1224
- const _exports: SetStaticFieldHandler;
1225
- export = _exports;
1226
- class SetStaticFieldHandler extends AbstractHandler {
1227
- requiredParametersCount: number;
1228
- process(command: any): number;
1229
- }
1230
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1231
- }
1232
- declare module "Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler" {
1233
- const _exports: ResolveReferenceHandler;
1234
- export = _exports;
1235
- class ResolveReferenceHandler extends AbstractHandler {
1236
- process(command: any): any;
1237
- }
1238
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1239
- }
1240
- declare module "Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler" {
1241
- const _exports: SetInstanceFieldHandler;
1242
- export = _exports;
1243
- class SetInstanceFieldHandler extends AbstractHandler {
1244
- requiredParametersCount: number;
1245
- process(command: any): number;
1246
- }
1247
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1248
- }
1249
- declare module "Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler" {
1250
- const _exports: InvokeInstanceMethodHandler;
1251
- export = _exports;
1252
- class InvokeInstanceMethodHandler extends AbstractHandler {
1253
- requiredParametersCount: number;
1254
- process(command: any): any;
1255
- }
1256
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1257
- }
1258
- declare module "Binaries/Nodejs/lib/core/handler/PassDelegateHandler" {
1259
- const _exports: PassDelegateHandler;
1260
- export = _exports;
1261
- /**
1262
- * PassDelegateHandler class responsible for processing a command to create a delegate.
1263
- */
1264
- class PassDelegateHandler extends AbstractHandler {
1265
- /**
1266
- * Minimum required parameters count for the command.
1267
- * @type {number}
1268
- */
1269
- requiredParametersCount: number;
1270
- interpreter: Interpreter;
1271
- /**
1272
- * Processes the given command to create and compile a delegate.
1273
- * @param {Command} command - The command to process.
1274
- * @returns {Function} The compiled delegate function.
1275
- */
1276
- process(command: Command): Function;
1277
- /**
1278
- * Validates the command to ensure it has enough parameters.
1279
- * @param {Command} command - The command to validate.
1280
- */
1281
- validateCommand(command: Command): void;
1282
- /**
1283
- * Retrieves the arguments from the command payload.
1284
- * @param {Command} command - The command containing the payload.
1285
- * @returns {Array} The extracted arguments.
1286
- */
1287
- getArguments(command: Command): any[];
1288
- /**
1289
- * Extracts argument types from the arguments array.
1290
- * @param {Array} args - The arguments array.
1291
- * @returns {Array} The argument types.
1292
- */
1293
- getArgumentTypes(args: any[]): any[];
1294
- /**
1295
- * Retrieves the return type from the arguments array.
1296
- * @param {Array} args - The arguments array.
1297
- * @returns {Function} The return type.
1298
- */
1299
- getReturnType(args: any[]): Function;
1300
- /**
1301
- * Creates parameter expressions from argument types.
1302
- * @param {Array} argsTypes - The argument types.
1303
- * @returns {Array} The parameter expressions.
1304
- */
1305
- createParameters(argsTypes: any[]): any[];
1306
- /**
1307
- * Creates an array of arguments for the delegate.
1308
- * @param {string} delegateGuid - The delegate identifier.
1309
- * @param {Array} parameters - The parameter expressions.
1310
- * @returns {Array} The arguments array.
1311
- */
1312
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
1313
- /**
1314
- * Creates a command expression.
1315
- * @param {string} callingRuntimeName - The runtime name.
1316
- * @param {Array} payload - The arguments array.
1317
- * @returns {Object} The command object.
1318
- */
1319
- createCommand(callingRuntimeName: string, payload: any[]): Object;
1320
- /**
1321
- * Creates a method call to execute the command.
1322
- * @param {Command} command - The command object.
1323
- * @returns {Object} The response object.
1324
- */
1325
- createExecuteCall(command: Command): Object;
1326
- /**
1327
- * Retrieves the response payload from the execution call.
1328
- * @param {Object} executeCall - The execution call.
1329
- * @returns {Array} The response payload.
1330
- */
1331
- getResponse(executeCall: Object): any[];
1332
- /**
1333
- * Converts the first element of the response to the return type.
1334
- * @param {Array} response - The response payload.
1335
- * @param {Function} returnType - The return type.
1336
- * @returns {*} The converted first element.
1337
- */
1338
- convertFirstElement(response: any[], returnType: Function): any;
1339
- /**
1340
- * Creates a block of expressions for the delegate.
1341
- * @param {Function} returnType - The return type.
1342
- * @param {*} convertedFirstElement - The converted first element.
1343
- * @returns {Object} The block expression.
1344
- */
1345
- createBlock(returnType: Function, convertedFirstElement: any): Object;
1346
- /**
1347
- * Creates a delegate type.
1348
- * @param {Array} parameters - The parameter expressions.
1349
- * @param {Function} returnType - The return type.
1350
- * @returns {Function} The delegate type.
1351
- */
1352
- createDelegateType(parameters: any[], returnType: Function): Function;
1353
- }
1354
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1355
- import { Interpreter } from "Binaries/Nodejs";
1356
- import { Command } from "Binaries/Nodejs";
1357
- }
1358
- declare module "Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler" {
1359
- const _exports: InvokeDelegateHandler;
1360
- export = _exports;
1361
- /**
1362
- * Handles invoking a delegate by GUID.
1363
- */
1364
- class InvokeDelegateHandler extends AbstractHandler {
1365
- /** @type {number} */
1366
- requiredParametersCount: number;
1367
- /**
1368
- * Processes a command to invoke a delegate.
1369
- * @param {Command} command - The command containing payload data.
1370
- * @returns {*} The result of the delegate invocation.
1371
- * @throws {Error} If the parameters mismatch or the delegate cannot be found.
1372
- */
1373
- process(command: Command): any;
1374
- }
1375
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1376
- }
1377
- declare module "Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler" {
1378
- const _exports: InvokeGlobalFunctionHandler;
1379
- export = _exports;
1380
- class InvokeGlobalFunctionHandler extends AbstractHandler {
1381
- requiredParametersCount: number;
1382
- process(command: any): any;
1383
- }
1384
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1385
- }
1386
- declare module "Binaries/Nodejs/lib/core/handler/Handler" {
1387
- export class Handler {
1388
- handleCommand(command: any): Command;
1389
- parseCommand(response: any, runtimeName: any): Command;
1390
- }
1391
- export const handlers: {
1392
- 0: {
1393
- process(command: any): any;
1394
- handlers: any[];
1395
- handleCommand(command: any): void;
1396
- iterate(cmd: any): void;
1397
- process_stack_trace(error: any, class_name: any): any;
1398
- };
1399
- 1: {
1400
- requiredParametersCount: number;
1401
- process(command: any): number;
1402
- getLoadedLibraries(): any[];
1403
- handlers: any[];
1404
- handleCommand(command: any): void;
1405
- iterate(cmd: any): void;
1406
- process_stack_trace(error: any, class_name: any): any;
1407
- };
1408
- 2: {
1409
- requiredParametersCount: number;
1410
- process(command: any): any;
1411
- handlers: any[];
1412
- handleCommand(command: any): void;
1413
- iterate(cmd: any): void;
1414
- process_stack_trace(error: any, class_name: any): any;
1415
- };
1416
- 6: {
1417
- requiredParametersCount: number;
1418
- namespaceCache: import("Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache");
1419
- typeCache: import("Binaries/Nodejs/lib/core/typeCache/TypeCache");
1420
- process(command: any): any;
1421
- getAvailableTypes(): any[];
1422
- handlers: any[];
1423
- handleCommand(command: any): void;
1424
- iterate(cmd: any): void;
1425
- process_stack_trace(error: any, class_name: any): any;
1426
- };
1427
- 3: {
1428
- requiredParametersCount: number;
1429
- process(command: any): any;
1430
- handlers: any[];
1431
- handleCommand(command: any): void;
1432
- iterate(cmd: any): void;
1433
- process_stack_trace(error: any, class_name: any): any;
1434
- };
1435
- 4: {
1436
- requiredParametersCount: number;
1437
- process(command: any): number;
1438
- handlers: any[];
1439
- handleCommand(command: any): void;
1440
- iterate(cmd: any): void;
1441
- process_stack_trace(error: any, class_name: any): any;
1442
- };
1443
- 5: {
1444
- requiredParametersCount: number;
1445
- process(command: any): any;
1446
- handlers: any[];
1447
- handleCommand(command: any): void;
1448
- iterate(cmd: any): void;
1449
- process_stack_trace(error: any, class_name: any): any;
1450
- };
1451
- 7: {
1452
- process(command: any): any;
1453
- handlers: any[];
1454
- handleCommand(command: any): void;
1455
- iterate(cmd: any): void;
1456
- process_stack_trace(error: any, class_name: any): any;
1457
- };
1458
- 12: {
1459
- process(command: any): void;
1460
- handlers: any[];
1461
- handleCommand(command: any): void;
1462
- iterate(cmd: any): void;
1463
- process_stack_trace(error: any, class_name: any): any;
1464
- };
1465
- 13: {
1466
- requiredParametersCount: number;
1467
- process(command: any): any;
1468
- handlers: any[];
1469
- handleCommand(command: any): void;
1470
- iterate(cmd: any): void;
1471
- process_stack_trace(error: any, class_name: any): any;
1472
- };
1473
- 25: {
1474
- requiredParametersCount: number;
1475
- process(command: any): number;
1476
- handlers: any[];
1477
- handleCommand(command: any): void;
1478
- iterate(cmd: any): void;
1479
- process_stack_trace(error: any, class_name: any): any;
1480
- };
1481
- 9: {
1482
- requiredParametersCount: number;
1483
- process(command: any): any;
1484
- handlers: any[];
1485
- handleCommand(command: any): void;
1486
- iterate(cmd: any): void;
1487
- process_stack_trace(error: any, class_name: any): any;
1488
- };
1489
- 17: {
1490
- process(command: any): any;
1491
- handlers: any[];
1492
- handleCommand(command: any): void;
1493
- iterate(cmd: any): void;
1494
- process_stack_trace(error: any, class_name: any): any;
1495
- };
1496
- 19: {
1497
- requiredParametersCount: number;
1498
- process(command: any): any;
1499
- handlers: any[];
1500
- handleCommand(command: any): void;
1501
- iterate(cmd: any): void;
1502
- process_stack_trace(error: any, class_name: any): any;
1503
- };
1504
- 20: {
1505
- requiredParametersCount: number;
1506
- process(command: any): number;
1507
- handlers: any[];
1508
- handleCommand(command: any): void;
1509
- iterate(cmd: any): void;
1510
- process_stack_trace(error: any, class_name: any): any;
1511
- };
1512
- 21: {
1513
- requiredParametersCount: number;
1514
- process(command: any): number;
1515
- handlers: any[];
1516
- handleCommand(command: any): void;
1517
- iterate(cmd: any): void;
1518
- process_stack_trace(error: any, class_name: any): any;
1519
- };
1520
- 22: {
1521
- requiredParametersCount: number;
1522
- process(command: any): number;
1523
- handlers: any[];
1524
- handleCommand(command: any): void;
1525
- iterate(cmd: any): void;
1526
- process_stack_trace(error: any, class_name: any): any;
1527
- };
1528
- 23: {
1529
- process(command: any): any;
1530
- handlers: any[];
1531
- handleCommand(command: any): void;
1532
- iterate(cmd: any): void;
1533
- process_stack_trace(error: any, class_name: any): any;
1534
- };
1535
- 34: {
1536
- requiredParametersCount: number;
1537
- process(command: any): number;
1538
- handlers: any[];
1539
- handleCommand(command: any): void;
1540
- iterate(cmd: any): void;
1541
- process_stack_trace(error: any, class_name: any): any;
1542
- };
1543
- 35: {
1544
- requiredParametersCount: number;
1545
- process(command: any): number;
1546
- handlers: any[];
1547
- handleCommand(command: any): void;
1548
- iterate(cmd: any): void;
1549
- process_stack_trace(error: any, class_name: any): any;
1550
- };
1551
- 37: {
1552
- args: Array<any>;
1553
- method: Function | null;
1554
- requiredParametersCount: number;
1555
- process(command: Command): Function;
1556
- getMethod(type: Object, methodName: string): Function | null;
1557
- createMethodNotFoundError(type: Object, methodName: string): Error;
1558
- handlers: any[];
1559
- handleCommand(command: any): void;
1560
- iterate(cmd: any): void;
1561
- process_stack_trace(error: any, class_name: any): any;
1562
- };
1563
- 38: {
1564
- method: Function | null;
1565
- requiredParametersCount: number;
1566
- args: Array<any>;
1567
- instance: Object | null;
1568
- process(command: {
1569
- payload: Array<any>;
1570
- }): Function;
1571
- getMethod(type: Object, methodName: string): Function | null;
1572
- createMethodNotFoundError(type: Object, methodName: string): Error;
1573
- handlers: any[];
1574
- handleCommand(command: any): void;
1575
- iterate(cmd: any): void;
1576
- process_stack_trace(error: any, class_name: any): any;
1577
- };
1578
- 39: {
1579
- requiredParametersCount: number;
1580
- interpreter: import("Binaries/Nodejs").Interpreter;
1581
- process(command: Command): Function;
1582
- validateCommand(command: Command): void;
1583
- getArguments(command: Command): any[];
1584
- getArgumentTypes(args: any[]): any[];
1585
- getReturnType(args: any[]): Function;
1586
- createParameters(argsTypes: any[]): any[];
1587
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
1588
- createCommand(callingRuntimeName: string, payload: any[]): Object;
1589
- createExecuteCall(command: Command): Object;
1590
- getResponse(executeCall: Object): any[];
1591
- convertFirstElement(response: any[], returnType: Function): any;
1592
- createBlock(returnType: Function, convertedFirstElement: any): Object;
1593
- createDelegateType(parameters: any[], returnType: Function): Function;
1594
- handlers: any[];
1595
- handleCommand(command: any): void;
1596
- iterate(cmd: any): void;
1597
- process_stack_trace(error: any, class_name: any): any;
1598
- };
1599
- 40: {
1600
- requiredParametersCount: number;
1601
- process(command: Command): any;
1602
- handlers: any[];
1603
- handleCommand(command: any): void;
1604
- iterate(cmd: any): void;
1605
- process_stack_trace(error: any, class_name: any): any;
1606
- };
1607
- 16: {
1608
- requiredParametersCount: number;
1609
- process(command: any): any;
1610
- handlers: any[];
1611
- handleCommand(command: any): void;
1612
- iterate(cmd: any): void;
1613
- process_stack_trace(error: any, class_name: any): any;
1614
- };
1615
- };
1616
- import { Command } from "Binaries/Nodejs";
1617
- }
1618
- declare module "Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler" {
1619
- const _exports: SetGlobalStaticFieldHandler;
1620
- export = _exports;
1621
- class SetGlobalStaticFieldHandler extends AbstractHandler {
1622
- requiredParametersCount: number;
1623
- }
1624
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1625
- }
1626
- declare module "Binaries/Nodejs/lib/utils/RuntimeLogger" {
1627
- export = RuntimeLogger;
1628
- class RuntimeLogger {
1629
- static notLoggedYet: boolean;
1630
- static getRuntimeInfo(): string;
1631
- static printRuntimeInfo(): void;
1632
- }
1633
- }
1634
- declare module "Binaries/Nodejs/lib/core/receiver/Receiver" {
1635
- export = Receiver;
1636
- class Receiver {
1637
- static connectionData: InMemoryConnectionData;
1638
- /**
1639
- * @param {number[]} messageByteArray
1640
- */
1641
- static sendCommand(messageByteArray: number[]): Uint8Array<any>;
1642
- static heartBeat(messageByteArray: any): Int8Array<ArrayBuffer>;
1643
- Receiver(): void;
1644
- }
1645
- import { InMemoryConnectionData } from "Binaries/Nodejs";
1646
- }
1647
- declare module "Binaries/Nodejs/lib/core/receiver/ReceiverNative" {
1648
- export {};
1649
- }
1650
- declare module "Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper" {
1651
- export = TransmitterWrapper;
1652
- class TransmitterWrapper {
1653
- static isNativeLibraryLoaded(): boolean;
1654
- static loadNativeLibrary(): void;
1655
- static activate(licenseKey: any): any;
1656
- static sendCommand(messageArray: any): any;
1657
- static setConfigSource(configSource: any): any;
1658
- static setJavonetWorkingDirectory(path: any): void;
1659
- }
1660
- }
1661
- declare module "Binaries/Nodejs/lib/core/transmitter/Transmitter" {
1662
- export = Transmitter;
1663
- class Transmitter {
1664
- static sendCommand(messageArray: any): any;
1665
- static activate: (licenseKey: any) => any;
1666
- static setConfigSource(configSource: any): any;
1667
- static setJavonetWorkingDirectory(workingDirectory: any): void;
1668
- }
1669
- }
1670
- declare module "Binaries/Nodejs/lib/sdk/tools/JsonFileResolver" {
1671
- export = JsonFileResolver;
1672
- class JsonFileResolver {
1673
- constructor(path: any);
1674
- path: any;
1675
- jsonObject: any;
1676
- getLicenseKey(): any;
1677
- getRuntimes(): any;
1678
- getRuntime(runtimeName: any, configName: any): any;
1679
- getChannel(runtimeName: any, configName: any): any;
1680
- getChannelType(runtimeName: any, configName: any): any;
1681
- getChannelHost(runtimeName: any, configName: any): any;
1682
- getChannelPort(runtimeName: any, configName: any): any;
1683
- getModules(runtimeName: any, configName: any): any;
1684
- }
1685
- }
1686
- declare module "Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData" {
1687
- export = TcpConnectionData;
1688
- /**
1689
- * @extends IConnectionData
1690
- */
1691
- class TcpConnectionData extends IConnectionData {
1692
- constructor(hostname: any, port: any);
1693
- _port: any;
1694
- _hostname: any;
1695
- _connectionType: 1;
1696
- ipAddress: string | null;
1697
- get connectionType(): 1;
1698
- get hostname(): any;
1699
- /**
1700
- * @param {TcpConnectionData} other
1701
- * @returns {boolean}
1702
- */
1703
- equals(other: TcpConnectionData): boolean;
1704
- /**
1705
- * @param {string} hostname
1706
- * @returns {string|null}
1707
- */
1708
- resolveIpAddress(hostname: string): string | null;
1709
- serializeConnectionData(): 1[];
1710
- #private;
1711
- }
1712
- import { IConnectionData } from "Binaries/Nodejs";
1713
- }
1714
- declare module "Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory" {
1715
- export = ConfigRuntimeFactory;
1716
- /**
1717
- * The ConfigRuntimeFactory class provides methods for creating runtime contexts.
1718
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
1719
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1720
- */
1721
- class ConfigRuntimeFactory {
1722
- constructor(path: any);
1723
- path: any;
1724
- /**
1725
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
1726
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1727
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
1728
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1729
- */
1730
- clr(configName?: string): RuntimeContext;
1731
- /**
1732
- * Creates RuntimeContext instance to interact with the JVM runtime.
1733
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1734
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
1735
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1736
- */
1737
- jvm(configName?: string): RuntimeContext;
1738
- /**
1739
- * Creates RuntimeContext instance to interact with the .NET runtime.
1740
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1741
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
1742
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1743
- */
1744
- netcore(configName?: string): RuntimeContext;
1745
- /**
1746
- * Creates RuntimeContext instance to interact with the Perl runtime.
1747
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1748
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
1749
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1750
- */
1751
- perl(configName?: string): RuntimeContext;
1752
- /**
1753
- * Creates RuntimeContext instance to interact with the Python runtime.
1754
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1755
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
1756
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1757
- */
1758
- python(configName?: string): RuntimeContext;
1759
- /**
1760
- * Creates RuntimeContext instance to interact with the Ruby runtime.
1761
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1762
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
1763
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1764
- */
1765
- ruby(configName?: string): RuntimeContext;
1766
- /**
1767
- * Creates RuntimeContext instance to interact with Node.js runtime.
1768
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1769
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
1770
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1771
- */
1772
- nodejs(configName?: string): RuntimeContext;
1773
- /**
1774
- * Creates RuntimeContext instance to interact with the Python 2.7 runtime.
1775
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1776
- * @return {RuntimeContext} a RuntimeContext instance for the Python 2.7 runtime
1777
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1778
- */
1779
- python27(configName?: string): RuntimeContext;
1780
- #private;
1781
- }
1782
- import { RuntimeContext } from "Binaries/Nodejs";
1783
- }
1784
- declare module "Binaries/Nodejs/lib/sdk/Javonet" {
1785
- /**
1786
- * The Javonet class is a singleton class that serves as the entry point for interacting with Javonet.
1787
- * It provides methods to activate and initialize the Javonet SDK.
1788
- * It supports both in-memory and TCP connections.
1789
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/javonet-static-class)
1790
- */
1791
- export class Javonet {
1792
- /**
1793
- * Initializes Javonet using an in-memory channel on the same machine.
1794
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for an in-memory connection.
1795
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/in-memory-channel)
1796
- */
1797
- static inMemory(): RuntimeFactory;
1798
- /**
1799
- * Initializes Javonet with a TCP connection to a remote machine.
1800
- * @param {TcpConnectionData} tcpConnectionData - The tcp connection data of the remote machine.
1801
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a TCP connection.
1802
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/tcp-channel)
1803
- */
1804
- static tcp(tcpConnectionData: TcpConnectionData): RuntimeFactory;
1805
- /**
1806
- * Initializes Javonet with a WebSocket connection to a remote machine.
1807
- * @param {WsConnectionData} wsConnectionData - The WebSocket connection data of the remote machine.
1808
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a WebSocket connection.
1809
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/websocket-channel)
1810
- */
1811
- static webSocket(wsConnectionData: WsConnectionData): RuntimeFactory;
1812
- /**
1813
- * Initializes Javonet with a custom configuration file taken from external source.
1814
- * Currentyl supported: Configuration file in JSON format
1815
- * @param {string} configPath - Path to a configuration file.
1816
- * @returns {ConfigRuntimeFactory} A ConfigRuntimeFactory instance with configuration data.
1817
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/configure-channel)
1818
- */
1819
- static withConfig(configPath: string): ConfigRuntimeFactory;
1820
- /**
1821
- * Activates Javonet with the provided license key.
1822
- * @param {string} licenseKey - The license key to activate Javonet.
1823
- * @returns {number} The activation status code.
1824
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/activating-javonet)
1825
- */
1826
- static activate(licenseKey: string): number;
1827
- static getRuntimeInfo(): string;
1828
- /**
1829
- * Sets the configuration source for the Javonet SDK.
1830
- *
1831
- * @param {string} configSource - The configuration source.
1832
- */
1833
- static setConfigSource(configSource: string): void;
1834
- /**
1835
- * Sets the working directory for the Javonet SDK.
1836
- *
1837
- * @param {string} path - The working directory.
1838
- */
1839
- static setJavonetWorkingDirectory(path: string): void;
1840
- }
1841
- import TcpConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData");
1842
- import { WsConnectionData } from "Binaries/Nodejs";
1843
- import { RuntimeFactory } from "Binaries/Nodejs";
1844
- import ConfigRuntimeFactory = require("Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory");
1845
- export { TcpConnectionData, WsConnectionData };
1846
- }
1847
- declare module "Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper" {
1848
- export = sendExceptionToAppInsights;
1849
- /**
1850
- *
1851
- * @param {any} e
1852
- * @param {string} licenseKey
1853
- */
1854
- function sendExceptionToAppInsights(e: any, licenseKey: string): Promise<any>;
1855
- }
1856
- declare module "dist/lib/utils/CommandType" {
1857
- export let Value: 0;
1858
- export let LoadLibrary: 1;
1859
- export let InvokeStaticMethod: 2;
1860
- export let GetStaticField: 3;
1861
- export let SetStaticField: 4;
1862
- export let CreateClassInstance: 5;
1863
- export let GetType: 6;
1864
- export let Reference: 7;
1865
- export let GetModule: 8;
1866
- export let InvokeInstanceMethod: 9;
1867
- export let Exception: 10;
1868
- export let HeartBeat: 11;
1869
- export let Cast: 12;
1870
- export let GetInstanceField: 13;
1871
- export let Optimize: 14;
1872
- export let GenerateLib: 15;
1873
- export let InvokeGlobalFunction: 16;
1874
- export let DestructReference: 17;
1875
- export let ArrayReference: 18;
1876
- export let ArrayGetItem: 19;
1877
- export let ArrayGetSize: 20;
1878
- export let ArrayGetRank: 21;
1879
- export let ArraySetItem: 22;
1880
- export let Array: 23;
1881
- export let RetrieveArray: 24;
1882
- export let SetInstanceField: 25;
1883
- export let InvokeGenericStaticMethod: 26;
1884
- export let InvokeGenericMethod: 27;
1885
- export let GetEnumItem: 28;
1886
- export let GetEnumName: 29;
1887
- export let GetEnumValue: 30;
1888
- export let AsRef: 31;
1889
- export let AsOut: 32;
1890
- export let GetRefValue: 33;
1891
- export let EnableNamespace: 34;
1892
- export let EnableType: 35;
1893
- export let CreateNull: 36;
1894
- export let GetStaticMethodAsDelegate: 37;
1895
- export let GetInstanceMethodAsDelegate: 38;
1896
- export let PassDelegate: 39;
1897
- export let InvokeDelegate: 40;
1898
- export let ConvertType: 41;
1899
- }
1900
- declare module "dist/lib/utils/Command" {
1901
- export = Command;
1902
- class Command {
1903
- /**
1904
- * @param {any} [response]
1905
- * @param {number} runtimeName
1906
- */
1907
- static createResponse(response?: any, runtimeName: number): Command;
1908
- /**
1909
- * @param {any} [response]
1910
- * @param {number} runtimeName
1911
- * @method
1912
- */
1913
- static createReference(response?: any, runtimeName: number): Command;
1914
- /**
1915
- * @param {any} [response]
1916
- * @param {number} runtimeName
1917
- * @returns {Command}
1918
- * @method
1919
- */
1920
- static createArrayResponse(response?: any, runtimeName: number): Command;
1921
- /**
1922
- * Constructs a new Command instance.
1923
- * @param {number} runtimeName - The runtime name associated with the command.
1924
- * @param {number} commandType - The type of the command.
1925
- * @param {any} [payload] - The optional payload of the command.
1926
- * @method
1927
- */
1928
- constructor(runtimeName: number, commandType: number, payload?: any);
1929
- runtimeName: number;
1930
- commandType: number;
1931
- payload: any;
1932
- dropFirstPayloadArg(): Command;
1933
- /**
1934
- * @param {any} arg
1935
- * @returns {Command}
1936
- */
1937
- addArgToPayload(arg: any): Command;
1938
- /**
1939
- * @param {Command|null} current_command
1940
- * @returns {Command}
1941
- */
1942
- prependArgToPayload(current_command: Command | null): Command;
1943
- }
1944
- }
1945
- declare module "dist/lib/utils/StringEncodingMode" {
1946
- export let ASCII: 0;
1947
- export let UTF8: 1;
1948
- export let UTF16: 2;
1949
- export let UTF32: 3;
1950
- }
1951
- declare module "dist/lib/core/protocol/TypeDeserializer" {
1952
- export = TypeDeserializer;
1953
- class TypeDeserializer {
1954
- static deserializeCommand(encodedCommand: any): Command;
1955
- static deserializeString(stringEncodingMode: any, encodedString: any): string;
1956
- static deserializeInt(encodedInt: any): number;
1957
- static deserializeBool(encodedBool: any): boolean;
1958
- static deserializeFloat(encodedFloat: any): number;
1959
- static deserializeByte(encodedByte: any): number;
1960
- static deserializeChar(encodedChar: any): number;
1961
- static deserializeLongLong(encodedLongLong: any): bigint;
1962
- static deserializeDouble(encodedDouble: any): number;
1963
- static deserializeULLong(encodedULLong: any): bigint;
1964
- static deserializeUInt(encodedUInt: any): number;
1965
- static deserializeNull(encodedNull?: null): null;
1966
- }
1967
- import Command = require("@javonet/core/lib/utils/Command");
1968
- }
1969
- declare module "dist/lib/utils/Type" {
1970
- export let JAVONET_COMMAND: 0;
1971
- export let JAVONET_STRING: 1;
1972
- export let JAVONET_INTEGER: 2;
1973
- export let JAVONET_BOOLEAN: 3;
1974
- export let JAVONET_FLOAT: 4;
1975
- export let JAVONET_BYTE: 5;
1976
- export let JAVONET_CHAR: 6;
1977
- export let JAVONET_LONG_LONG: 7;
1978
- export let JAVONET_DOUBLE: 8;
1979
- export let JAVONET_UNSIGNED_LONG_LONG: 9;
1980
- export let JAVONET_UNSIGNED_INTEGER: 10;
1981
- export let JAVONET_NULL: 11;
1982
- }
1983
- declare module "dist/lib/core/protocol/CommandDeserializer" {
1984
- export = CommandDeserializer;
1985
- class CommandDeserializer {
1986
- constructor(buffer: any);
1987
- buffer: any;
1988
- command: Command;
1989
- position: number;
1990
- /**
1991
- * @returns {Command}
1992
- */
1993
- deserialize(): Command;
1994
- isAtEnd(): boolean;
1995
- readObject(typeNum: any): string | number | bigint | boolean | Command | (() => bigint) | null;
1996
- readCommand(): Command;
1997
- readString(): string;
1998
- readInt(): number;
1999
- readBool(): boolean;
2000
- readFloat(): number;
2001
- readByte(): number;
2002
- readChar(): number;
2003
- readLongLong(): bigint;
2004
- readDouble(): number;
2005
- readUllong(): bigint;
2006
- readUInt(): number;
2007
- readNull(): null;
2008
- }
2009
- import Command = require("@javonet/core/lib/utils/Command");
2010
- }
2011
- declare module "dist/lib/utils/CustomError" {
2012
- export = CustomError;
2013
- class CustomError extends Error {
2014
- constructor(message: any, cause: any);
2015
- }
2016
- }
2017
- declare module "dist/lib/core/protocol/TypeSerializer" {
2018
- export = TypeSerializer;
2019
- class TypeSerializer {
2020
- static serializePrimitive(payload_item: any): Buffer<ArrayBuffer>;
2021
- static serializeCommand(command: any): Buffer<ArrayBuffer>;
2022
- static serializeString(string_value: any): Buffer<ArrayBuffer>;
2023
- static serializeInt(int_value: any): Buffer<ArrayBuffer>;
2024
- static serializeBool(bool_value: any): Buffer<ArrayBuffer>;
2025
- static serializeFloat(float_value: any): Buffer<ArrayBuffer>;
2026
- static serializeByte(byte_value: any): Buffer<ArrayBuffer>;
2027
- static serializeChar(char_value: any): Buffer<ArrayBuffer>;
2028
- static serializeLongLong(longlong_value: any): Buffer<ArrayBuffer>;
2029
- static serializeDouble(double_value: any): Buffer<ArrayBuffer>;
2030
- static serializeULLong(ullong_value: any): Buffer<ArrayBuffer>;
2031
- static serializeUInt(uint_value: any): Buffer<ArrayBuffer>;
2032
- static serializeNull(): Buffer<ArrayBuffer>;
2033
- static serializeIntValue(int_value: any): Buffer<ArrayBuffer>;
2034
- }
2035
- import { Buffer } from "buffer";
2036
- }
2037
- declare module "dist/lib/utils/RuntimeName" {
2038
- export let Clr: 0;
2039
- export let Go: 1;
2040
- export let Jvm: 2;
2041
- export let Netcore: 3;
2042
- export let Perl: 4;
2043
- export let Python: 5;
2044
- export let Ruby: 6;
2045
- export let Nodejs: 7;
2046
- export let Cpp: 8;
2047
- export let Php: 9;
2048
- export let Python27: 10;
2049
- }
2050
- declare module "dist/lib/core/protocol/CommandSerializer" {
2051
- export = CommandSerializer;
2052
- class CommandSerializer {
2053
- serialize(rootCommand: any, connectionData: any): Uint8Array<any>;
2054
- serializeRecursively(command: any, buffers: any): void;
2055
- }
2056
- }
2057
- declare module "dist/lib/utils/ConnectionType" {
2058
- export let IN_MEMORY: 0;
2059
- export let TCP: 1;
2060
- export let WEB_SOCKET: 2;
2061
- }
2062
- declare module "dist/lib/core/webSocketClient/WebSocketClient" {
2063
- export = WebSocketClient;
2064
- /**
2065
- * WebSocketClient class that handles WebSocket connection, message sending, and automatic disconnection.
2066
- */
2067
- class WebSocketClient {
2068
- /**
2069
- * @param {string} url
2070
- * @param {object} options
2071
- */
2072
- constructor(url: string, options: object);
2073
- /**
2074
- * @type {string}
2075
- */
2076
- url: string;
2077
- /**
2078
- * @type {WebSocket | null}
2079
- */
2080
- instance: WebSocket | null;
2081
- /**
2082
- * @type {boolean} isConnected indicates whether the WebSocket is connected.
2083
- */
2084
- isConnected: boolean;
2085
- /**
2086
- * @type {boolean}
2087
- */
2088
- isDisconnectedAfterMessage: boolean;
2089
- /**
2090
- * Connects to the WebSocket server.
2091
- * @async
2092
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
2093
- */
2094
- connect(): Promise<WebSocket>;
2095
- /**
2096
- * Sends messageArray through websocket connection
2097
- * @async
2098
- * @param {Buffer|ArrayBuffer|Buffer[]} messageArray
2099
- * @returns {Promise<Buffer|ArrayBuffer|Buffer[]>}
2100
- */
2101
- send(messageArray: Buffer | ArrayBuffer | Buffer[]): Promise<Buffer | ArrayBuffer | Buffer[]>;
2102
- /**
2103
- * Disconnects the WebSocket by terminating the connection.
2104
- */
2105
- disconnect(): void;
2106
- /**
2107
- * Connects to the WebSocket server.
2108
- * @private
2109
- * @async
2110
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
2111
- */
2112
- private _connect;
2113
- }
2114
- }
2115
- declare module "dist/lib/core/transmitter/TransmitterWebsocket" {
2116
- export = TransmitterWebsocket;
2117
- /** @typedef {import('../../../../core/lib/declarations').WsConnectionData} WsConnectionData */
2118
- class TransmitterWebsocket {
2119
- /**
2120
- * @returns {void}
2121
- */
2122
- static initialize(): void;
2123
- /**
2124
- * @returns {void}
2125
- */
2126
- static setConfigSource(): void;
2127
- /**
2128
- * @returns {void}
2129
- */
2130
- static activate(): void;
2131
- /**
2132
- * @async
2133
- * @param {number[]} messageByteArray
2134
- * @param {WsConnectionData} connectionData
2135
- * @returns {Promise<number[]>} responseByteArray
2136
- */
2137
- static sendCommand(messageByteArray: number[], connectionData: WsConnectionData): Promise<number[]>;
2138
- }
2139
- namespace TransmitterWebsocket {
2140
- export { WsConnectionData };
2141
- }
2142
- type WsConnectionData = any;
2143
- }
2144
- declare module "dist/lib/core/interpreter/Interpreter" {
2145
- export = Interpreter;
2146
- class Interpreter {
2147
- handler: any;
2148
- /**
2149
- *
2150
- * @param {Command} command
2151
- * @param {IConnectionData} connectionData
2152
- * @returns
2153
- */
2154
- executeAsync(command: Command, connectionData: IConnectionData): Promise<import("@javonet/core/lib/utils/Command") | undefined>;
2155
- /**
2156
- *
2157
- * @param {Command} command
2158
- * @param {WsConnectionData} connectionData
2159
- * @returns {Promise<Command>}
2160
- */
2161
- execute(command: Command, connectionData: WsConnectionData): Promise<Command>;
2162
- /**
2163
- *
2164
- * @param {number[]} messageByteArray
2165
- * @returns {Command}
2166
- */
2167
- process(messageByteArray: number[]): Command;
2168
- }
2169
- namespace Interpreter {
2170
- export { WsConnectionData };
2171
- }
2172
- type WsConnectionData = any;
2173
- }
2174
- declare module "dist/lib/utils/guid/generateGuid" {
2175
- export = generateGUID;
2176
- function generateGUID(): string;
2177
- }
2178
- declare module "dist/lib/core/delegatesCache/DelegatesCache" {
2179
- const _exports: DelegatesCache;
2180
- export = _exports;
2181
- /**
2182
- * A cache for storing and retrieving delegates.
2183
- */
2184
- class DelegatesCache {
2185
- cache: Map<any, any>;
2186
- /**
2187
- * Adds a delegate to the cache and returns its unique ID.
2188
- * @param {Function} delegateInstance - The delegate function to store.
2189
- * @returns {string} The unique ID for the delegate.
2190
- */
2191
- addDelegate(delegateInstance: Function): string;
2192
- /**
2193
- * Retrieves a delegate by its unique ID.
2194
- * @param {string} delegateId - The unique ID of the delegate.
2195
- * @returns {Function} The delegate function.
2196
- * @throws {Error} If the delegate is not found.
2197
- */
2198
- getDelegate(delegateId: string): Function;
2199
- }
2200
- }
2201
- declare module "dist/lib/utils/ExceptionType" {
2202
- export let EXCEPTION: 0;
2203
- export let IO_EXCEPTION: 1;
2204
- export let FILE_NOT_FOUND_EXCEPTION: 2;
2205
- export let RUNTIME_EXCEPTION: 3;
2206
- export let ARITHMETIC_EXCEPTION: 4;
2207
- export let ILLEGAL_ARGUMENT_EXCEPTION: 5;
2208
- export let INDEX_OUT_OF_BOUNDS_EXCEPTION: 6;
2209
- export let NULL_POINTER_EXCEPTION: 7;
2210
- }
2211
- declare module "dist/lib/utils/exception/ExceptionThrower" {
2212
- export = ExceptionThrower;
2213
- class ExceptionThrower {
2214
- static throwException(commandException: any): Error;
2215
- static serializeStack(stackTraceClasses: any, stackTraceMethods: any, stackTraceLines: any, stackTraceFiles: any): string;
2216
- }
2217
- }
2218
- declare module "dist/lib/sdk/InvocationContext" {
2219
- /**
2220
- * InvocationContext is a class that represents a context for invoking commands.
2221
- * It implements several interfaces for different types of interactions.
2222
- * This class is used to construct chains of invocations, representing expressions of interaction that have not yet been executed.
2223
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/invocation-context)
2224
- * @class
2225
- */
2226
- export class InvocationContext {
2227
- constructor(runtimeName: any, connectionData: any, command: any, isExecuted?: boolean);
2228
- get_current_command(): any;
2229
- /**
2230
- * Executes the current command.
2231
- * Because invocation context is building the intent of executing particular expression on target environment, we call the initial state of invocation context as non-materialized.
2232
- * The non-materialized context wraps either single command or chain of recursively nested commands.
2233
- * Commands are becoming nested through each invocation of methods on Invocation Context.
2234
- * Each invocation triggers the creation of new Invocation Context instance wrapping the current command with new parent command valid for invoked method.
2235
- * Developer can decide on any moment of the materialization for the context taking full control of the chunks of the expression being transferred and processed on target runtime.
2236
- * @returns {InvocationContext} the InvocationContext after executing the command.
2237
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
2238
- * @method
2239
- */
2240
- execute(): InvocationContext;
2241
- /**
2242
- * Invokes a static method on the target runtime.
2243
- * @param {string} methodName - The name of the method to invoke.
2244
- * @param {...any} args - Method arguments.
2245
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the static method.
2246
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/invoking-static-method)
2247
- * @method
2248
- */
2249
- invokeStaticMethod(methodName: string, ...args: any[]): InvocationContext;
2250
- /**
2251
- * Retrieves the value of a static field from the target runtime.
2252
- * @param {string} fieldName - The name of the field to get.
2253
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the static field.
2254
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-static-fields-and-properties)
2255
- * @method
2256
- */
2257
- getStaticField(fieldName: string): InvocationContext;
2258
- /**
2259
- * Sets the value of a static field in the target runtime.
2260
- * @param {string} fieldName - The name of the field to set.
2261
- * @param {any} value - The new value of the field.
2262
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the static field.
2263
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-static-fields-and-properties)
2264
- * @method
2265
- */
2266
- setStaticField(fieldName: string, value: any): InvocationContext;
2267
- /**
2268
- * Creates a new instance of a class in the target runtime.
2269
- * @param {...any} args - The arguments to pass to the class constructor
2270
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to create the instance.
2271
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/creating-instance-and-calling-instance-methods)
2272
- * @method
2273
- */
2274
- createInstance(...args: any[]): InvocationContext;
2275
- /**
2276
- * Retrieves the value of an instance field from the target runtime.
2277
- * @param {string} fieldName - The name of the field to get.
2278
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the instance field.
2279
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-instance-fields-and-properties)
2280
- * @method
2281
- */
2282
- getInstanceField(fieldName: string): InvocationContext;
2283
- /**
2284
- * Sets the value of an instance field in the target runtime.
2285
- * @param {string} fieldName - The name of the field to set.
2286
- * @param {any} value - The new value of the field.
2287
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the instance field.
2288
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-instance-fields-and-properties)
2289
- * @method
2290
- */
2291
- setInstanceField(fieldName: string, value: any): InvocationContext;
2292
- /**
2293
- * Invokes an instance method on the target runtime.
2294
- * @param {string} methodName - The name of the method to invoke.
2295
- * @param {...any} args - Method arguments.
2296
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the instance method.
2297
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/invoking-instance-method)
2298
- * @method
2299
- */
2300
- invokeInstanceMethod(methodName: string, ...args: any[]): InvocationContext;
2301
- /**
2302
- * Retrieves the value at a specific index in an array from the target runtime.
2303
- * @param {...any} indexes - the arguments to pass to the array getter. The first argument should be the index.
2304
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the index.
2305
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
2306
- * @method
2307
- */
2308
- getIndex(...indexes: any[]): InvocationContext;
2309
- /**
2310
- * Sets the value at a specific index in an array in the target runtime.
2311
- * @param {number[]} indexes - The index to set the value at.
2312
- * @param {any} value - The value to set at the index.
2313
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the index.
2314
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
2315
- * @method
2316
- */
2317
- setIndex(indexes: number[], value: any): InvocationContext;
2318
- /**
2319
- * Retrieves the size of an array from the target runtime.
2320
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the size.
2321
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
2322
- * @method
2323
- */
2324
- getSize(): InvocationContext;
2325
- /**
2326
- * Retrieves the rank of an array from the target runtime.
2327
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the rank.
2328
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
2329
- * @method
2330
- */
2331
- getRank(): InvocationContext;
2332
- /**
2333
- * Invokes a generic static method on the target runtime.
2334
- * @param {string} methodName - The name of the method to invoke.
2335
- * @param {...any} args - Method arguments.
2336
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the generic static method.
2337
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/generics/calling-generic-static-method)
2338
- * @method
2339
- */
2340
- invokeGenericStaticMethod(methodName: string, ...args: any[]): InvocationContext;
2341
- /**
2342
- * Invokes a generic method on the target runtime.
2343
- * @param {string} methodName - The name of the method to invoke.
2344
- * @param {...any} args - Method arguments.
2345
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the generic method.
2346
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/generics/calling-generic-instance-method)
2347
- * @method
2348
- */
2349
- invokeGenericMethod(methodName: string, ...args: any[]): InvocationContext;
2350
- /**
2351
- * Retrieves the name of an enum from the target runtime.
2352
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the enum name.
2353
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
2354
- * @method
2355
- */
2356
- getEnumName(): InvocationContext;
2357
- /**
2358
- * Retrieves the value of an enum from the target runtime.
2359
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the enum value.
2360
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
2361
- * @method
2362
- */
2363
- getEnumValue(): InvocationContext;
2364
- /**
2365
- * Retrieves the value of a reference from the target runtime.
2366
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the ref value.
2367
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-ref-keyword)
2368
- * @method
2369
- */
2370
- getRefValue(): InvocationContext;
2371
- /**
2372
- * Creates a null object of a specific type on the target runtime.
2373
- *
2374
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
2375
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/null-handling/create-null-object)
2376
- * @method
2377
- */
2378
- createNull(): InvocationContext;
2379
- /**
2380
- * Creates a null object of a specific type on the target runtime.
2381
- * @param {string} methodName - The name of the method to invoke.
2382
- * @param {...any} args - Method arguments.
2383
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
2384
- * TODO: connect documentation page url
2385
- * @see [Javonet Guides](https://www.javonet.com/guides/)
2386
- * @method
2387
- */
2388
- getStaticMethodAsDelegate(methodName: string, ...args: any[]): InvocationContext;
2389
- /**
2390
- * Creates a null object of a specific type on the target runtime.
2391
- * @param {string} methodName - The name of the method to invoke.
2392
- * @param {...any} args - Method arguments.
2393
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
2394
- * TODO: connect documentation page url
2395
- * @see [Javonet Guides](https://www.javonet.com/guides/)
2396
- * @method
2397
- */
2398
- getInstanceMethodAsDelegate(methodName: string, ...args: any[]): InvocationContext;
2399
- /**
2400
- * Retrieves an array from the target runtime.
2401
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to retrieve the array.
2402
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/retrieve-array)
2403
- * @method
2404
- */
2405
- retrieveArray(): InvocationContext;
2406
- /**
2407
- * Returns the primitive value from the target runtime. This could be any primitive type in JavaScript,
2408
- * such as int, boolean, byte, char, long, double, float, etc.
2409
- * @returns {Command} The value of the current command.
2410
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
2411
- * @method
2412
- */
2413
- getValue(): Command;
2414
- [Symbol.iterator]: () => {
2415
- next: () => {
2416
- value: any;
2417
- done: boolean;
2418
- };
2419
- };
2420
- #private;
2421
- }
2422
- export class InvocationWsContext extends InvocationContext {
2423
- #private;
2424
- }
2425
- import Command = require("@javonet/core/lib/utils/Command");
2426
- }
2427
- declare module "dist/lib/sdk/RuntimeContext" {
2428
- export = RuntimeContext;
2429
- /**
2430
- * Represents a single context which allows interaction with a selected technology.
2431
- * Refers to a single instance of the called runtime within a particular target OS process.
2432
- * This can be either the local currently running process (inMemory) or a particular remote process identified by the IP Address and PORT of the target Javonet instance.
2433
- * Multiple Runtime Contexts can be initialized within one process.
2434
- * Calling the same technology on inMemory communication channel will return the existing instance of runtime context.
2435
- * Calling the same technology on TCP channel but on different nodes will result in unique Runtime Contexts.
2436
- * Within the runtime context, any number of libraries can be loaded and any objects from the target technology can be interacted with, as they are aware of each other due to sharing the same memory space and same runtime instance.
2437
- * @see [Javonet Guides]{@link https://www.javonet.com/guides/v2/javascript/foundations/runtime-context}
2438
- * @class
2439
- */
2440
- class RuntimeContext {
2441
- static memoryRuntimeContexts: Map<any, any>;
2442
- static networkRuntimeContexts: Map<any, any>;
2443
- static webSocketRuntimeContexts: Map<any, any>;
2444
- static getGeneratorHandler(): any;
2445
- static getInstance(runtimeName: any, connectionData: any): any;
2446
- constructor(runtimeName: any, connectionData: any);
2447
- runtimeName: any;
2448
- connectionData: any;
2449
- /**
2450
- * Executes the current command. The initial state of RuntimeContext is non-materialized,
2451
- * wrapping either a single command or a chain of recursively nested commands.
2452
- * Commands become nested through each invocation of methods on RuntimeContext.
2453
- * Each invocation triggers the creation of a new RuntimeContext instance wrapping the current command with a new parent command.
2454
- * The developer can decide at any moment of the materialization for the context, taking full control of the chunks of the expression being transferred and processed on the target runtime.
2455
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
2456
- * @method
2457
- */
2458
- execute(): void;
2459
- /**
2460
- * Adds a reference to a library. Javonet allows you to reference and use modules or packages written in various languages.
2461
- * This method allows you to use any library from all supported technologies. The necessary libraries need to be referenced.
2462
- * The argument is a relative or full path to the library. If the library has dependencies on other libraries, the latter needs to be added first.
2463
- * After referencing the library, any objects stored in this package can be used. Use static classes, create instances, call methods, use fields and properties, and much more.
2464
- * @param {string} libraryPath - The relative or full path to the library.
2465
- * @returns {RuntimeContext} RuntimeContext instance.
2466
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/adding-references-to-libraries)
2467
- * @method
2468
- */
2469
- loadLibrary(libraryPath: string): RuntimeContext;
2470
- /**
2471
- * Retrieves a reference to a specific type. The type can be a class, interface or enum. The type can be retrieved from any referenced library.
2472
- * @param {string} typeName - The full name of the type.
2473
- * @param {...any} args - The arguments to be passed, if needed
2474
- * @returns {InvocationContext} InvocationContext instance, that wraps the command to get the type.
2475
- * @method
2476
- */
2477
- getType(typeName: string, ...args: any[]): InvocationContext;
2478
- /**
2479
- * Casts the provided value to a specific type. This method is used when invoking methods that require specific types of arguments.
2480
- * The arguments include the target type and the value to be cast. The target type must be retrieved from the called runtime using the getType method.
2481
- * After casting the value, it can be used as an argument when invoking methods.
2482
- * @param {...any} args - The target type and the value to be cast.
2483
- * @returns {InvocationContext} InvocationContext instance that wraps the command to cast the value.
2484
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/casting/casting)
2485
- * @method
2486
- */
2487
- cast(...args: any[]): InvocationContext;
2488
- /**
2489
- * Retrieves a specific item from an enum type. This method is used when working with enums from the called runtime.
2490
- * The arguments include the enum type and the name of the item. The enum type must be retrieved from the called runtime using the getType method.
2491
- * After retrieving the item, it can be used as an argument when invoking methods or for other operations.
2492
- * @param {...any} args - The enum type and the name of the item.
2493
- * @returns {InvocationContext} InvocationContext instance that wraps the command to get the enum item.
2494
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
2495
- * @method
2496
- */
2497
- getEnumItem(...args: any[]): InvocationContext;
2498
- /**
2499
- * Creates a reference type argument that can be passed to a method with a ref parameter modifier. This method is used when working with methods from the called runtime that require arguments to be passed by reference.
2500
- * The arguments include the value and optionally the type of the reference. The type must be retrieved from the called runtime using the getType method.
2501
- * After creating the reference, it can be used as an argument when invoking methods.
2502
- * @param {...any} args - The value and optionally the type of the reference.
2503
- * @returns {InvocationContext} InvocationContext instance that wraps the command to create a reference as ref.
2504
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-ref-keyword)
2505
- * @method
2506
- */
2507
- asRef(...args: any[]): InvocationContext;
2508
- /**
2509
- * Creates a reference type argument that can be passed to a method with an out parameter modifier. This method is used when working with methods from the called runtime that require arguments to be passed by reference.
2510
- * The arguments include the value and optionally the type of the reference. The type must be retrieved from the called runtime using the getType method.
2511
- * After creating the reference, it can be used as an argument when invoking methods.
2512
- * @param {...any} args - The value and optionally the type of the reference.
2513
- * @returns {InvocationContext} InvocationContext instance that wraps the command to create a reference as out.
2514
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-out-keyword |Passing Arguments by Reference with out Keyword Guide)
2515
- * @method
2516
- */
2517
- asOut(...args: any[]): InvocationContext;
2518
- /**
2519
- * Invokes a function from the called runtime. This method is used when working with functions from the called runtime.
2520
- * The arguments include the function name and the arguments to be passed to the function.
2521
- * After invoking the function, the result can be used for further operations.
2522
- * @param {string} functionName - The name of the function to invoke.
2523
- * @param {...any} args - The arguments to be passed to the function.
2524
- * @returns {InvocationContext} InvocationContext instance that wraps the command to invoke the function.
2525
- * @see [Invoking Functions Guide](https://www.javonet.com/guides/v2/csharp/functions/invoking-functions)
2526
- * @method
2527
- */
2528
- invokeGlobalFunction(functionName: string, ...args: any[]): InvocationContext;
2529
- healthCheck(): void;
2530
- #private;
2531
- }
2532
- import { InvocationContext } from "@javonet/core/lib/sdk/InvocationContext";
2533
- }
2534
- declare module "dist/lib/sdk/RuntimeFactory" {
2535
- export = RuntimeFactory;
2536
- /**
2537
- * The RuntimeFactory class provides methods for creating runtime contexts.
2538
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
2539
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2540
- */
2541
- class RuntimeFactory {
2542
- constructor(connectionData: any);
2543
- connectionData: any;
2544
- /**
2545
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
2546
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
2547
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2548
- */
2549
- clr(): RuntimeContext;
2550
- /**
2551
- * Creates RuntimeContext instance to interact with the JVM runtime.
2552
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
2553
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2554
- */
2555
- jvm(): RuntimeContext;
2556
- /**
2557
- * Creates RuntimeContext instance to interact with the .NET runtime.
2558
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
2559
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2560
- */
2561
- netcore(): RuntimeContext;
2562
- /**
2563
- * Creates RuntimeContext instance to interact with the Perl runtime.
2564
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
2565
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2566
- */
2567
- perl(): RuntimeContext;
2568
- /**
2569
- * Creates RuntimeContext instance to interact with the Python runtime.
2570
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
2571
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2572
- */
2573
- python(): RuntimeContext;
2574
- /**
2575
- * Creates RuntimeContext instance to interact with the Ruby runtime.
2576
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
2577
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2578
- */
2579
- ruby(): RuntimeContext;
2580
- /**
2581
- * Creates RuntimeContext instance to interact with Node.js runtime.
2582
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
2583
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2584
- */
2585
- nodejs(): RuntimeContext;
2586
- /**
2587
- * Creates RuntimeContext instance to interact with the Python runtime.
2588
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
2589
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2590
- */
2591
- python27(): RuntimeContext;
2592
- }
2593
- import RuntimeContext = require("@javonet/core/lib/sdk/RuntimeContext");
2594
- }
2595
- declare module "dist/lib/utils/RuntimeNameHandler" {
2596
- export = RuntimeNameHandler;
2597
- class RuntimeNameHandler {
2598
- /**
2599
- * @param {number} runtimeName
2600
- * @returns {string}
2601
- */
2602
- static getName(runtimeName: number): string;
2603
- }
2604
- }
2605
- declare module "dist/lib/utils/connectionData/IConnectionData" {
2606
- export = IConnectionData;
2607
- class IConnectionData {
2608
- get connectionType(): void;
2609
- get hostname(): void;
2610
- serializeConnectionData(): void;
2611
- }
2612
- }
2613
- declare module "dist/lib/utils/connectionData/InMemoryConnectionData" {
2614
- export = InMemoryConnectionData;
2615
- /**
2616
- * @extends IConnectionData
2617
- */
2618
- class InMemoryConnectionData extends IConnectionData {
2619
- _connectionType: 0;
2620
- _hostname: string;
2621
- get connectionType(): 0;
2622
- get hostname(): string;
2623
- serializeConnectionData(): number[];
2624
- /**
2625
- * @param {InMemoryConnectionData} other
2626
- * @returns {boolean}
2627
- */
2628
- equals(other: InMemoryConnectionData): boolean;
2629
- }
2630
- import IConnectionData = require("@javonet/core/lib/utils/connectionData/IConnectionData");
2631
- }
2632
- declare module "dist/lib/utils/connectionData/WsConnectionData" {
2633
- export = WsConnectionData;
2634
- /** @typedef {import('../../declarations').ConnectionType} ConnectionType */
2635
- /**
2636
- * Represents WebSocket connection data.
2637
- * @extends IConnectionData
2638
- */
2639
- class WsConnectionData extends IConnectionData {
2640
- /**
2641
- * @param {string} hostname - The hostname of the connection.
2642
- */
2643
- constructor(hostname: string);
2644
- /** @private @type {string} */
2645
- private _hostname;
2646
- /** @private @type {ConnectionType} */
2647
- private _connectionType;
2648
- /** @type {ConnectionType} */
2649
- get connectionType(): ConnectionType;
2650
- /** @type {string} */
2651
- set hostname(value: string);
2652
- /** @type {string} */
2653
- get hostname(): string;
2654
- /**
2655
- * Serializes the connection data.
2656
- * @returns {number[]} An array of connection data values.
2657
- */
2658
- serializeConnectionData(): number[];
2659
- equals(other: any): boolean;
2660
- }
2661
- namespace WsConnectionData {
2662
- export { ConnectionType };
2663
- }
2664
- import IConnectionData = require("@javonet/core/lib/utils/connectionData/IConnectionData");
2665
- type ConnectionType = import("@javonet/core/lib/declarations").ConnectionType;
2666
- }
2667
- declare module "dist/lib/utils/exception/ExceptionSerializer" {
2668
- export = ExceptionSerializer;
2669
- class ExceptionSerializer {
2670
- static serializeException(exception: any, command: any): Command;
2671
- static getExceptionCode(exception: any): 0 | 5 | 6;
2672
- static serializeStackTrace(exception: any, stackClasses: any, stackMethods: any, stackLines: any, stackFiles: any): void;
2673
- }
2674
- import Command = require("@javonet/core/lib/utils/Command");
2675
- }
2676
- declare module "dist/index" {
2677
- import CommandSerializer = require("@javonet/core/lib/core/protocol/CommandSerializer");
2678
- import CommandDeserializer = require("@javonet/core/lib/core/protocol/CommandDeserializer");
2679
- import TypeDeserializer = require("@javonet/core/lib/core/protocol/TypeDeserializer");
2680
- import TypeSerializer = require("@javonet/core/lib/core/protocol/TypeSerializer");
2681
- import Interpreter = require("@javonet/core/lib/core/interpreter/Interpreter");
2682
- import DelegatesCache = require("@javonet/core/lib/core/delegatesCache/DelegatesCache");
2683
- import { InvocationContext } from "@javonet/core/lib/sdk/InvocationContext";
2684
- import { InvocationWsContext } from "@javonet/core/lib/sdk/InvocationContext";
2685
- import RuntimeContext = require("@javonet/core/lib/sdk/RuntimeContext");
2686
- import RuntimeFactory = require("@javonet/core/lib/sdk/RuntimeFactory");
2687
- import Command = require("@javonet/core/lib/utils/Command");
2688
- import CommandType = require("@javonet/core/lib/utils/CommandType");
2689
- import ConnectionType = require("@javonet/core/lib/utils/ConnectionType");
2690
- import ExceptionType = require("@javonet/core/lib/utils/ExceptionType");
2691
- import RuntimeName = require("@javonet/core/lib/utils/RuntimeName");
2692
- import RuntimeNameHandler = require("@javonet/core/lib/utils/RuntimeNameHandler");
2693
- import StringEncodingMode = require("@javonet/core/lib/utils/StringEncodingMode");
2694
- import Type = require("@javonet/core/lib/utils/Type");
2695
- import IConnectionData = require("@javonet/core/lib/utils/connectionData/IConnectionData");
2696
- import InMemoryConnectionData = require("@javonet/core/lib/utils/connectionData/InMemoryConnectionData");
2697
- import WsConnectionData = require("@javonet/core/lib/utils/connectionData/WsConnectionData");
2698
- import ExceptionSerializer = require("@javonet/core/lib/utils/exception/ExceptionSerializer");
2699
- import ExceptionThrower = require("@javonet/core/lib/utils/exception/ExceptionThrower");
2700
- export { CommandSerializer, CommandDeserializer, TypeDeserializer, TypeSerializer, Interpreter, DelegatesCache, InvocationContext, InvocationWsContext, RuntimeContext, RuntimeFactory, Command, CommandType, ConnectionType, ExceptionType, RuntimeName, RuntimeNameHandler, StringEncodingMode, Type, IConnectionData, InMemoryConnectionData, WsConnectionData, ExceptionSerializer, ExceptionThrower };
2701
- }
2702
- declare module "dist/lib/core/handler/AbstractHandler" {
2703
- export = AbstractHandler;
2704
- class AbstractHandler {
2705
- handlers: any[];
2706
- process(command: any): void;
2707
- handleCommand(command: any): void;
2708
- iterate(cmd: any): void;
2709
- process_stack_trace(error: any, class_name: any): any;
2710
- }
2711
- }
2712
- declare module "dist/lib/core/handler/ArrayGetItemHandler" {
2713
- const _exports: ArrayGetItemHandler;
2714
- export = _exports;
2715
- class ArrayGetItemHandler extends AbstractHandler {
2716
- requiredParametersCount: number;
2717
- process(command: any): any;
2718
- }
2719
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2720
- }
2721
- declare module "dist/lib/core/handler/ArrayGetRankHandler" {
2722
- const _exports: ArrayGetRankHandler;
2723
- export = _exports;
2724
- class ArrayGetRankHandler extends AbstractHandler {
2725
- requiredParametersCount: number;
2726
- process(command: any): number;
2727
- }
2728
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2729
- }
2730
- declare module "dist/lib/core/handler/ArrayGetSizeHandler" {
2731
- const _exports: ArrayGetSizeHandler;
2732
- export = _exports;
2733
- class ArrayGetSizeHandler extends AbstractHandler {
2734
- requiredParametersCount: number;
2735
- process(command: any): number;
2736
- }
2737
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2738
- }
2739
- declare module "dist/lib/core/handler/ArrayHandler" {
2740
- const _exports: ArrayHandler;
2741
- export = _exports;
2742
- class ArrayHandler extends AbstractHandler {
2743
- process(command: any): any;
2744
- }
2745
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2746
- }
2747
- declare module "dist/lib/core/handler/ArraySetItemHandler" {
2748
- const _exports: ArraySetItemHandler;
2749
- export = _exports;
2750
- class ArraySetItemHandler extends AbstractHandler {
2751
- requiredParametersCount: number;
2752
- process(command: any): number;
2753
- }
2754
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2755
- }
2756
- declare module "dist/lib/core/handler/CastingHandler" {
2757
- const _exports: CastingHandler;
2758
- export = _exports;
2759
- class CastingHandler extends AbstractHandler {
2760
- }
2761
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2762
- }
2763
- declare module "dist/lib/utils/TypesConverter" {
2764
- /**
2765
- * ConvertTypeHandler class handles the conversion of JType to Type.
2766
- */
2767
- export class ConvertTypeHandler {
2768
- /**
2769
- * Minimum required parameters count for the command.
2770
- * @type {number}
2771
- */
2772
- requiredParametersCount: number;
2773
- /**
2774
- * Processes the given command to convert JType to Type.
2775
- * @param {Object} command - The command to process.
2776
- * @returns {any} The converted type.
2777
- */
2778
- process(command: Object): any;
2779
- /**
2780
- * Validates the command to ensure it has enough parameters.
2781
- * @param {Object} command - The command to validate.
2782
- */
2783
- validateCommand(command: Object): void;
2784
- }
2785
- /**
2786
- * TypesConverter class provides utilities for converting between types.
2787
- */
2788
- export class TypesConverter {
2789
- /**
2790
- * Converts a JavaScript type to a JType equivalent.
2791
- * @param {Function} type - The JavaScript type.
2792
- * @returns {number} The corresponding JType.
2793
- */
2794
- static convertTypeToJType(type: Function): number;
2795
- /**
2796
- * Converts a JType to a JavaScript type equivalent.
2797
- * @param {number} type - The JType to convert.
2798
- * @returns {Function} The corresponding JavaScript type.
2799
- */
2800
- static convertJTypeToType(type: number): Function;
2801
- }
2802
- /**
2803
- * Enum for JType mappings.
2804
- */
2805
- export type JType = number;
2806
- export namespace JType {
2807
- let Boolean: number;
2808
- let Float: number;
2809
- let String: number;
2810
- let Null: number;
2811
- }
2812
- }
2813
- declare module "dist/lib/core/handler/ConvertTypeHandler" {
2814
- export = ConvertTypeHandler;
2815
- /**
2816
- * ConvertTypeHandler class handles the conversion of JType to Type.
2817
- */
2818
- class ConvertTypeHandler extends AbstractHandler {
2819
- /**
2820
- * Minimum required parameters count for the command.
2821
- * @type {number}
2822
- */
2823
- requiredParametersCount: number;
2824
- /**
2825
- * Processes the given command to convert JType to Type.
2826
- * @param {Object} command - The command to process.
2827
- * @returns {any} The converted type.
2828
- */
2829
- process(command: Object): any;
2830
- /**
2831
- * Validates the command to ensure it has enough parameters.
2832
- * @param {Object} command - The command to validate.
2833
- */
2834
- validateCommand(command: Object): void;
2835
- }
2836
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2837
- }
2838
- declare module "dist/lib/core/handler/CreateClassInstanceHandler" {
2839
- const _exports: CreateClassInstanceHandler;
2840
- export = _exports;
2841
- class CreateClassInstanceHandler extends AbstractHandler {
2842
- requiredParametersCount: number;
2843
- process(command: any): any;
2844
- }
2845
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2846
- }
2847
- declare module "dist/lib/utils/uuid/rng" {
2848
- function _exports(): Uint8Array<ArrayBuffer>;
2849
- export = _exports;
2850
- }
2851
- declare module "dist/lib/utils/uuid/REGEX" {
2852
- const _exports: RegExp;
2853
- export = _exports;
2854
- }
2855
- declare module "dist/lib/utils/uuid/validate" {
2856
- export = validate;
2857
- function validate(uuid: any): boolean;
2858
- }
2859
- declare module "dist/lib/utils/uuid/stringify" {
2860
- export = stringify;
2861
- function stringify(arr: any, offset?: number): string;
2862
- }
2863
- declare module "dist/lib/utils/uuid/v4" {
2864
- export = v4;
2865
- function v4(options: any, buf: any, offset: any): any;
2866
- }
2867
- declare module "dist/lib/core/referenceCache/ReferencesCache" {
2868
- export = ReferencesCache;
2869
- class ReferencesCache {
2870
- static getInstance(): any;
2871
- cacheReference(reference: any): any;
2872
- resolveReference(id: any): any;
2873
- deleteReference(referenceGuid: any): number;
2874
- }
2875
- }
2876
- declare module "dist/lib/core/handler/DestructReferenceHandler" {
2877
- const _exports: DestructReferenceHandler;
2878
- export = _exports;
2879
- class DestructReferenceHandler extends AbstractHandler {
2880
- process(command: any): any;
2881
- }
2882
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2883
- }
2884
- declare module "dist/lib/core/namespaceCache/NamespaceCache" {
2885
- export = NamespaceCache;
2886
- class NamespaceCache {
2887
- static _instance: null;
2888
- namespaceCache: any[];
2889
- cacheNamespace(namespaceRegex: any): void;
2890
- isNamespaceCacheEmpty(): boolean;
2891
- isTypeAllowed(typeToCheck: any): boolean;
2892
- getCachedNamespaces(): any[];
2893
- clearCache(): number;
2894
- }
2895
- }
2896
- declare module "dist/lib/core/handler/EnableNamespaceHandler" {
2897
- const _exports: EnableNamespaceHandler;
2898
- export = _exports;
2899
- class EnableNamespaceHandler extends AbstractHandler {
2900
- requiredParametersCount: number;
2901
- process(command: any): number;
2902
- }
2903
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2904
- }
2905
- declare module "dist/lib/core/typeCache/TypeCache" {
2906
- export = TypeCache;
2907
- class TypeCache {
2908
- static _instance: null;
2909
- typeCache: any[];
2910
- cacheType(typRegex: any): void;
2911
- isTypeCacheEmpty(): boolean;
2912
- isTypeAllowed(typeToCheck: any): boolean;
2913
- getCachedTypes(): any[];
2914
- clearCache(): number;
2915
- }
2916
- }
2917
- declare module "dist/lib/core/handler/EnableTypeHandler" {
2918
- const _exports: EnableTypeHandler;
2919
- export = _exports;
2920
- class EnableTypeHandler extends AbstractHandler {
2921
- requiredParametersCount: number;
2922
- process(command: any): number;
2923
- }
2924
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2925
- }
2926
- declare module "dist/lib/core/handler/GetGlobalStaticFieldHandler" {
2927
- const _exports: GetGlobalStaticFieldHandler;
2928
- export = _exports;
2929
- class GetGlobalStaticFieldHandler extends AbstractHandler {
2930
- requiredParametersCount: number;
2931
- process(command: any): any;
2932
- }
2933
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2934
- }
2935
- declare module "dist/lib/core/handler/GetInstanceFieldHandler" {
2936
- const _exports: GetInstanceFieldHandler;
2937
- export = _exports;
2938
- class GetInstanceFieldHandler extends AbstractHandler {
2939
- requiredParametersCount: number;
2940
- process(command: any): any;
2941
- }
2942
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2943
- }
2944
- declare module "dist/lib/core/handler/GetInstanceMethodAsDelegateHandler" {
2945
- const _exports: GetInstanceMethodAsDelegateHandler;
2946
- export = _exports;
2947
- /**
2948
- * Handles retrieving an instance method as a delegate.
2949
- */
2950
- class GetInstanceMethodAsDelegateHandler extends AbstractHandler {
2951
- /** @type {Function|null} */
2952
- method: Function | null;
2953
- /** @type {number} */
2954
- requiredParametersCount: number;
2955
- /** @type {Array<*>} */
2956
- args: Array<any>;
2957
- /** @type {Object|null} */
2958
- instance: Object | null;
2959
- /**
2960
- * Processes a command to retrieve an instance method as a delegate.
2961
- * @param {Object} command - The command containing payload data.
2962
- * @param {Array<*>} command.payload - The payload containing instance, method name, and arguments.
2963
- * @returns {Function} The delegate for the instance method.
2964
- * @throws {Error} If the parameters mismatch or the method cannot be found.
2965
- */
2966
- process(command: {
2967
- payload: Array<any>;
2968
- }): Function;
2969
- /**
2970
- * Retrieves the method from the type.
2971
- * @param {Object} type - The class or constructor to search for the method.
2972
- * @param {string} methodName - The name of the method.
2973
- * @returns {Function|null} The found method or null if not found.
2974
- */
2975
- getMethod(type: Object, methodName: string): Function | null;
2976
- /**
2977
- * Creates an error message when the method is not found.
2978
- * @param {Object} type - The class or constructor.
2979
- * @param {string} methodName - The method name.
2980
- * @returns {Error} The error with detailed message.
2981
- */
2982
- createMethodNotFoundError(type: Object, methodName: string): Error;
2983
- }
2984
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2985
- }
2986
- declare module "dist/lib/core/handler/GetStaticFieldHandler" {
2987
- const _exports: GetStaticFieldHandler;
2988
- export = _exports;
2989
- class GetStaticFieldHandler extends AbstractHandler {
2990
- requiredParametersCount: number;
2991
- process(command: any): any;
2992
- }
2993
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2994
- }
2995
- declare module "dist/lib/core/handler/GetStaticMethodAsDelegateHandler" {
2996
- const _exports: GetStaticMethodAsDelegateHandler;
2997
- export = _exports;
2998
- /**
2999
- * Handles retrieving a static method as a delegate.
3000
- */
3001
- class GetStaticMethodAsDelegateHandler extends AbstractHandler {
3002
- /** @type {Array<*>} */
3003
- args: Array<any>;
3004
- /** @type {Function|null} */
3005
- method: Function | null;
3006
- /** @type {number} */
3007
- requiredParametersCount: number;
3008
- /**
3009
- * Processes a command to retrieve a static method as a delegate.
3010
- * @param {Command} command - The command containing payload data.
3011
- * @param {Array<*>} command.payload - The payload containing type, method name, and arguments.
3012
- * @returns {Function} The delegate for the static method.
3013
- * @throws {Error} If the parameters mismatch or the method cannot be found.
3014
- */
3015
- process(command: Command): Function;
3016
- /**
3017
- * Retrieves the method from the type.
3018
- * @param {Object} type - The class or constructor to search for the method.
3019
- * @param {string} methodName - The name of the method.
3020
- * @param {Array<Function>} argsType - The argument types.
3021
- * @param {Object} modifier - Parameter modifier (not used in JS implementation).
3022
- * @returns {Function|null} The found method or null if not found.
3023
- */
3024
- getMethod(type: Object, methodName: string): Function | null;
3025
- /**
3026
- * Creates an error message when the method is not found.
3027
- * @param {Object} type - The class or constructor.
3028
- * @param {string} methodName - The method name.
3029
- * @returns {Error} The error with detailed message.
3030
- */
3031
- createMethodNotFoundError(type: Object, methodName: string): Error;
3032
- }
3033
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3034
- import { Command } from "@javonet/core";
3035
- }
3036
- declare module "dist/lib/core/handler/LoadLibraryHandler" {
3037
- const _exports: LoadLibraryHandler;
3038
- export = _exports;
3039
- class LoadLibraryHandler extends AbstractHandler {
3040
- static loadedLibraries: any[];
3041
- requiredParametersCount: number;
3042
- process(command: any): number;
3043
- getLoadedLibraries(): any[];
3044
- }
3045
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3046
- }
3047
- declare module "dist/lib/core/handler/GetTypeHandler" {
3048
- const _exports: GetTypeHandler;
3049
- export = _exports;
3050
- class GetTypeHandler extends AbstractHandler {
3051
- requiredParametersCount: number;
3052
- namespaceCache: NamespaceCache;
3053
- typeCache: TypeCache;
3054
- process(command: any): any;
3055
- getAvailableTypes(): any[];
3056
- }
3057
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3058
- import NamespaceCache = require("@javonet/core/lib/core/namespaceCache/NamespaceCache");
3059
- import TypeCache = require("@javonet/core/lib/core/typeCache/TypeCache");
3060
- }
3061
- declare module "dist/lib/core/handler/ValueHandler" {
3062
- const _exports: ValueHandler;
3063
- export = _exports;
3064
- class ValueHandler extends AbstractHandler {
3065
- process(command: any): any;
3066
- }
3067
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3068
- }
3069
- declare module "dist/lib/core/handler/InvokeStaticMethodHandler" {
3070
- const _exports: InvokeStaticMethodHandler;
3071
- export = _exports;
3072
- class InvokeStaticMethodHandler extends AbstractHandler {
3073
- requiredParametersCount: number;
3074
- process(command: any): any;
3075
- }
3076
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3077
- }
3078
- declare module "dist/lib/core/handler/SetStaticFieldHandler" {
3079
- const _exports: SetStaticFieldHandler;
3080
- export = _exports;
3081
- class SetStaticFieldHandler extends AbstractHandler {
3082
- requiredParametersCount: number;
3083
- process(command: any): number;
3084
- }
3085
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3086
- }
3087
- declare module "dist/lib/core/handler/ResolveReferenceHandler" {
3088
- const _exports: ResolveReferenceHandler;
3089
- export = _exports;
3090
- class ResolveReferenceHandler extends AbstractHandler {
3091
- process(command: any): any;
3092
- }
3093
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3094
- }
3095
- declare module "dist/lib/core/handler/SetInstanceFieldHandler" {
3096
- const _exports: SetInstanceFieldHandler;
3097
- export = _exports;
3098
- class SetInstanceFieldHandler extends AbstractHandler {
3099
- requiredParametersCount: number;
3100
- process(command: any): number;
3101
- }
3102
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3103
- }
3104
- declare module "dist/lib/core/handler/InvokeInstanceMethodHandler" {
3105
- const _exports: InvokeInstanceMethodHandler;
3106
- export = _exports;
3107
- class InvokeInstanceMethodHandler extends AbstractHandler {
3108
- requiredParametersCount: number;
3109
- process(command: any): any;
3110
- }
3111
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3112
- }
3113
- declare module "dist/lib/core/handler/PassDelegateHandler" {
3114
- const _exports: PassDelegateHandler;
3115
- export = _exports;
3116
- /**
3117
- * PassDelegateHandler class responsible for processing a command to create a delegate.
3118
- */
3119
- class PassDelegateHandler extends AbstractHandler {
3120
- /**
3121
- * Minimum required parameters count for the command.
3122
- * @type {number}
3123
- */
3124
- requiredParametersCount: number;
3125
- interpreter: Interpreter;
3126
- /**
3127
- * Processes the given command to create and compile a delegate.
3128
- * @param {Command} command - The command to process.
3129
- * @returns {Function} The compiled delegate function.
3130
- */
3131
- process(command: Command): Function;
3132
- /**
3133
- * Validates the command to ensure it has enough parameters.
3134
- * @param {Command} command - The command to validate.
3135
- */
3136
- validateCommand(command: Command): void;
3137
- /**
3138
- * Retrieves the arguments from the command payload.
3139
- * @param {Command} command - The command containing the payload.
3140
- * @returns {Array} The extracted arguments.
3141
- */
3142
- getArguments(command: Command): any[];
3143
- /**
3144
- * Extracts argument types from the arguments array.
3145
- * @param {Array} args - The arguments array.
3146
- * @returns {Array} The argument types.
3147
- */
3148
- getArgumentTypes(args: any[]): any[];
3149
- /**
3150
- * Retrieves the return type from the arguments array.
3151
- * @param {Array} args - The arguments array.
3152
- * @returns {Function} The return type.
3153
- */
3154
- getReturnType(args: any[]): Function;
3155
- /**
3156
- * Creates parameter expressions from argument types.
3157
- * @param {Array} argsTypes - The argument types.
3158
- * @returns {Array} The parameter expressions.
3159
- */
3160
- createParameters(argsTypes: any[]): any[];
3161
- /**
3162
- * Creates an array of arguments for the delegate.
3163
- * @param {string} delegateGuid - The delegate identifier.
3164
- * @param {Array} parameters - The parameter expressions.
3165
- * @returns {Array} The arguments array.
3166
- */
3167
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
3168
- /**
3169
- * Creates a command expression.
3170
- * @param {string} callingRuntimeName - The runtime name.
3171
- * @param {Array} payload - The arguments array.
3172
- * @returns {Object} The command object.
3173
- */
3174
- createCommand(callingRuntimeName: string, payload: any[]): Object;
3175
- /**
3176
- * Creates a method call to execute the command.
3177
- * @param {Command} command - The command object.
3178
- * @returns {Object} The response object.
3179
- */
3180
- createExecuteCall(command: Command): Object;
3181
- /**
3182
- * Retrieves the response payload from the execution call.
3183
- * @param {Object} executeCall - The execution call.
3184
- * @returns {Array} The response payload.
3185
- */
3186
- getResponse(executeCall: Object): any[];
3187
- /**
3188
- * Converts the first element of the response to the return type.
3189
- * @param {Array} response - The response payload.
3190
- * @param {Function} returnType - The return type.
3191
- * @returns {*} The converted first element.
3192
- */
3193
- convertFirstElement(response: any[], returnType: Function): any;
3194
- /**
3195
- * Creates a block of expressions for the delegate.
3196
- * @param {Function} returnType - The return type.
3197
- * @param {*} convertedFirstElement - The converted first element.
3198
- * @returns {Object} The block expression.
3199
- */
3200
- createBlock(returnType: Function, convertedFirstElement: any): Object;
3201
- /**
3202
- * Creates a delegate type.
3203
- * @param {Array} parameters - The parameter expressions.
3204
- * @param {Function} returnType - The return type.
3205
- * @returns {Function} The delegate type.
3206
- */
3207
- createDelegateType(parameters: any[], returnType: Function): Function;
3208
- }
3209
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3210
- import { Interpreter } from "@javonet/core";
3211
- import { Command } from "@javonet/core";
3212
- }
3213
- declare module "dist/lib/core/handler/InvokeDelegateHandler" {
3214
- const _exports: InvokeDelegateHandler;
3215
- export = _exports;
3216
- /**
3217
- * Handles invoking a delegate by GUID.
3218
- */
3219
- class InvokeDelegateHandler extends AbstractHandler {
3220
- /** @type {number} */
3221
- requiredParametersCount: number;
3222
- /**
3223
- * Processes a command to invoke a delegate.
3224
- * @param {Command} command - The command containing payload data.
3225
- * @returns {*} The result of the delegate invocation.
3226
- * @throws {Error} If the parameters mismatch or the delegate cannot be found.
3227
- */
3228
- process(command: Command): any;
3229
- }
3230
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3231
- }
3232
- declare module "dist/lib/core/handler/InvokeGlobalFunctionHandler" {
3233
- const _exports: InvokeGlobalFunctionHandler;
3234
- export = _exports;
3235
- class InvokeGlobalFunctionHandler extends AbstractHandler {
3236
- requiredParametersCount: number;
3237
- process(command: any): any;
3238
- }
3239
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3240
- }
3241
- declare module "dist/lib/core/handler/Handler" {
3242
- export class Handler {
3243
- handleCommand(command: any): Command;
3244
- parseCommand(response: any, runtimeName: any): Command;
3245
- }
3246
- export const handlers: {
3247
- 0: {
3248
- process(command: any): any;
3249
- handlers: any[];
3250
- handleCommand(command: any): void;
3251
- iterate(cmd: any): void;
3252
- process_stack_trace(error: any, class_name: any): any;
3253
- };
3254
- 1: {
3255
- requiredParametersCount: number;
3256
- process(command: any): number;
3257
- getLoadedLibraries(): any[];
3258
- handlers: any[];
3259
- handleCommand(command: any): void;
3260
- iterate(cmd: any): void;
3261
- process_stack_trace(error: any, class_name: any): any;
3262
- };
3263
- 2: {
3264
- requiredParametersCount: number;
3265
- process(command: any): any;
3266
- handlers: any[];
3267
- handleCommand(command: any): void;
3268
- iterate(cmd: any): void;
3269
- process_stack_trace(error: any, class_name: any): any;
3270
- };
3271
- 6: {
3272
- requiredParametersCount: number;
3273
- namespaceCache: import("@javonet/core/lib/core/namespaceCache/NamespaceCache");
3274
- typeCache: import("@javonet/core/lib/core/typeCache/TypeCache");
3275
- process(command: any): any;
3276
- getAvailableTypes(): any[];
3277
- handlers: any[];
3278
- handleCommand(command: any): void;
3279
- iterate(cmd: any): void;
3280
- process_stack_trace(error: any, class_name: any): any;
3281
- };
3282
- 3: {
3283
- requiredParametersCount: number;
3284
- process(command: any): any;
3285
- handlers: any[];
3286
- handleCommand(command: any): void;
3287
- iterate(cmd: any): void;
3288
- process_stack_trace(error: any, class_name: any): any;
3289
- };
3290
- 4: {
3291
- requiredParametersCount: number;
3292
- process(command: any): number;
3293
- handlers: any[];
3294
- handleCommand(command: any): void;
3295
- iterate(cmd: any): void;
3296
- process_stack_trace(error: any, class_name: any): any;
3297
- };
3298
- 5: {
3299
- requiredParametersCount: number;
3300
- process(command: any): any;
3301
- handlers: any[];
3302
- handleCommand(command: any): void;
3303
- iterate(cmd: any): void;
3304
- process_stack_trace(error: any, class_name: any): any;
3305
- };
3306
- 7: {
3307
- process(command: any): any;
3308
- handlers: any[];
3309
- handleCommand(command: any): void;
3310
- iterate(cmd: any): void;
3311
- process_stack_trace(error: any, class_name: any): any;
3312
- };
3313
- 12: {
3314
- process(command: any): void;
3315
- handlers: any[];
3316
- handleCommand(command: any): void;
3317
- iterate(cmd: any): void;
3318
- process_stack_trace(error: any, class_name: any): any;
3319
- };
3320
- 13: {
3321
- requiredParametersCount: number;
3322
- process(command: any): any;
3323
- handlers: any[];
3324
- handleCommand(command: any): void;
3325
- iterate(cmd: any): void;
3326
- process_stack_trace(error: any, class_name: any): any;
3327
- };
3328
- 25: {
3329
- requiredParametersCount: number;
3330
- process(command: any): number;
3331
- handlers: any[];
3332
- handleCommand(command: any): void;
3333
- iterate(cmd: any): void;
3334
- process_stack_trace(error: any, class_name: any): any;
3335
- };
3336
- 9: {
3337
- requiredParametersCount: number;
3338
- process(command: any): any;
3339
- handlers: any[];
3340
- handleCommand(command: any): void;
3341
- iterate(cmd: any): void;
3342
- process_stack_trace(error: any, class_name: any): any;
3343
- };
3344
- 17: {
3345
- process(command: any): any;
3346
- handlers: any[];
3347
- handleCommand(command: any): void;
3348
- iterate(cmd: any): void;
3349
- process_stack_trace(error: any, class_name: any): any;
3350
- };
3351
- 19: {
3352
- requiredParametersCount: number;
3353
- process(command: any): any;
3354
- handlers: any[];
3355
- handleCommand(command: any): void;
3356
- iterate(cmd: any): void;
3357
- process_stack_trace(error: any, class_name: any): any;
3358
- };
3359
- 20: {
3360
- requiredParametersCount: number;
3361
- process(command: any): number;
3362
- handlers: any[];
3363
- handleCommand(command: any): void;
3364
- iterate(cmd: any): void;
3365
- process_stack_trace(error: any, class_name: any): any;
3366
- };
3367
- 21: {
3368
- requiredParametersCount: number;
3369
- process(command: any): number;
3370
- handlers: any[];
3371
- handleCommand(command: any): void;
3372
- iterate(cmd: any): void;
3373
- process_stack_trace(error: any, class_name: any): any;
3374
- };
3375
- 22: {
3376
- requiredParametersCount: number;
3377
- process(command: any): number;
3378
- handlers: any[];
3379
- handleCommand(command: any): void;
3380
- iterate(cmd: any): void;
3381
- process_stack_trace(error: any, class_name: any): any;
3382
- };
3383
- 23: {
3384
- process(command: any): any;
3385
- handlers: any[];
3386
- handleCommand(command: any): void;
3387
- iterate(cmd: any): void;
3388
- process_stack_trace(error: any, class_name: any): any;
3389
- };
3390
- 34: {
3391
- requiredParametersCount: number;
3392
- process(command: any): number;
3393
- handlers: any[];
3394
- handleCommand(command: any): void;
3395
- iterate(cmd: any): void;
3396
- process_stack_trace(error: any, class_name: any): any;
3397
- };
3398
- 35: {
3399
- requiredParametersCount: number;
3400
- process(command: any): number;
3401
- handlers: any[];
3402
- handleCommand(command: any): void;
3403
- iterate(cmd: any): void;
3404
- process_stack_trace(error: any, class_name: any): any;
3405
- };
3406
- 37: {
3407
- args: Array<any>;
3408
- method: Function | null;
3409
- requiredParametersCount: number;
3410
- process(command: Command): Function;
3411
- getMethod(type: Object, methodName: string): Function | null;
3412
- createMethodNotFoundError(type: Object, methodName: string): Error;
3413
- handlers: any[];
3414
- handleCommand(command: any): void;
3415
- iterate(cmd: any): void;
3416
- process_stack_trace(error: any, class_name: any): any;
3417
- };
3418
- 38: {
3419
- method: Function | null;
3420
- requiredParametersCount: number;
3421
- args: Array<any>;
3422
- instance: Object | null;
3423
- process(command: {
3424
- payload: Array<any>;
3425
- }): Function;
3426
- getMethod(type: Object, methodName: string): Function | null;
3427
- createMethodNotFoundError(type: Object, methodName: string): Error;
3428
- handlers: any[];
3429
- handleCommand(command: any): void;
3430
- iterate(cmd: any): void;
3431
- process_stack_trace(error: any, class_name: any): any;
3432
- };
3433
- 39: {
3434
- requiredParametersCount: number;
3435
- interpreter: import("@javonet/core").Interpreter;
3436
- process(command: Command): Function;
3437
- validateCommand(command: Command): void;
3438
- getArguments(command: Command): any[];
3439
- getArgumentTypes(args: any[]): any[];
3440
- getReturnType(args: any[]): Function;
3441
- createParameters(argsTypes: any[]): any[];
3442
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
3443
- createCommand(callingRuntimeName: string, payload: any[]): Object;
3444
- createExecuteCall(command: Command): Object;
3445
- getResponse(executeCall: Object): any[];
3446
- convertFirstElement(response: any[], returnType: Function): any;
3447
- createBlock(returnType: Function, convertedFirstElement: any): Object;
3448
- createDelegateType(parameters: any[], returnType: Function): Function;
3449
- handlers: any[];
3450
- handleCommand(command: any): void;
3451
- iterate(cmd: any): void;
3452
- process_stack_trace(error: any, class_name: any): any;
3453
- };
3454
- 40: {
3455
- requiredParametersCount: number;
3456
- process(command: Command): any;
3457
- handlers: any[];
3458
- handleCommand(command: any): void;
3459
- iterate(cmd: any): void;
3460
- process_stack_trace(error: any, class_name: any): any;
3461
- };
3462
- 16: {
3463
- requiredParametersCount: number;
3464
- process(command: any): any;
3465
- handlers: any[];
3466
- handleCommand(command: any): void;
3467
- iterate(cmd: any): void;
3468
- process_stack_trace(error: any, class_name: any): any;
3469
- };
3470
- };
3471
- import { Command } from "@javonet/core";
3472
- }
3473
- declare module "dist/lib/core/handler/SetGlobalStaticFieldHandler" {
3474
- const _exports: SetGlobalStaticFieldHandler;
3475
- export = _exports;
3476
- class SetGlobalStaticFieldHandler extends AbstractHandler {
3477
- requiredParametersCount: number;
3478
- }
3479
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3480
- }
3481
- declare module "dist/lib/utils/RuntimeLogger" {
3482
- export = RuntimeLogger;
3483
- class RuntimeLogger {
3484
- static notLoggedYet: boolean;
3485
- static getRuntimeInfo(): string;
3486
- static printRuntimeInfo(): void;
3487
- }
3488
- }
3489
- declare module "dist/lib/core/receiver/Receiver" {
3490
- export = Receiver;
3491
- class Receiver {
3492
- static connectionData: InMemoryConnectionData;
3493
- /**
3494
- * @param {number[]} messageByteArray
3495
- */
3496
- static sendCommand(messageByteArray: number[]): Uint8Array<any>;
3497
- static heartBeat(messageByteArray: any): Int8Array<ArrayBuffer>;
3498
- Receiver(): void;
3499
- }
3500
- import { InMemoryConnectionData } from "@javonet/core";
3501
- }
3502
- declare module "dist/lib/core/receiver/ReceiverNative" {
3503
- export {};
3504
- }
3505
- declare module "dist/lib/core/transmitter/TransmitterWrapper" {
3506
- export = TransmitterWrapper;
3507
- class TransmitterWrapper {
3508
- static isNativeLibraryLoaded(): boolean;
3509
- static loadNativeLibrary(): void;
3510
- static activate(licenseKey: any): any;
3511
- static sendCommand(messageArray: any): any;
3512
- static setConfigSource(configSource: any): any;
3513
- static setJavonetWorkingDirectory(path: any): void;
3514
- }
3515
- }
3516
- declare module "dist/lib/core/transmitter/Transmitter" {
3517
- export = Transmitter;
3518
- class Transmitter {
3519
- static sendCommand(messageArray: any): any;
3520
- static activate: (licenseKey: any) => any;
3521
- static setConfigSource(configSource: any): any;
3522
- static setJavonetWorkingDirectory(workingDirectory: any): void;
3523
- }
3524
- }
3525
- declare module "dist/lib/sdk/tools/JsonFileResolver" {
3526
- export = JsonFileResolver;
3527
- class JsonFileResolver {
3528
- constructor(path: any);
3529
- path: any;
3530
- jsonObject: any;
3531
- getLicenseKey(): any;
3532
- getRuntimes(): any;
3533
- getRuntime(runtimeName: any, configName: any): any;
3534
- getChannel(runtimeName: any, configName: any): any;
3535
- getChannelType(runtimeName: any, configName: any): any;
3536
- getChannelHost(runtimeName: any, configName: any): any;
3537
- getChannelPort(runtimeName: any, configName: any): any;
3538
- getModules(runtimeName: any, configName: any): any;
3539
- }
3540
- }
3541
- declare module "dist/lib/utils/connectionData/TcpConnectionData" {
3542
- export = TcpConnectionData;
3543
- /**
3544
- * @extends IConnectionData
3545
- */
3546
- class TcpConnectionData extends IConnectionData {
3547
- constructor(hostname: any, port: any);
3548
- _port: any;
3549
- _hostname: any;
3550
- _connectionType: 1;
3551
- ipAddress: string | null;
3552
- get connectionType(): 1;
3553
- get hostname(): any;
3554
- /**
3555
- * @param {TcpConnectionData} other
3556
- * @returns {boolean}
3557
- */
3558
- equals(other: TcpConnectionData): boolean;
3559
- /**
3560
- * @param {string} hostname
3561
- * @returns {string|null}
3562
- */
3563
- resolveIpAddress(hostname: string): string | null;
3564
- serializeConnectionData(): 1[];
3565
- #private;
3566
- }
3567
- import { IConnectionData } from "@javonet/core";
3568
- }
3569
- declare module "dist/lib/sdk/ConfigRuntimeFactory" {
3570
- export = ConfigRuntimeFactory;
3571
- /**
3572
- * The ConfigRuntimeFactory class provides methods for creating runtime contexts.
3573
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
3574
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3575
- */
3576
- class ConfigRuntimeFactory {
3577
- constructor(path: any);
3578
- path: any;
3579
- /**
3580
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
3581
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3582
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
3583
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3584
- */
3585
- clr(configName?: string): RuntimeContext;
3586
- /**
3587
- * Creates RuntimeContext instance to interact with the JVM runtime.
3588
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3589
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
3590
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3591
- */
3592
- jvm(configName?: string): RuntimeContext;
3593
- /**
3594
- * Creates RuntimeContext instance to interact with the .NET runtime.
3595
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3596
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
3597
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3598
- */
3599
- netcore(configName?: string): RuntimeContext;
3600
- /**
3601
- * Creates RuntimeContext instance to interact with the Perl runtime.
3602
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3603
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
3604
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3605
- */
3606
- perl(configName?: string): RuntimeContext;
3607
- /**
3608
- * Creates RuntimeContext instance to interact with the Python runtime.
3609
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3610
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
3611
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3612
- */
3613
- python(configName?: string): RuntimeContext;
3614
- /**
3615
- * Creates RuntimeContext instance to interact with the Ruby runtime.
3616
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3617
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
3618
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3619
- */
3620
- ruby(configName?: string): RuntimeContext;
3621
- /**
3622
- * Creates RuntimeContext instance to interact with Node.js runtime.
3623
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3624
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
3625
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3626
- */
3627
- nodejs(configName?: string): RuntimeContext;
3628
- /**
3629
- * Creates RuntimeContext instance to interact with the Python 2.7 runtime.
3630
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3631
- * @return {RuntimeContext} a RuntimeContext instance for the Python 2.7 runtime
3632
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3633
- */
3634
- python27(configName?: string): RuntimeContext;
3635
- #private;
3636
- }
3637
- import { RuntimeContext } from "@javonet/core";
3638
- }
3639
- declare module "dist/lib/sdk/Javonet" {
3640
- /**
3641
- * The Javonet class is a singleton class that serves as the entry point for interacting with Javonet.
3642
- * It provides methods to activate and initialize the Javonet SDK.
3643
- * It supports both in-memory and TCP connections.
3644
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/javonet-static-class)
3645
- */
3646
- export class Javonet {
3647
- /**
3648
- * Initializes Javonet using an in-memory channel on the same machine.
3649
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for an in-memory connection.
3650
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/in-memory-channel)
3651
- */
3652
- static inMemory(): RuntimeFactory;
3653
- /**
3654
- * Initializes Javonet with a TCP connection to a remote machine.
3655
- * @param {TcpConnectionData} tcpConnectionData - The tcp connection data of the remote machine.
3656
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a TCP connection.
3657
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/tcp-channel)
3658
- */
3659
- static tcp(tcpConnectionData: TcpConnectionData): RuntimeFactory;
3660
- /**
3661
- * Initializes Javonet with a WebSocket connection to a remote machine.
3662
- * @param {WsConnectionData} wsConnectionData - The WebSocket connection data of the remote machine.
3663
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a WebSocket connection.
3664
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/websocket-channel)
3665
- */
3666
- static webSocket(wsConnectionData: WsConnectionData): RuntimeFactory;
3667
- /**
3668
- * Initializes Javonet with a custom configuration file taken from external source.
3669
- * Currentyl supported: Configuration file in JSON format
3670
- * @param {string} configPath - Path to a configuration file.
3671
- * @returns {ConfigRuntimeFactory} A ConfigRuntimeFactory instance with configuration data.
3672
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/configure-channel)
3673
- */
3674
- static withConfig(configPath: string): ConfigRuntimeFactory;
3675
- /**
3676
- * Activates Javonet with the provided license key.
3677
- * @param {string} licenseKey - The license key to activate Javonet.
3678
- * @returns {number} The activation status code.
3679
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/activating-javonet)
3680
- */
3681
- static activate(licenseKey: string): number;
3682
- static getRuntimeInfo(): string;
3683
- /**
3684
- * Sets the configuration source for the Javonet SDK.
3685
- *
3686
- * @param {string} configSource - The configuration source.
3687
- */
3688
- static setConfigSource(configSource: string): void;
3689
- /**
3690
- * Sets the working directory for the Javonet SDK.
3691
- *
3692
- * @param {string} path - The working directory.
3693
- */
3694
- static setJavonetWorkingDirectory(path: string): void;
3695
- }
3696
- import TcpConnectionData = require("@javonet/core/lib/utils/connectionData/TcpConnectionData");
3697
- import { WsConnectionData } from "@javonet/core";
3698
- import { RuntimeFactory } from "@javonet/core";
3699
- import ConfigRuntimeFactory = require("@javonet/core/lib/sdk/ConfigRuntimeFactory");
3700
- export { TcpConnectionData, WsConnectionData };
3701
- }
3702
- declare module "dist/lib/sdk/tools/SdkExceptionHelper" {
3703
- export = sendExceptionToAppInsights;
3704
- /**
3705
- *
3706
- * @param {any} e
3707
- * @param {string} licenseKey
3708
- */
3709
- function sendExceptionToAppInsights(e: any, licenseKey: string): Promise<any>;
3710
- }
3711
- declare module "lib/core/handler/AbstractHandler" {
3712
- export = AbstractHandler;
3713
- class AbstractHandler {
3714
- handlers: any[];
3715
- process(command: any): void;
3716
- handleCommand(command: any): void;
3717
- iterate(cmd: any): void;
3718
- process_stack_trace(error: any, class_name: any): any;
3719
- }
3720
- }
3721
- declare module "lib/core/handler/ArrayGetItemHandler" {
3722
- const _exports: ArrayGetItemHandler;
3723
- export = _exports;
3724
- class ArrayGetItemHandler extends AbstractHandler {
3725
- requiredParametersCount: number;
3726
- process(command: any): any;
3727
- }
3728
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3729
- }
3730
- declare module "lib/core/handler/ArrayGetRankHandler" {
3731
- const _exports: ArrayGetRankHandler;
3732
- export = _exports;
3733
- class ArrayGetRankHandler extends AbstractHandler {
3734
- requiredParametersCount: number;
3735
- process(command: any): number;
3736
- }
3737
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3738
- }
3739
- declare module "lib/core/handler/ArrayGetSizeHandler" {
3740
- const _exports: ArrayGetSizeHandler;
3741
- export = _exports;
3742
- class ArrayGetSizeHandler extends AbstractHandler {
3743
- requiredParametersCount: number;
3744
- process(command: any): number;
3745
- }
3746
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3747
- }
3748
- declare module "lib/core/handler/ArrayHandler" {
3749
- const _exports: ArrayHandler;
3750
- export = _exports;
3751
- class ArrayHandler extends AbstractHandler {
3752
- process(command: any): any;
3753
- }
3754
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3755
- }
3756
- declare module "lib/core/handler/ArraySetItemHandler" {
3757
- const _exports: ArraySetItemHandler;
3758
- export = _exports;
3759
- class ArraySetItemHandler extends AbstractHandler {
3760
- requiredParametersCount: number;
3761
- process(command: any): number;
3762
- }
3763
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3764
- }
3765
- declare module "lib/core/handler/CastingHandler" {
3766
- const _exports: CastingHandler;
3767
- export = _exports;
3768
- class CastingHandler extends AbstractHandler {
3769
- }
3770
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3771
- }
3772
- declare module "lib/utils/TypesConverter" {
3773
- /**
3774
- * ConvertTypeHandler class handles the conversion of JType to Type.
3775
- */
3776
- export class ConvertTypeHandler {
3777
- /**
3778
- * Minimum required parameters count for the command.
3779
- * @type {number}
3780
- */
3781
- requiredParametersCount: number;
3782
- /**
3783
- * Processes the given command to convert JType to Type.
3784
- * @param {Object} command - The command to process.
3785
- * @returns {any} The converted type.
3786
- */
3787
- process(command: Object): any;
3788
- /**
3789
- * Validates the command to ensure it has enough parameters.
3790
- * @param {Object} command - The command to validate.
3791
- */
3792
- validateCommand(command: Object): void;
3793
- }
3794
- /**
3795
- * TypesConverter class provides utilities for converting between types.
3796
- */
3797
- export class TypesConverter {
3798
- /**
3799
- * Converts a JavaScript type to a JType equivalent.
3800
- * @param {Function} type - The JavaScript type.
3801
- * @returns {number} The corresponding JType.
3802
- */
3803
- static convertTypeToJType(type: Function): number;
3804
- /**
3805
- * Converts a JType to a JavaScript type equivalent.
3806
- * @param {number} type - The JType to convert.
3807
- * @returns {Function} The corresponding JavaScript type.
3808
- */
3809
- static convertJTypeToType(type: number): Function;
3810
- }
3811
- /**
3812
- * Enum for JType mappings.
3813
- */
3814
- export type JType = number;
3815
- export namespace JType {
3816
- let Boolean: number;
3817
- let Float: number;
3818
- let String: number;
3819
- let Null: number;
3820
- }
3821
- }
3822
- declare module "lib/core/handler/ConvertTypeHandler" {
3823
- export = ConvertTypeHandler;
3824
- /**
3825
- * ConvertTypeHandler class handles the conversion of JType to Type.
3826
- */
3827
- class ConvertTypeHandler extends AbstractHandler {
3828
- /**
3829
- * Minimum required parameters count for the command.
3830
- * @type {number}
3831
- */
3832
- requiredParametersCount: number;
3833
- /**
3834
- * Processes the given command to convert JType to Type.
3835
- * @param {Object} command - The command to process.
3836
- * @returns {any} The converted type.
3837
- */
3838
- process(command: Object): any;
3839
- /**
3840
- * Validates the command to ensure it has enough parameters.
3841
- * @param {Object} command - The command to validate.
3842
- */
3843
- validateCommand(command: Object): void;
3844
- }
3845
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3846
- }
3847
- declare module "lib/core/handler/CreateClassInstanceHandler" {
3848
- const _exports: CreateClassInstanceHandler;
3849
- export = _exports;
3850
- class CreateClassInstanceHandler extends AbstractHandler {
3851
- requiredParametersCount: number;
3852
- process(command: any): any;
3853
- }
3854
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3855
- }
3856
- declare module "lib/utils/uuid/rng" {
3857
- function _exports(): Uint8Array<ArrayBuffer>;
3858
- export = _exports;
3859
- }
3860
- declare module "lib/utils/uuid/REGEX" {
3861
- const _exports: RegExp;
3862
- export = _exports;
3863
- }
3864
- declare module "lib/utils/uuid/validate" {
3865
- export = validate;
3866
- function validate(uuid: any): boolean;
3867
- }
3868
- declare module "lib/utils/uuid/stringify" {
3869
- export = stringify;
3870
- function stringify(arr: any, offset?: number): string;
3871
- }
3872
- declare module "lib/utils/uuid/v4" {
3873
- export = v4;
3874
- function v4(options: any, buf: any, offset: any): any;
3875
- }
3876
- declare module "lib/core/referenceCache/ReferencesCache" {
3877
- export = ReferencesCache;
3878
- class ReferencesCache {
3879
- static getInstance(): any;
3880
- cacheReference(reference: any): any;
3881
- resolveReference(id: any): any;
3882
- deleteReference(referenceGuid: any): number;
3883
- }
3884
- }
3885
- declare module "lib/core/handler/DestructReferenceHandler" {
3886
- const _exports: DestructReferenceHandler;
3887
- export = _exports;
3888
- class DestructReferenceHandler extends AbstractHandler {
3889
- process(command: any): any;
3890
- }
3891
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3892
- }
3893
- declare module "lib/core/namespaceCache/NamespaceCache" {
3894
- export = NamespaceCache;
3895
- class NamespaceCache {
3896
- static _instance: null;
3897
- namespaceCache: any[];
3898
- cacheNamespace(namespaceRegex: any): void;
3899
- isNamespaceCacheEmpty(): boolean;
3900
- isTypeAllowed(typeToCheck: any): boolean;
3901
- getCachedNamespaces(): any[];
3902
- clearCache(): number;
3903
- }
3904
- }
3905
- declare module "lib/core/handler/EnableNamespaceHandler" {
3906
- const _exports: EnableNamespaceHandler;
3907
- export = _exports;
3908
- class EnableNamespaceHandler extends AbstractHandler {
3909
- requiredParametersCount: number;
3910
- process(command: any): number;
3911
- }
3912
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3913
- }
3914
- declare module "lib/core/typeCache/TypeCache" {
3915
- export = TypeCache;
3916
- class TypeCache {
3917
- static _instance: null;
3918
- typeCache: any[];
3919
- cacheType(typRegex: any): void;
3920
- isTypeCacheEmpty(): boolean;
3921
- isTypeAllowed(typeToCheck: any): boolean;
3922
- getCachedTypes(): any[];
3923
- clearCache(): number;
3924
- }
3925
- }
3926
- declare module "lib/core/handler/EnableTypeHandler" {
3927
- const _exports: EnableTypeHandler;
3928
- export = _exports;
3929
- class EnableTypeHandler extends AbstractHandler {
3930
- requiredParametersCount: number;
3931
- process(command: any): number;
3932
- }
3933
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3934
- }
3935
- declare module "lib/core/handler/GetGlobalStaticFieldHandler" {
3936
- const _exports: GetGlobalStaticFieldHandler;
3937
- export = _exports;
3938
- class GetGlobalStaticFieldHandler extends AbstractHandler {
3939
- requiredParametersCount: number;
3940
- process(command: any): any;
3941
- }
3942
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3943
- }
3944
- declare module "lib/core/handler/GetInstanceFieldHandler" {
3945
- const _exports: GetInstanceFieldHandler;
3946
- export = _exports;
3947
- class GetInstanceFieldHandler extends AbstractHandler {
3948
- requiredParametersCount: number;
3949
- process(command: any): any;
3950
- }
3951
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3952
- }
3953
- declare module "lib/core/handler/GetInstanceMethodAsDelegateHandler" {
3954
- const _exports: GetInstanceMethodAsDelegateHandler;
3955
- export = _exports;
3956
- /**
3957
- * Handles retrieving an instance method as a delegate.
3958
- */
3959
- class GetInstanceMethodAsDelegateHandler extends AbstractHandler {
3960
- /** @type {Function|null} */
3961
- method: Function | null;
3962
- /** @type {number} */
3963
- requiredParametersCount: number;
3964
- /** @type {Array<*>} */
3965
- args: Array<any>;
3966
- /** @type {Object|null} */
3967
- instance: Object | null;
3968
- /**
3969
- * Processes a command to retrieve an instance method as a delegate.
3970
- * @param {Object} command - The command containing payload data.
3971
- * @param {Array<*>} command.payload - The payload containing instance, method name, and arguments.
3972
- * @returns {Function} The delegate for the instance method.
3973
- * @throws {Error} If the parameters mismatch or the method cannot be found.
3974
- */
3975
- process(command: {
3976
- payload: Array<any>;
3977
- }): Function;
3978
- /**
3979
- * Retrieves the method from the type.
3980
- * @param {Object} type - The class or constructor to search for the method.
3981
- * @param {string} methodName - The name of the method.
3982
- * @returns {Function|null} The found method or null if not found.
3983
- */
3984
- getMethod(type: Object, methodName: string): Function | null;
3985
- /**
3986
- * Creates an error message when the method is not found.
3987
- * @param {Object} type - The class or constructor.
3988
- * @param {string} methodName - The method name.
3989
- * @returns {Error} The error with detailed message.
3990
- */
3991
- createMethodNotFoundError(type: Object, methodName: string): Error;
3992
- }
3993
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3994
- }
3995
- declare module "lib/core/handler/GetStaticFieldHandler" {
3996
- const _exports: GetStaticFieldHandler;
3997
- export = _exports;
3998
- class GetStaticFieldHandler extends AbstractHandler {
3999
- requiredParametersCount: number;
4000
- process(command: any): any;
4001
- }
4002
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4003
- }
4004
- declare module "lib/core/handler/GetStaticMethodAsDelegateHandler" {
4005
- const _exports: GetStaticMethodAsDelegateHandler;
4006
- export = _exports;
4007
- /**
4008
- * Handles retrieving a static method as a delegate.
4009
- */
4010
- class GetStaticMethodAsDelegateHandler extends AbstractHandler {
4011
- /** @type {Array<*>} */
4012
- args: Array<any>;
4013
- /** @type {Function|null} */
4014
- method: Function | null;
4015
- /** @type {number} */
4016
- requiredParametersCount: number;
4017
- /**
4018
- * Processes a command to retrieve a static method as a delegate.
4019
- * @param {Command} command - The command containing payload data.
4020
- * @param {Array<*>} command.payload - The payload containing type, method name, and arguments.
4021
- * @returns {Function} The delegate for the static method.
4022
- * @throws {Error} If the parameters mismatch or the method cannot be found.
4023
- */
4024
- process(command: Command): Function;
4025
- /**
4026
- * Retrieves the method from the type.
4027
- * @param {Object} type - The class or constructor to search for the method.
4028
- * @param {string} methodName - The name of the method.
4029
- * @param {Array<Function>} argsType - The argument types.
4030
- * @param {Object} modifier - Parameter modifier (not used in JS implementation).
4031
- * @returns {Function|null} The found method or null if not found.
4032
- */
4033
- getMethod(type: Object, methodName: string): Function | null;
4034
- /**
4035
- * Creates an error message when the method is not found.
4036
- * @param {Object} type - The class or constructor.
4037
- * @param {string} methodName - The method name.
4038
- * @returns {Error} The error with detailed message.
4039
- */
4040
- createMethodNotFoundError(type: Object, methodName: string): Error;
4041
- }
4042
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4043
- import { Command } from "@javonet/core";
4044
- }
4045
- declare module "lib/core/handler/LoadLibraryHandler" {
4046
- const _exports: LoadLibraryHandler;
4047
- export = _exports;
4048
- class LoadLibraryHandler extends AbstractHandler {
4049
- static loadedLibraries: any[];
4050
- requiredParametersCount: number;
4051
- process(command: any): number;
4052
- getLoadedLibraries(): any[];
4053
- }
4054
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4055
- }
4056
- declare module "lib/core/handler/GetTypeHandler" {
4057
- const _exports: GetTypeHandler;
4058
- export = _exports;
4059
- class GetTypeHandler extends AbstractHandler {
4060
- requiredParametersCount: number;
4061
- namespaceCache: NamespaceCache;
4062
- typeCache: TypeCache;
4063
- process(command: any): any;
4064
- getAvailableTypes(): any[];
4065
- }
4066
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4067
- import NamespaceCache = require("lib/core/namespaceCache/NamespaceCache");
4068
- import TypeCache = require("lib/core/typeCache/TypeCache");
4069
- }
4070
- declare module "lib/core/handler/ValueHandler" {
4071
- const _exports: ValueHandler;
4072
- export = _exports;
4073
- class ValueHandler extends AbstractHandler {
4074
- process(command: any): any;
4075
- }
4076
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4077
- }
4078
- declare module "lib/core/handler/InvokeStaticMethodHandler" {
4079
- const _exports: InvokeStaticMethodHandler;
4080
- export = _exports;
4081
- class InvokeStaticMethodHandler extends AbstractHandler {
4082
- requiredParametersCount: number;
4083
- process(command: any): any;
4084
- }
4085
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4086
- }
4087
- declare module "lib/core/handler/SetStaticFieldHandler" {
4088
- const _exports: SetStaticFieldHandler;
4089
- export = _exports;
4090
- class SetStaticFieldHandler extends AbstractHandler {
4091
- requiredParametersCount: number;
4092
- process(command: any): number;
4093
- }
4094
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4095
- }
4096
- declare module "lib/core/handler/ResolveReferenceHandler" {
4097
- const _exports: ResolveReferenceHandler;
4098
- export = _exports;
4099
- class ResolveReferenceHandler extends AbstractHandler {
4100
- process(command: any): any;
4101
- }
4102
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4103
- }
4104
- declare module "lib/core/handler/SetInstanceFieldHandler" {
4105
- const _exports: SetInstanceFieldHandler;
4106
- export = _exports;
4107
- class SetInstanceFieldHandler extends AbstractHandler {
4108
- requiredParametersCount: number;
4109
- process(command: any): number;
4110
- }
4111
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4112
- }
4113
- declare module "lib/core/handler/InvokeInstanceMethodHandler" {
4114
- const _exports: InvokeInstanceMethodHandler;
4115
- export = _exports;
4116
- class InvokeInstanceMethodHandler extends AbstractHandler {
4117
- requiredParametersCount: number;
4118
- process(command: any): any;
4119
- }
4120
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4121
- }
4122
- declare module "lib/core/handler/PassDelegateHandler" {
4123
- const _exports: PassDelegateHandler;
4124
- export = _exports;
4125
- /**
4126
- * PassDelegateHandler class responsible for processing a command to create a delegate.
4127
- */
4128
- class PassDelegateHandler extends AbstractHandler {
4129
- /**
4130
- * Minimum required parameters count for the command.
4131
- * @type {number}
4132
- */
4133
- requiredParametersCount: number;
4134
- interpreter: Interpreter;
4135
- /**
4136
- * Processes the given command to create and compile a delegate.
4137
- * @param {Command} command - The command to process.
4138
- * @returns {Function} The compiled delegate function.
4139
- */
4140
- process(command: Command): Function;
4141
- /**
4142
- * Validates the command to ensure it has enough parameters.
4143
- * @param {Command} command - The command to validate.
4144
- */
4145
- validateCommand(command: Command): void;
4146
- /**
4147
- * Retrieves the arguments from the command payload.
4148
- * @param {Command} command - The command containing the payload.
4149
- * @returns {Array} The extracted arguments.
4150
- */
4151
- getArguments(command: Command): any[];
4152
- /**
4153
- * Extracts argument types from the arguments array.
4154
- * @param {Array} args - The arguments array.
4155
- * @returns {Array} The argument types.
4156
- */
4157
- getArgumentTypes(args: any[]): any[];
4158
- /**
4159
- * Retrieves the return type from the arguments array.
4160
- * @param {Array} args - The arguments array.
4161
- * @returns {Function} The return type.
4162
- */
4163
- getReturnType(args: any[]): Function;
4164
- /**
4165
- * Creates parameter expressions from argument types.
4166
- * @param {Array} argsTypes - The argument types.
4167
- * @returns {Array} The parameter expressions.
4168
- */
4169
- createParameters(argsTypes: any[]): any[];
4170
- /**
4171
- * Creates an array of arguments for the delegate.
4172
- * @param {string} delegateGuid - The delegate identifier.
4173
- * @param {Array} parameters - The parameter expressions.
4174
- * @returns {Array} The arguments array.
4175
- */
4176
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
4177
- /**
4178
- * Creates a command expression.
4179
- * @param {string} callingRuntimeName - The runtime name.
4180
- * @param {Array} payload - The arguments array.
4181
- * @returns {Object} The command object.
4182
- */
4183
- createCommand(callingRuntimeName: string, payload: any[]): Object;
4184
- /**
4185
- * Creates a method call to execute the command.
4186
- * @param {Command} command - The command object.
4187
- * @returns {Object} The response object.
4188
- */
4189
- createExecuteCall(command: Command): Object;
4190
- /**
4191
- * Retrieves the response payload from the execution call.
4192
- * @param {Object} executeCall - The execution call.
4193
- * @returns {Array} The response payload.
4194
- */
4195
- getResponse(executeCall: Object): any[];
4196
- /**
4197
- * Converts the first element of the response to the return type.
4198
- * @param {Array} response - The response payload.
4199
- * @param {Function} returnType - The return type.
4200
- * @returns {*} The converted first element.
4201
- */
4202
- convertFirstElement(response: any[], returnType: Function): any;
4203
- /**
4204
- * Creates a block of expressions for the delegate.
4205
- * @param {Function} returnType - The return type.
4206
- * @param {*} convertedFirstElement - The converted first element.
4207
- * @returns {Object} The block expression.
4208
- */
4209
- createBlock(returnType: Function, convertedFirstElement: any): Object;
4210
- /**
4211
- * Creates a delegate type.
4212
- * @param {Array} parameters - The parameter expressions.
4213
- * @param {Function} returnType - The return type.
4214
- * @returns {Function} The delegate type.
4215
- */
4216
- createDelegateType(parameters: any[], returnType: Function): Function;
4217
- }
4218
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4219
- import { Interpreter } from "@javonet/core";
4220
- import { Command } from "@javonet/core";
4221
- }
4222
- declare module "lib/core/handler/InvokeDelegateHandler" {
4223
- const _exports: InvokeDelegateHandler;
4224
- export = _exports;
4225
- /**
4226
- * Handles invoking a delegate by GUID.
4227
- */
4228
- class InvokeDelegateHandler extends AbstractHandler {
4229
- /** @type {number} */
4230
- requiredParametersCount: number;
4231
- /**
4232
- * Processes a command to invoke a delegate.
4233
- * @param {Command} command - The command containing payload data.
4234
- * @returns {*} The result of the delegate invocation.
4235
- * @throws {Error} If the parameters mismatch or the delegate cannot be found.
4236
- */
4237
- process(command: Command): any;
4238
- }
4239
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4240
- }
4241
- declare module "lib/core/handler/InvokeGlobalFunctionHandler" {
4242
- const _exports: InvokeGlobalFunctionHandler;
4243
- export = _exports;
4244
- class InvokeGlobalFunctionHandler extends AbstractHandler {
4245
- requiredParametersCount: number;
4246
- process(command: any): any;
4247
- }
4248
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4249
- }
4250
- declare module "lib/core/handler/Handler" {
4251
- export class Handler {
4252
- handleCommand(command: any): Command;
4253
- parseCommand(response: any, runtimeName: any): Command;
4254
- }
4255
- export const handlers: {
4256
- 0: {
4257
- process(command: any): any;
4258
- handlers: any[];
4259
- handleCommand(command: any): void;
4260
- iterate(cmd: any): void;
4261
- process_stack_trace(error: any, class_name: any): any;
4262
- };
4263
- 1: {
4264
- requiredParametersCount: number;
4265
- process(command: any): number;
4266
- getLoadedLibraries(): any[];
4267
- handlers: any[];
4268
- handleCommand(command: any): void;
4269
- iterate(cmd: any): void;
4270
- process_stack_trace(error: any, class_name: any): any;
4271
- };
4272
- 2: {
4273
- requiredParametersCount: number;
4274
- process(command: any): any;
4275
- handlers: any[];
4276
- handleCommand(command: any): void;
4277
- iterate(cmd: any): void;
4278
- process_stack_trace(error: any, class_name: any): any;
4279
- };
4280
- 6: {
4281
- requiredParametersCount: number;
4282
- namespaceCache: import("lib/core/namespaceCache/NamespaceCache");
4283
- typeCache: import("lib/core/typeCache/TypeCache");
4284
- process(command: any): any;
4285
- getAvailableTypes(): any[];
4286
- handlers: any[];
4287
- handleCommand(command: any): void;
4288
- iterate(cmd: any): void;
4289
- process_stack_trace(error: any, class_name: any): any;
4290
- };
4291
- 3: {
4292
- requiredParametersCount: number;
4293
- process(command: any): any;
4294
- handlers: any[];
4295
- handleCommand(command: any): void;
4296
- iterate(cmd: any): void;
4297
- process_stack_trace(error: any, class_name: any): any;
4298
- };
4299
- 4: {
4300
- requiredParametersCount: number;
4301
- process(command: any): number;
4302
- handlers: any[];
4303
- handleCommand(command: any): void;
4304
- iterate(cmd: any): void;
4305
- process_stack_trace(error: any, class_name: any): any;
4306
- };
4307
- 5: {
4308
- requiredParametersCount: number;
4309
- process(command: any): any;
4310
- handlers: any[];
4311
- handleCommand(command: any): void;
4312
- iterate(cmd: any): void;
4313
- process_stack_trace(error: any, class_name: any): any;
4314
- };
4315
- 7: {
4316
- process(command: any): any;
4317
- handlers: any[];
4318
- handleCommand(command: any): void;
4319
- iterate(cmd: any): void;
4320
- process_stack_trace(error: any, class_name: any): any;
4321
- };
4322
- 12: {
4323
- process(command: any): void;
4324
- handlers: any[];
4325
- handleCommand(command: any): void;
4326
- iterate(cmd: any): void;
4327
- process_stack_trace(error: any, class_name: any): any;
4328
- };
4329
- 13: {
4330
- requiredParametersCount: number;
4331
- process(command: any): any;
4332
- handlers: any[];
4333
- handleCommand(command: any): void;
4334
- iterate(cmd: any): void;
4335
- process_stack_trace(error: any, class_name: any): any;
4336
- };
4337
- 25: {
4338
- requiredParametersCount: number;
4339
- process(command: any): number;
4340
- handlers: any[];
4341
- handleCommand(command: any): void;
4342
- iterate(cmd: any): void;
4343
- process_stack_trace(error: any, class_name: any): any;
4344
- };
4345
- 9: {
4346
- requiredParametersCount: number;
4347
- process(command: any): any;
4348
- handlers: any[];
4349
- handleCommand(command: any): void;
4350
- iterate(cmd: any): void;
4351
- process_stack_trace(error: any, class_name: any): any;
4352
- };
4353
- 17: {
4354
- process(command: any): any;
4355
- handlers: any[];
4356
- handleCommand(command: any): void;
4357
- iterate(cmd: any): void;
4358
- process_stack_trace(error: any, class_name: any): any;
4359
- };
4360
- 19: {
4361
- requiredParametersCount: number;
4362
- process(command: any): any;
4363
- handlers: any[];
4364
- handleCommand(command: any): void;
4365
- iterate(cmd: any): void;
4366
- process_stack_trace(error: any, class_name: any): any;
4367
- };
4368
- 20: {
4369
- requiredParametersCount: number;
4370
- process(command: any): number;
4371
- handlers: any[];
4372
- handleCommand(command: any): void;
4373
- iterate(cmd: any): void;
4374
- process_stack_trace(error: any, class_name: any): any;
4375
- };
4376
- 21: {
4377
- requiredParametersCount: number;
4378
- process(command: any): number;
4379
- handlers: any[];
4380
- handleCommand(command: any): void;
4381
- iterate(cmd: any): void;
4382
- process_stack_trace(error: any, class_name: any): any;
4383
- };
4384
- 22: {
4385
- requiredParametersCount: number;
4386
- process(command: any): number;
4387
- handlers: any[];
4388
- handleCommand(command: any): void;
4389
- iterate(cmd: any): void;
4390
- process_stack_trace(error: any, class_name: any): any;
4391
- };
4392
- 23: {
4393
- process(command: any): any;
4394
- handlers: any[];
4395
- handleCommand(command: any): void;
4396
- iterate(cmd: any): void;
4397
- process_stack_trace(error: any, class_name: any): any;
4398
- };
4399
- 34: {
4400
- requiredParametersCount: number;
4401
- process(command: any): number;
4402
- handlers: any[];
4403
- handleCommand(command: any): void;
4404
- iterate(cmd: any): void;
4405
- process_stack_trace(error: any, class_name: any): any;
4406
- };
4407
- 35: {
4408
- requiredParametersCount: number;
4409
- process(command: any): number;
4410
- handlers: any[];
4411
- handleCommand(command: any): void;
4412
- iterate(cmd: any): void;
4413
- process_stack_trace(error: any, class_name: any): any;
4414
- };
4415
- 37: {
4416
- args: Array<any>;
4417
- method: Function | null;
4418
- requiredParametersCount: number;
4419
- process(command: Command): Function;
4420
- getMethod(type: Object, methodName: string): Function | null;
4421
- createMethodNotFoundError(type: Object, methodName: string): Error;
4422
- handlers: any[];
4423
- handleCommand(command: any): void;
4424
- iterate(cmd: any): void;
4425
- process_stack_trace(error: any, class_name: any): any;
4426
- };
4427
- 38: {
4428
- method: Function | null;
4429
- requiredParametersCount: number;
4430
- args: Array<any>;
4431
- instance: Object | null;
4432
- process(command: {
4433
- payload: Array<any>;
4434
- }): Function;
4435
- getMethod(type: Object, methodName: string): Function | null;
4436
- createMethodNotFoundError(type: Object, methodName: string): Error;
4437
- handlers: any[];
4438
- handleCommand(command: any): void;
4439
- iterate(cmd: any): void;
4440
- process_stack_trace(error: any, class_name: any): any;
4441
- };
4442
- 39: {
4443
- requiredParametersCount: number;
4444
- interpreter: import("@javonet/core").Interpreter;
4445
- process(command: Command): Function;
4446
- validateCommand(command: Command): void;
4447
- getArguments(command: Command): any[];
4448
- getArgumentTypes(args: any[]): any[];
4449
- getReturnType(args: any[]): Function;
4450
- createParameters(argsTypes: any[]): any[];
4451
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
4452
- createCommand(callingRuntimeName: string, payload: any[]): Object;
4453
- createExecuteCall(command: Command): Object;
4454
- getResponse(executeCall: Object): any[];
4455
- convertFirstElement(response: any[], returnType: Function): any;
4456
- createBlock(returnType: Function, convertedFirstElement: any): Object;
4457
- createDelegateType(parameters: any[], returnType: Function): Function;
4458
- handlers: any[];
4459
- handleCommand(command: any): void;
4460
- iterate(cmd: any): void;
4461
- process_stack_trace(error: any, class_name: any): any;
4462
- };
4463
- 40: {
4464
- requiredParametersCount: number;
4465
- process(command: Command): any;
4466
- handlers: any[];
4467
- handleCommand(command: any): void;
4468
- iterate(cmd: any): void;
4469
- process_stack_trace(error: any, class_name: any): any;
4470
- };
4471
- 16: {
4472
- requiredParametersCount: number;
4473
- process(command: any): any;
4474
- handlers: any[];
4475
- handleCommand(command: any): void;
4476
- iterate(cmd: any): void;
4477
- process_stack_trace(error: any, class_name: any): any;
4478
- };
4479
- };
4480
- import { Command } from "@javonet/core";
4481
- }
4482
- declare module "lib/core/handler/SetGlobalStaticFieldHandler" {
4483
- const _exports: SetGlobalStaticFieldHandler;
4484
- export = _exports;
4485
- class SetGlobalStaticFieldHandler extends AbstractHandler {
4486
- requiredParametersCount: number;
4487
- }
4488
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4489
- }
4490
- declare module "lib/utils/RuntimeLogger" {
4491
- export = RuntimeLogger;
4492
- class RuntimeLogger {
4493
- static notLoggedYet: boolean;
4494
- static getRuntimeInfo(): string;
4495
- static printRuntimeInfo(): void;
4496
- }
4497
- }
4498
- declare module "lib/core/receiver/Receiver" {
4499
- export = Receiver;
4500
- class Receiver {
4501
- static connectionData: InMemoryConnectionData;
4502
- /**
4503
- * @param {number[]} messageByteArray
4504
- */
4505
- static sendCommand(messageByteArray: number[]): Uint8Array<any>;
4506
- static heartBeat(messageByteArray: any): Int8Array<ArrayBuffer>;
4507
- Receiver(): void;
4508
- }
4509
- import { InMemoryConnectionData } from "@javonet/core";
4510
- }
4511
- declare module "lib/core/receiver/ReceiverNative" {
4512
- export {};
4513
- }
4514
- declare module "lib/core/transmitter/TransmitterWrapper" {
4515
- export = TransmitterWrapper;
4516
- class TransmitterWrapper {
4517
- static isNativeLibraryLoaded(): boolean;
4518
- static loadNativeLibrary(): void;
4519
- static activate(licenseKey: any): any;
4520
- static sendCommand(messageArray: any): any;
4521
- static setConfigSource(configSource: any): any;
4522
- static setJavonetWorkingDirectory(path: any): void;
4523
- }
4524
- }
4525
- declare module "lib/core/transmitter/Transmitter" {
4526
- export = Transmitter;
4527
- class Transmitter {
4528
- static sendCommand(messageArray: any): any;
4529
- static activate: (licenseKey: any) => any;
4530
- static setConfigSource(configSource: any): any;
4531
- static setJavonetWorkingDirectory(workingDirectory: any): void;
4532
- }
4533
- }
4534
- declare module "lib/core/webSocketClient/WebSocketClient" {
4535
- export = WebSocketClient;
4536
- /**
4537
- * WebSocketClient class that handles WebSocket connection, message sending, and automatic disconnection.
4538
- */
4539
- class WebSocketClient {
4540
- /**
4541
- * @param {string} url
4542
- * @param {object} options
4543
- */
4544
- constructor(url: string, options: object);
4545
- /**
4546
- * @type {string}
4547
- */
4548
- url: string;
4549
- /**
4550
- * @type {WebSocket | null}
4551
- */
4552
- instance: WebSocket | null;
4553
- /**
4554
- * @type {boolean} isConnected indicates whether the WebSocket is connected.
4555
- */
4556
- isConnected: boolean;
4557
- /**
4558
- * @type {boolean}
4559
- */
4560
- isDisconnectedAfterMessage: boolean;
4561
- /**
4562
- * Connects to the WebSocket server.
4563
- * @async
4564
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
4565
- */
4566
- connect(): Promise<WebSocket>;
4567
- /**
4568
- * Sends messageArray through websocket connection
4569
- * @async
4570
- * @param {Buffer|ArrayBuffer|Buffer[]} messageArray
4571
- * @returns {Promise<Buffer|ArrayBuffer|Buffer[]>}
4572
- */
4573
- send(messageArray: Buffer | ArrayBuffer | Buffer[]): Promise<Buffer | ArrayBuffer | Buffer[]>;
4574
- /**
4575
- * Disconnects the WebSocket by terminating the connection.
4576
- */
4577
- disconnect(): void;
4578
- /**
4579
- * Connects to the WebSocket server.
4580
- * @private
4581
- * @async
4582
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
4583
- */
4584
- private _connect;
4585
- }
4586
- }
4587
- declare module "lib/core/transmitter/TransmitterWebsocket" {
4588
- export = TransmitterWebsocket;
4589
- /** @typedef {import('../../../../core/lib/declarations').WsConnectionData} WsConnectionData */
4590
- class TransmitterWebsocket {
4591
- /**
4592
- * @returns {void}
4593
- */
4594
- static initialize(): void;
4595
- /**
4596
- * @returns {void}
4597
- */
4598
- static setConfigSource(): void;
4599
- /**
4600
- * @returns {void}
4601
- */
4602
- static activate(): void;
4603
- /**
4604
- * @async
4605
- * @param {number[]} messageByteArray
4606
- * @param {WsConnectionData} connectionData
4607
- * @returns {Promise<number[]>} responseByteArray
4608
- */
4609
- static sendCommand(messageByteArray: number[], connectionData: WsConnectionData): Promise<number[]>;
4610
- }
4611
- namespace TransmitterWebsocket {
4612
- export { WsConnectionData };
4613
- }
4614
- type WsConnectionData = any;
4615
- }
4616
- declare module "lib/sdk/tools/JsonFileResolver" {
4617
- export = JsonFileResolver;
4618
- class JsonFileResolver {
4619
- constructor(path: any);
4620
- path: any;
4621
- jsonObject: any;
4622
- getLicenseKey(): any;
4623
- getRuntimes(): any;
4624
- getRuntime(runtimeName: any, configName: any): any;
4625
- getChannel(runtimeName: any, configName: any): any;
4626
- getChannelType(runtimeName: any, configName: any): any;
4627
- getChannelHost(runtimeName: any, configName: any): any;
4628
- getChannelPort(runtimeName: any, configName: any): any;
4629
- getModules(runtimeName: any, configName: any): any;
4630
- }
4631
- }
4632
- declare module "lib/utils/connectionData/TcpConnectionData" {
4633
- export = TcpConnectionData;
4634
- /**
4635
- * @extends IConnectionData
4636
- */
4637
- class TcpConnectionData extends IConnectionData {
4638
- constructor(hostname: any, port: any);
4639
- _port: any;
4640
- _hostname: any;
4641
- _connectionType: 1;
4642
- ipAddress: string | null;
4643
- get connectionType(): 1;
4644
- get hostname(): any;
4645
- /**
4646
- * @param {TcpConnectionData} other
4647
- * @returns {boolean}
4648
- */
4649
- equals(other: TcpConnectionData): boolean;
4650
- /**
4651
- * @param {string} hostname
4652
- * @returns {string|null}
4653
- */
4654
- resolveIpAddress(hostname: string): string | null;
4655
- serializeConnectionData(): 1[];
4656
- #private;
4657
- }
4658
- import { IConnectionData } from "@javonet/core";
4659
- }
4660
- declare module "lib/sdk/ConfigRuntimeFactory" {
4661
- export = ConfigRuntimeFactory;
4662
- /**
4663
- * The ConfigRuntimeFactory class provides methods for creating runtime contexts.
4664
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
4665
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4666
- */
4667
- class ConfigRuntimeFactory {
4668
- constructor(path: any);
4669
- path: any;
4670
- /**
4671
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
4672
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4673
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
4674
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4675
- */
4676
- clr(configName?: string): RuntimeContext;
4677
- /**
4678
- * Creates RuntimeContext instance to interact with the JVM runtime.
4679
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4680
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
4681
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4682
- */
4683
- jvm(configName?: string): RuntimeContext;
4684
- /**
4685
- * Creates RuntimeContext instance to interact with the .NET runtime.
4686
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4687
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
4688
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4689
- */
4690
- netcore(configName?: string): RuntimeContext;
4691
- /**
4692
- * Creates RuntimeContext instance to interact with the Perl runtime.
4693
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4694
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
4695
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4696
- */
4697
- perl(configName?: string): RuntimeContext;
4698
- /**
4699
- * Creates RuntimeContext instance to interact with the Python runtime.
4700
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4701
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
4702
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4703
- */
4704
- python(configName?: string): RuntimeContext;
4705
- /**
4706
- * Creates RuntimeContext instance to interact with the Ruby runtime.
4707
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4708
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
4709
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4710
- */
4711
- ruby(configName?: string): RuntimeContext;
4712
- /**
4713
- * Creates RuntimeContext instance to interact with Node.js runtime.
4714
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4715
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
4716
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4717
- */
4718
- nodejs(configName?: string): RuntimeContext;
4719
- /**
4720
- * Creates RuntimeContext instance to interact with the Python 2.7 runtime.
4721
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4722
- * @return {RuntimeContext} a RuntimeContext instance for the Python 2.7 runtime
4723
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4724
- */
4725
- python27(configName?: string): RuntimeContext;
4726
- #private;
4727
- }
4728
- import { RuntimeContext } from "@javonet/core";
4729
- }
4730
- declare module "lib/sdk/Javonet" {
4731
- /**
4732
- * The Javonet class is a singleton class that serves as the entry point for interacting with Javonet.
4733
- * It provides methods to activate and initialize the Javonet SDK.
4734
- * It supports both in-memory and TCP connections.
4735
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/javonet-static-class)
4736
- */
4737
- export class Javonet {
4738
- /**
4739
- * Initializes Javonet using an in-memory channel on the same machine.
4740
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for an in-memory connection.
4741
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/in-memory-channel)
4742
- */
4743
- static inMemory(): RuntimeFactory;
4744
- /**
4745
- * Initializes Javonet with a TCP connection to a remote machine.
4746
- * @param {TcpConnectionData} tcpConnectionData - The tcp connection data of the remote machine.
4747
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a TCP connection.
4748
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/tcp-channel)
4749
- */
4750
- static tcp(tcpConnectionData: TcpConnectionData): RuntimeFactory;
4751
- /**
4752
- * Initializes Javonet with a WebSocket connection to a remote machine.
4753
- * @param {WsConnectionData} wsConnectionData - The WebSocket connection data of the remote machine.
4754
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a WebSocket connection.
4755
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/websocket-channel)
4756
- */
4757
- static webSocket(wsConnectionData: WsConnectionData): RuntimeFactory;
4758
- /**
4759
- * Initializes Javonet with a custom configuration file taken from external source.
4760
- * Currentyl supported: Configuration file in JSON format
4761
- * @param {string} configPath - Path to a configuration file.
4762
- * @returns {ConfigRuntimeFactory} A ConfigRuntimeFactory instance with configuration data.
4763
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/configure-channel)
4764
- */
4765
- static withConfig(configPath: string): ConfigRuntimeFactory;
4766
- /**
4767
- * Activates Javonet with the provided license key.
4768
- * @param {string} licenseKey - The license key to activate Javonet.
4769
- * @returns {number} The activation status code.
4770
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/activating-javonet)
4771
- */
4772
- static activate(licenseKey: string): number;
4773
- static getRuntimeInfo(): string;
4774
- /**
4775
- * Sets the configuration source for the Javonet SDK.
4776
- *
4777
- * @param {string} configSource - The configuration source.
4778
- */
4779
- static setConfigSource(configSource: string): void;
4780
- /**
4781
- * Sets the working directory for the Javonet SDK.
4782
- *
4783
- * @param {string} path - The working directory.
4784
- */
4785
- static setJavonetWorkingDirectory(path: string): void;
4786
- }
4787
- import TcpConnectionData = require("lib/utils/connectionData/TcpConnectionData");
4788
- import { WsConnectionData } from "@javonet/core";
4789
- import { RuntimeFactory } from "@javonet/core";
4790
- import ConfigRuntimeFactory = require("lib/sdk/ConfigRuntimeFactory");
4791
- export { TcpConnectionData, WsConnectionData };
4792
- }
4793
- declare module "lib/sdk/RuntimeFactory" {
4794
- export = RuntimeFactory;
4795
- /**
4796
- * The RuntimeFactory class provides methods for creating runtime contexts.
4797
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
4798
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4799
- */
4800
- class RuntimeFactory {
4801
- constructor(connectionData: any);
4802
- connectionData: any;
4803
- /**
4804
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
4805
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
4806
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4807
- */
4808
- clr(): RuntimeContext;
4809
- /**
4810
- * Creates RuntimeContext instance to interact with the JVM runtime.
4811
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
4812
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4813
- */
4814
- jvm(): RuntimeContext;
4815
- /**
4816
- * Creates RuntimeContext instance to interact with the .NET runtime.
4817
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
4818
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4819
- */
4820
- netcore(): RuntimeContext;
4821
- /**
4822
- * Creates RuntimeContext instance to interact with the Perl runtime.
4823
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
4824
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4825
- */
4826
- perl(): RuntimeContext;
4827
- /**
4828
- * Creates RuntimeContext instance to interact with the Python runtime.
4829
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
4830
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4831
- */
4832
- python(): RuntimeContext;
4833
- /**
4834
- * Creates RuntimeContext instance to interact with the Ruby runtime.
4835
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
4836
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4837
- */
4838
- ruby(): RuntimeContext;
4839
- /**
4840
- * Creates RuntimeContext instance to interact with Node.js runtime.
4841
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
4842
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4843
- */
4844
- nodejs(): RuntimeContext;
4845
- }
4846
- }
4847
- declare module "lib/sdk/tools/SdkExceptionHelper" {
4848
- export = sendExceptionToAppInsights;
4849
- /**
4850
- *
4851
- * @param {any} e
4852
- * @param {string} licenseKey
4853
- */
4854
- function sendExceptionToAppInsights(e: any, licenseKey: string): Promise<any>;
4855
- }
4856
- declare module "scripts/copy-files" {
4857
- export {};
4858
- }