javonet-nodejs-sdk 2.5.14 → 2.5.16

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 (2014) hide show
  1. package/dist/core/delegatesCache/DelegatesCache.cjs +59 -0
  2. package/dist/core/handler/AbstractHandler.cjs +62 -0
  3. package/dist/core/handler/ArrayGetItemHandler.cjs +61 -0
  4. package/dist/core/handler/ArrayGetRankHandler.cjs +52 -0
  5. package/dist/core/handler/ArrayGetSizeHandler.cjs +52 -0
  6. package/dist/core/handler/ArrayHandler.cjs +41 -0
  7. package/dist/core/handler/ArraySetItemHandler.cjs +62 -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 +62 -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 +58 -0
  14. package/dist/core/handler/GetGlobalStaticFieldHandler.cjs +62 -0
  15. package/dist/core/handler/GetInstanceFieldHandler.cjs +61 -0
  16. package/dist/core/handler/GetInstanceMethodAsDelegateHandler.cjs +83 -0
  17. package/dist/core/handler/GetStaticFieldHandler.cjs +61 -0
  18. package/dist/core/handler/GetStaticMethodAsDelegateHandler.cjs +85 -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 +62 -0
  23. package/dist/core/handler/InvokeInstanceMethodHandler.cjs +64 -0
  24. package/dist/core/handler/InvokeStaticMethodHandler.cjs +64 -0
  25. package/dist/core/handler/LoadLibraryHandler.cjs +71 -0
  26. package/dist/core/handler/PassDelegateHandler.cjs +164 -0
  27. package/dist/core/handler/ResolveReferenceHandler.cjs +41 -0
  28. package/dist/core/handler/SetGlobalStaticFieldHandler.cjs +63 -0
  29. package/dist/core/handler/SetInstanceFieldHandler.cjs +61 -0
  30. package/dist/core/handler/SetStaticFieldHandler.cjs +59 -0
  31. package/dist/core/handler/ValueHandler.cjs +37 -0
  32. package/dist/core/interpreter/Interpreter.cjs +163 -0
  33. package/dist/core/namespaceCache/NamespaceCache.cjs +61 -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 +65 -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 +44 -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 +61 -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 +209 -0
  49. package/dist/sdk/InvocationContext.cjs +495 -0
  50. package/dist/sdk/Javonet.cjs +150 -0
  51. package/dist/sdk/RuntimeContext.cjs +304 -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/CustomError.d.ts +3 -0
  117. package/dist/types/utils/ExceptionType.d.ts +10 -0
  118. package/dist/types/utils/Runtime.d.ts +24 -0
  119. package/dist/types/utils/RuntimeLogger.d.ts +5 -0
  120. package/dist/types/utils/RuntimeLoggerBrowser.d.ts +15 -0
  121. package/dist/types/utils/RuntimeName.d.ts +13 -0
  122. package/dist/types/utils/RuntimeNameHandler.d.ts +7 -0
  123. package/dist/types/utils/StringEncodingMode.d.ts +6 -0
  124. package/dist/types/utils/Type.d.ts +14 -0
  125. package/dist/types/utils/connectionData/IConnectionData.d.ts +5 -0
  126. package/dist/types/utils/connectionData/InMemoryConnectionData.d.ts +16 -0
  127. package/dist/types/utils/connectionData/WsConnectionData.d.ts +31 -0
  128. package/dist/types/utils/exception/ExceptionSerializer.d.ts +6 -0
  129. package/dist/types/utils/exception/ExceptionThrower.d.ts +4 -0
  130. package/dist/types/utils/guid/generateGuid.d.ts +1 -0
  131. package/dist/types/utils/nodejs/TypesConverter.d.ts +48 -0
  132. package/dist/types/utils/nodejs/connectionData/TcpConnectionData.d.ts +25 -0
  133. package/dist/types/utils/nodejs/uuid/REGEX.d.ts +1 -0
  134. package/dist/types/utils/nodejs/uuid/rng.d.ts +1 -0
  135. package/dist/types/utils/nodejs/uuid/stringify.d.ts +1 -0
  136. package/dist/types/utils/nodejs/uuid/v4.d.ts +1 -0
  137. package/dist/types/utils/nodejs/uuid/validate.d.ts +1 -0
  138. package/dist/utils/Command.cjs +87 -0
  139. package/dist/utils/CommandType.cjs +74 -0
  140. package/dist/utils/ConnectionType.cjs +35 -0
  141. package/dist/utils/CustomError.cjs +33 -0
  142. package/dist/utils/ExceptionType.cjs +40 -0
  143. package/dist/utils/Runtime.cjs +103 -0
  144. package/dist/utils/RuntimeLogger.cjs +63 -0
  145. package/dist/utils/RuntimeLoggerBrowser.cjs +58 -0
  146. package/dist/utils/RuntimeName.cjs +43 -0
  147. package/dist/utils/RuntimeNameHandler.cjs +62 -0
  148. package/dist/utils/StringEncodingMode.cjs +36 -0
  149. package/dist/utils/Type.cjs +44 -0
  150. package/dist/utils/connectionData/IConnectionData.cjs +38 -0
  151. package/dist/utils/connectionData/InMemoryConnectionData.cjs +52 -0
  152. package/dist/utils/connectionData/WsConnectionData.cjs +61 -0
  153. package/dist/utils/exception/ExceptionSerializer.cjs +82 -0
  154. package/dist/utils/exception/ExceptionThrower.cjs +111 -0
  155. package/dist/utils/guid/generateGuid.cjs +34 -0
  156. package/dist/utils/nodejs/TypesConverter.cjs +102 -0
  157. package/dist/utils/nodejs/connectionData/TcpConnectionData.cjs +111 -0
  158. package/dist/utils/nodejs/uuid/REGEX.cjs +28 -0
  159. package/dist/utils/nodejs/uuid/rng.cjs +47 -0
  160. package/dist/utils/nodejs/uuid/stringify.cjs +39 -0
  161. package/dist/utils/nodejs/uuid/v4.cjs +43 -0
  162. package/dist/utils/nodejs/uuid/validate.cjs +31 -0
  163. package/lib/core/delegatesCache/DelegatesCache.js +37 -0
  164. package/lib/core/handler/AbstractHandler.js +2 -2
  165. package/lib/core/handler/ArrayGetItemHandler.js +2 -2
  166. package/lib/core/handler/ArrayGetRankHandler.js +2 -2
  167. package/lib/core/handler/ArrayGetSizeHandler.js +2 -2
  168. package/lib/core/handler/ArrayHandler.js +2 -2
  169. package/lib/core/handler/ArraySetItemHandler.js +2 -2
  170. package/lib/core/handler/CastingHandler.js +2 -2
  171. package/lib/core/handler/ConvertTypeHandler.js +3 -3
  172. package/lib/core/handler/CreateClassInstanceHandler.js +4 -2
  173. package/lib/core/handler/DestructReferenceHandler.js +3 -3
  174. package/lib/core/handler/EnableNamespaceHandler.js +3 -3
  175. package/lib/core/handler/EnableTypeHandler.js +3 -3
  176. package/lib/core/handler/GetGlobalStaticFieldHandler.js +2 -2
  177. package/lib/core/handler/GetInstanceFieldHandler.js +2 -2
  178. package/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +2 -2
  179. package/lib/core/handler/GetStaticFieldHandler.js +3 -2
  180. package/lib/core/handler/GetStaticMethodAsDelegateHandler.js +2 -3
  181. package/lib/core/handler/GetTypeHandler.js +16 -7
  182. package/lib/core/handler/Handler.js +91 -60
  183. package/lib/core/handler/InvokeDelegateHandler.js +4 -4
  184. package/lib/core/handler/InvokeGlobalFunctionHandler.js +3 -5
  185. package/lib/core/handler/InvokeInstanceMethodHandler.js +2 -2
  186. package/lib/core/handler/InvokeStaticMethodHandler.js +2 -2
  187. package/lib/core/handler/LoadLibraryHandler.js +7 -4
  188. package/lib/core/handler/PassDelegateHandler.js +38 -24
  189. package/lib/core/handler/ResolveReferenceHandler.js +13 -3
  190. package/lib/core/handler/SetGlobalStaticFieldHandler.js +2 -2
  191. package/lib/core/handler/SetInstanceFieldHandler.js +2 -2
  192. package/lib/core/handler/SetStaticFieldHandler.js +2 -2
  193. package/lib/core/handler/ValueHandler.js +2 -2
  194. package/lib/core/interpreter/Interpreter.js +164 -0
  195. package/lib/core/namespaceCache/NamespaceCache.js +1 -1
  196. package/lib/core/protocol/CommandDeserializer.js +180 -0
  197. package/lib/core/protocol/CommandSerializer.js +48 -0
  198. package/lib/core/protocol/TypeDeserializer.js +81 -0
  199. package/lib/core/protocol/TypeSerializer.js +143 -0
  200. package/lib/core/receiver/Receiver.js +17 -8
  201. package/lib/core/receiver/ReceiverNative.js +2 -2
  202. package/lib/core/referenceCache/ReferencesCache.js +27 -4
  203. package/lib/core/transmitter/Transmitter.js +6 -8
  204. package/lib/core/transmitter/TransmitterWebsocket.js +2 -6
  205. package/lib/core/transmitter/TransmitterWebsocketBrowser.js +39 -0
  206. package/lib/core/transmitter/TransmitterWrapper.js +26 -13
  207. package/lib/core/typeCache/TypeCache.js +1 -1
  208. package/lib/core/webSocketClient/WebSocketClient.js +56 -24
  209. package/lib/core/webSocketClient/WebSocketClientBrowser.js +174 -0
  210. package/lib/declarations.d.ts +35 -0
  211. package/lib/sdk/ConfigRuntimeFactory.js +118 -58
  212. package/lib/sdk/InvocationContext.js +487 -0
  213. package/lib/sdk/Javonet.js +64 -30
  214. package/lib/sdk/RuntimeContext.js +289 -0
  215. package/lib/sdk/RuntimeFactory.js +12 -5
  216. package/lib/sdk/tools/browser/ConfigSourceResolver.js +146 -0
  217. package/lib/sdk/tools/browser/SdkExceptionHelper.js +20 -0
  218. package/lib/sdk/tools/nodejs/JsonFileResolver.js +106 -0
  219. package/lib/sdk/tools/nodejs/SdkExceptionHelper.js +89 -0
  220. package/lib/utils/Command.js +67 -0
  221. package/lib/utils/CommandType.js +45 -0
  222. package/lib/utils/ConnectionType.js +6 -0
  223. package/lib/utils/CustomError.js +6 -0
  224. package/lib/utils/ExceptionType.js +13 -0
  225. package/lib/utils/Runtime.js +94 -0
  226. package/lib/utils/RuntimeLogger.js +19 -9
  227. package/lib/utils/RuntimeLoggerBrowser.js +35 -0
  228. package/lib/utils/RuntimeName.js +14 -0
  229. package/lib/utils/RuntimeNameHandler.js +38 -0
  230. package/lib/utils/StringEncodingMode.js +7 -0
  231. package/lib/utils/Type.js +15 -0
  232. package/lib/utils/connectionData/IConnectionData.js +13 -0
  233. package/lib/utils/connectionData/InMemoryConnectionData.js +35 -0
  234. package/lib/utils/connectionData/WsConnectionData.js +48 -0
  235. package/lib/utils/exception/ExceptionSerializer.js +64 -0
  236. package/lib/utils/exception/ExceptionThrower.js +96 -0
  237. package/lib/utils/guid/generateGuid.js +9 -0
  238. package/lib/utils/nodejs/TypesConverter.js +91 -0
  239. package/lib/utils/nodejs/connectionData/TcpConnectionData.js +89 -0
  240. package/lib/utils/nodejs/uuid/REGEX.js +2 -0
  241. package/lib/utils/nodejs/uuid/rng.js +23 -0
  242. package/lib/utils/nodejs/uuid/stringify.js +51 -0
  243. package/lib/utils/nodejs/uuid/v4.js +26 -0
  244. package/lib/utils/nodejs/uuid/validate.js +7 -0
  245. package/package.json +59 -47
  246. package/Binaries/Clr/Javonet.Clr.Utils.dll +0 -0
  247. package/Binaries/Clr/JavonetClrRuntime.dll +0 -0
  248. package/Binaries/Jvm/JavonetJvmRuntime.jar +0 -0
  249. package/Binaries/Native/Linux/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  250. package/Binaries/Native/Linux/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  251. package/Binaries/Native/Linux/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  252. package/Binaries/Native/Linux/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  253. package/Binaries/Native/Linux/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  254. package/Binaries/Native/Linux/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  255. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  256. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  257. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  258. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  259. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  260. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  261. package/Binaries/Native/Linux/ARM64/libJavonetActivationService.so +0 -0
  262. package/Binaries/Native/Linux/ARM64/libJavonetCppRuntimeNative.so +0 -0
  263. package/Binaries/Native/Linux/ARM64/libJavonetGoRuntimeNative.so +0 -0
  264. package/Binaries/Native/Linux/ARM64/libJavonetJvmRuntimeNative.so +0 -0
  265. package/Binaries/Native/Linux/ARM64/libJavonetNetcoreRuntimeNative.so +0 -0
  266. package/Binaries/Native/Linux/ARM64/libJavonetPythonRuntimeNative.so +0 -0
  267. package/Binaries/Native/Linux/ARM64/libJavonetRuby278RuntimeNative.so +0 -0
  268. package/Binaries/Native/Linux/ARM64/libJavonetRubyRuntimeNative.so +0 -0
  269. package/Binaries/Native/Linux/ARM64/libJavonetTcpClient.so +0 -0
  270. package/Binaries/Native/Linux/ARM64/libJavonetTcpTlsClient.so +0 -0
  271. package/Binaries/Native/Linux/ARM64/libUtils.so +0 -0
  272. package/Binaries/Native/Linux/ARM64/libnethost.so +0 -0
  273. package/Binaries/Native/Linux/ARM64/libpython3.12.so.1.0 +0 -0
  274. package/Binaries/Native/Linux/ARM64/version.txt +0 -1
  275. package/Binaries/Native/Linux/X64/NativeUtilsUnitTests.xml +0 -33
  276. package/Binaries/Native/Linux/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  277. package/Binaries/Native/Linux/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  278. package/Binaries/Native/Linux/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  279. package/Binaries/Native/Linux/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  280. package/Binaries/Native/Linux/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  281. package/Binaries/Native/Linux/X64/NetVersionLatest.runtimeconfig.json +0 -10
  282. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  283. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  284. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  285. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  286. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  287. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  288. package/Binaries/Native/Linux/X64/libJavonetActivationService.so +0 -0
  289. package/Binaries/Native/Linux/X64/libJavonetCppRuntimeNative.so +0 -0
  290. package/Binaries/Native/Linux/X64/libJavonetGoRuntimeNative.so +0 -0
  291. package/Binaries/Native/Linux/X64/libJavonetJvmRuntimeNative.so +0 -0
  292. package/Binaries/Native/Linux/X64/libJavonetNetcoreRuntimeNative.so +0 -0
  293. package/Binaries/Native/Linux/X64/libJavonetNodejs1816RuntimeNative.so +0 -0
  294. package/Binaries/Native/Linux/X64/libJavonetNodejsRuntimeNative.so +0 -0
  295. package/Binaries/Native/Linux/X64/libJavonetPerlRuntimeNative.so +0 -0
  296. package/Binaries/Native/Linux/X64/libJavonetPythonRuntimeNative.so +0 -0
  297. package/Binaries/Native/Linux/X64/libJavonetRuby278RuntimeNative.so +0 -0
  298. package/Binaries/Native/Linux/X64/libJavonetRubyRuntimeNative.so +0 -0
  299. package/Binaries/Native/Linux/X64/libJavonetTcpClient.so +0 -0
  300. package/Binaries/Native/Linux/X64/libJavonetTcpTlsClient.so +0 -0
  301. package/Binaries/Native/Linux/X64/libUtils.so +0 -0
  302. package/Binaries/Native/Linux/X64/libnethost.so +0 -0
  303. package/Binaries/Native/Linux/X64/libnode.so.108 +0 -0
  304. package/Binaries/Native/Linux/X64/libperl.so.5.30.0 +0 -0
  305. package/Binaries/Native/Linux/X64/libpython3.11.so.1.0 +0 -0
  306. package/Binaries/Native/Linux/X64/libruby.so.2.7.8 +0 -0
  307. package/Binaries/Native/Linux/X64/openssl3/libJavonetActivationService.so +0 -0
  308. package/Binaries/Native/Linux/X64/openssl3/libJavonetTcpTlsClient.so +0 -0
  309. package/Binaries/Native/Linux/X64/openssl3/libUtils.so +0 -0
  310. package/Binaries/Native/Linux/X64/version.txt +0 -1
  311. package/Binaries/Native/MacOs/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  312. package/Binaries/Native/MacOs/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  313. package/Binaries/Native/MacOs/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  314. package/Binaries/Native/MacOs/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  315. package/Binaries/Native/MacOs/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  316. package/Binaries/Native/MacOs/X64/NetVersionLatest.runtimeconfig.json +0 -10
  317. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  318. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  319. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  320. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  321. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  322. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  323. package/Binaries/Native/MacOs/X64/libJavonetActivationService.dylib +0 -0
  324. package/Binaries/Native/MacOs/X64/libJavonetCppRuntimeNative.dylib +0 -0
  325. package/Binaries/Native/MacOs/X64/libJavonetGoRuntimeNative.dylib +0 -0
  326. package/Binaries/Native/MacOs/X64/libJavonetJvmRuntimeNative.dylib +0 -0
  327. package/Binaries/Native/MacOs/X64/libJavonetNetcoreRuntimeNative.dylib +0 -0
  328. package/Binaries/Native/MacOs/X64/libJavonetNodejs1816RuntimeNative.dylib +0 -0
  329. package/Binaries/Native/MacOs/X64/libJavonetNodejsRuntimeNative.dylib +0 -0
  330. package/Binaries/Native/MacOs/X64/libJavonetPerlRuntimeNative.dylib +0 -0
  331. package/Binaries/Native/MacOs/X64/libJavonetPythonRuntimeNative.dylib +0 -0
  332. package/Binaries/Native/MacOs/X64/libJavonetRuby278RuntimeNative.dylib +0 -0
  333. package/Binaries/Native/MacOs/X64/libJavonetRubyRuntimeNative.dylib +0 -0
  334. package/Binaries/Native/MacOs/X64/libJavonetTcpClient.dylib +0 -0
  335. package/Binaries/Native/MacOs/X64/libJavonetTcpTlsClient.dylib +0 -0
  336. package/Binaries/Native/MacOs/X64/libUtils.dylib +0 -0
  337. package/Binaries/Native/MacOs/X64/libnethost.dylib +0 -0
  338. package/Binaries/Native/MacOs/X64/libnode.108.dylib +0 -0
  339. package/Binaries/Native/MacOs/X64/libpython3.11.dylib +0 -0
  340. package/Binaries/Native/MacOs/X64/libruby.2.7.dylib +0 -0
  341. package/Binaries/Native/MacOs/X64/version.txt +0 -1
  342. package/Binaries/Native/Windows/ARM64/JavonetActivationService.dll +0 -0
  343. package/Binaries/Native/Windows/ARM64/JavonetCppRuntimeNative.dll +0 -0
  344. package/Binaries/Native/Windows/ARM64/JavonetGoRuntimeNative.dll +0 -0
  345. package/Binaries/Native/Windows/ARM64/JavonetJvmRuntimeNative.dll +0 -0
  346. package/Binaries/Native/Windows/ARM64/JavonetNetcoreRuntimeNative.dll +0 -0
  347. package/Binaries/Native/Windows/ARM64/JavonetPythonRuntimeNative.dll +0 -0
  348. package/Binaries/Native/Windows/ARM64/JavonetRuby278RuntimeNative.dll +0 -0
  349. package/Binaries/Native/Windows/ARM64/JavonetRubyRuntimeNative.dll +0 -0
  350. package/Binaries/Native/Windows/ARM64/JavonetTcpClient.dll +0 -0
  351. package/Binaries/Native/Windows/ARM64/JavonetTcpTlsClient.dll +0 -0
  352. package/Binaries/Native/Windows/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  353. package/Binaries/Native/Windows/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  354. package/Binaries/Native/Windows/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  355. package/Binaries/Native/Windows/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  356. package/Binaries/Native/Windows/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  357. package/Binaries/Native/Windows/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  358. package/Binaries/Native/Windows/ARM64/Utils.dll +0 -0
  359. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  360. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  361. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  362. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  363. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  364. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  365. package/Binaries/Native/Windows/ARM64/libcrypto-3-arm64.dll +0 -0
  366. package/Binaries/Native/Windows/ARM64/libssl-3-arm64.dll +0 -0
  367. package/Binaries/Native/Windows/ARM64/libxml2.dll +0 -0
  368. package/Binaries/Native/Windows/ARM64/libxmlsec-openssl.dll +0 -0
  369. package/Binaries/Native/Windows/ARM64/libxmlsec.dll +0 -0
  370. package/Binaries/Native/Windows/ARM64/libxslt.dll +0 -0
  371. package/Binaries/Native/Windows/ARM64/nethost.dll +0 -0
  372. package/Binaries/Native/Windows/ARM64/python312.dll +0 -0
  373. package/Binaries/Native/Windows/ARM64/version.txt +0 -0
  374. package/Binaries/Native/Windows/X64/JavonetActivationService.dll +0 -0
  375. package/Binaries/Native/Windows/X64/JavonetClrRuntimeNative.dll +0 -0
  376. package/Binaries/Native/Windows/X64/JavonetCppRuntimeNative.dll +0 -0
  377. package/Binaries/Native/Windows/X64/JavonetGoRuntimeNative.dll +0 -0
  378. package/Binaries/Native/Windows/X64/JavonetJvmRuntimeNative.dll +0 -0
  379. package/Binaries/Native/Windows/X64/JavonetNetcoreRuntimeNative.dll +0 -0
  380. package/Binaries/Native/Windows/X64/JavonetNodejs1816RuntimeNative.dll +0 -0
  381. package/Binaries/Native/Windows/X64/JavonetNodejsRuntimeNative.dll +0 -0
  382. package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNative.dll +0 -0
  383. package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNativeAuxiliary.dll +0 -0
  384. package/Binaries/Native/Windows/X64/JavonetPythonRuntimeNative.dll +0 -0
  385. package/Binaries/Native/Windows/X64/JavonetRuby278RuntimeNative.dll +0 -0
  386. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNative.dll +0 -0
  387. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNativeAuxiliary.dll +0 -0
  388. package/Binaries/Native/Windows/X64/JavonetTcpClient.dll +0 -0
  389. package/Binaries/Native/Windows/X64/JavonetTcpTlsClient.dll +0 -0
  390. package/Binaries/Native/Windows/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  391. package/Binaries/Native/Windows/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  392. package/Binaries/Native/Windows/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  393. package/Binaries/Native/Windows/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  394. package/Binaries/Native/Windows/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  395. package/Binaries/Native/Windows/X64/NetVersionLatest.runtimeconfig.json +0 -10
  396. package/Binaries/Native/Windows/X64/Utils.dll +0 -0
  397. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  398. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  399. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  400. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  401. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  402. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  403. package/Binaries/Native/Windows/X64/libcrypto-3-x64.dll +0 -0
  404. package/Binaries/Native/Windows/X64/libnode.dll +0 -0
  405. package/Binaries/Native/Windows/X64/libssl-3-x64.dll +0 -0
  406. package/Binaries/Native/Windows/X64/libxml2.dll +0 -0
  407. package/Binaries/Native/Windows/X64/libxmlsec-openssl.dll +0 -0
  408. package/Binaries/Native/Windows/X64/libxmlsec.dll +0 -0
  409. package/Binaries/Native/Windows/X64/libxslt.dll +0 -0
  410. package/Binaries/Native/Windows/X64/nethost.dll +0 -0
  411. package/Binaries/Native/Windows/X64/python312.dll +0 -0
  412. package/Binaries/Native/Windows/X64/version.txt +0 -1
  413. package/Binaries/Native/Windows/X64/x64-msvcrt-ruby270.dll +0 -0
  414. package/Binaries/Native/Windows/X86/JavonetActivationService.dll +0 -0
  415. package/Binaries/Native/Windows/X86/JavonetClrRuntimeNative.dll +0 -0
  416. package/Binaries/Native/Windows/X86/JavonetCppRuntimeNative.dll +0 -0
  417. package/Binaries/Native/Windows/X86/JavonetGoRuntimeNative.dll +0 -0
  418. package/Binaries/Native/Windows/X86/JavonetJvmRuntimeNative.dll +0 -0
  419. package/Binaries/Native/Windows/X86/JavonetNetcoreRuntimeNative.dll +0 -0
  420. package/Binaries/Native/Windows/X86/JavonetPythonRuntimeNative.dll +0 -0
  421. package/Binaries/Native/Windows/X86/JavonetTcpClient.dll +0 -0
  422. package/Binaries/Native/Windows/X86/JavonetTcpTlsClient.dll +0 -0
  423. package/Binaries/Native/Windows/X86/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  424. package/Binaries/Native/Windows/X86/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  425. package/Binaries/Native/Windows/X86/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  426. package/Binaries/Native/Windows/X86/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  427. package/Binaries/Native/Windows/X86/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  428. package/Binaries/Native/Windows/X86/NetVersionLatest.runtimeconfig.json +0 -10
  429. package/Binaries/Native/Windows/X86/Utils.dll +0 -0
  430. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  431. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  432. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  433. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  434. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  435. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  436. package/Binaries/Native/Windows/X86/libcrypto-3.dll +0 -0
  437. package/Binaries/Native/Windows/X86/libssl-3.dll +0 -0
  438. package/Binaries/Native/Windows/X86/libxml2.dll +0 -0
  439. package/Binaries/Native/Windows/X86/libxmlsec-openssl.dll +0 -0
  440. package/Binaries/Native/Windows/X86/libxmlsec.dll +0 -0
  441. package/Binaries/Native/Windows/X86/libxslt.dll +0 -0
  442. package/Binaries/Native/Windows/X86/nethost.dll +0 -0
  443. package/Binaries/Native/Windows/X86/python312.dll +0 -0
  444. package/Binaries/Native/Windows/X86/version.txt +0 -1
  445. package/Binaries/Netcore/Javonet.Netcore.Core.dll +0 -0
  446. package/Binaries/Netcore/Javonet.Netcore.Utils.dll +0 -0
  447. package/Binaries/Nodejs/index.js +0 -66
  448. package/Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache.js +0 -35
  449. package/Binaries/Nodejs/lib/core/handler/AbstractHandler.js +0 -41
  450. package/Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler.js +0 -38
  451. package/Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler.js +0 -28
  452. package/Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  453. package/Binaries/Nodejs/lib/core/handler/ArrayHandler.js +0 -18
  454. package/Binaries/Nodejs/lib/core/handler/ArraySetItemHandler.js +0 -43
  455. package/Binaries/Nodejs/lib/core/handler/CastingHandler.js +0 -10
  456. package/Binaries/Nodejs/lib/core/handler/ConvertTypeHandler.js +0 -38
  457. package/Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  458. package/Binaries/Nodejs/lib/core/handler/DestructReferenceHandler.js +0 -19
  459. package/Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler.js +0 -34
  460. package/Binaries/Nodejs/lib/core/handler/EnableTypeHandler.js +0 -35
  461. package/Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  462. package/Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  463. package/Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  464. package/Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler.js +0 -36
  465. package/Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  466. package/Binaries/Nodejs/lib/core/handler/GetTypeHandler.js +0 -63
  467. package/Binaries/Nodejs/lib/core/handler/Handler.js +0 -98
  468. package/Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler.js +0 -36
  469. package/Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  470. package/Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  471. package/Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  472. package/Binaries/Nodejs/lib/core/handler/LoadLibraryHandler.js +0 -48
  473. package/Binaries/Nodejs/lib/core/handler/PassDelegateHandler.js +0 -157
  474. package/Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler.js +0 -13
  475. package/Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  476. package/Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  477. package/Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler.js +0 -33
  478. package/Binaries/Nodejs/lib/core/handler/ValueHandler.js +0 -13
  479. package/Binaries/Nodejs/lib/core/interpreter/Interpreter.js +0 -142
  480. package/Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache.js +0 -39
  481. package/Binaries/Nodejs/lib/core/protocol/CommandDeserializer.js +0 -181
  482. package/Binaries/Nodejs/lib/core/protocol/CommandSerializer.js +0 -50
  483. package/Binaries/Nodejs/lib/core/protocol/TypeDeserializer.js +0 -83
  484. package/Binaries/Nodejs/lib/core/protocol/TypeSerializer.js +0 -143
  485. package/Binaries/Nodejs/lib/core/receiver/Receiver.js +0 -32
  486. package/Binaries/Nodejs/lib/core/receiver/ReceiverNative.js +0 -13
  487. package/Binaries/Nodejs/lib/core/referenceCache/ReferencesCache.js +0 -30
  488. package/Binaries/Nodejs/lib/core/transmitter/Transmitter.js +0 -21
  489. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  490. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper.js +0 -47
  491. package/Binaries/Nodejs/lib/core/typeCache/TypeCache.js +0 -39
  492. package/Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient.js +0 -136
  493. package/Binaries/Nodejs/lib/declarations.d.ts +0 -64
  494. package/Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory.js +0 -145
  495. package/Binaries/Nodejs/lib/sdk/InvocationContext.js +0 -485
  496. package/Binaries/Nodejs/lib/sdk/Javonet.js +0 -105
  497. package/Binaries/Nodejs/lib/sdk/RuntimeContext.js +0 -300
  498. package/Binaries/Nodejs/lib/sdk/RuntimeFactory.js +0 -78
  499. package/Binaries/Nodejs/lib/sdk/tools/JsonFileResolver.js +0 -101
  500. package/Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  501. package/Binaries/Nodejs/lib/utils/Command.js +0 -69
  502. package/Binaries/Nodejs/lib/utils/CommandType.js +0 -47
  503. package/Binaries/Nodejs/lib/utils/ConnectionType.js +0 -8
  504. package/Binaries/Nodejs/lib/utils/CustomError.js +0 -8
  505. package/Binaries/Nodejs/lib/utils/ExceptionType.js +0 -13
  506. package/Binaries/Nodejs/lib/utils/RuntimeLogger.js +0 -30
  507. package/Binaries/Nodejs/lib/utils/RuntimeName.js +0 -14
  508. package/Binaries/Nodejs/lib/utils/RuntimeNameHandler.js +0 -34
  509. package/Binaries/Nodejs/lib/utils/StringEncodingMode.js +0 -9
  510. package/Binaries/Nodejs/lib/utils/Type.js +0 -17
  511. package/Binaries/Nodejs/lib/utils/TypesConverter.js +0 -91
  512. package/Binaries/Nodejs/lib/utils/connectionData/IConnectionData.js +0 -15
  513. package/Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  514. package/Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData.js +0 -77
  515. package/Binaries/Nodejs/lib/utils/connectionData/WsConnectionData.js +0 -50
  516. package/Binaries/Nodejs/lib/utils/exception/ExceptionSerializer.js +0 -64
  517. package/Binaries/Nodejs/lib/utils/exception/ExceptionThrower.js +0 -95
  518. package/Binaries/Nodejs/lib/utils/guid/generateGuid.js +0 -9
  519. package/Binaries/Nodejs/lib/utils/uuid/REGEX.js +0 -2
  520. package/Binaries/Nodejs/lib/utils/uuid/rng.js +0 -12
  521. package/Binaries/Nodejs/lib/utils/uuid/stringify.js +0 -51
  522. package/Binaries/Nodejs/lib/utils/uuid/v4.js +0 -27
  523. package/Binaries/Nodejs/lib/utils/uuid/validate.js +0 -6
  524. package/Binaries/Perl/Linux/X64/deps/bin/config_data +0 -249
  525. package/Binaries/Perl/Linux/X64/deps/bin/moose-outdated +0 -22
  526. package/Binaries/Perl/Linux/X64/deps/bin/package-stash-conflicts +0 -22
  527. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-events +0 -62
  528. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-highlight +0 -54
  529. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load +0 -155
  530. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load-dump +0 -314
  531. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-parse-emit +0 -123
  532. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  533. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  534. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  535. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  536. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  537. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  538. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Capture/Tiny.pm +0 -917
  539. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load/PP.pm +0 -59
  540. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load.pm +0 -420
  541. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  542. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  543. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  544. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/OptList.pm +0 -416
  545. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/GlobalDestruction.pm +0 -110
  546. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/OverloadInfo.pm +0 -309
  547. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace/Frame.pm +0 -272
  548. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace.pm +0 -624
  549. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Eval/Closure.pm +0 -379
  550. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config/MakeMaker.pm +0 -141
  551. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config.pm +0 -152
  552. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Unix.pm +0 -97
  553. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/VMS.pm +0 -118
  554. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Windows.pm +0 -125
  555. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers.pm +0 -122
  556. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/InstallPaths.pm +0 -627
  557. package/Binaries/Perl/Linux/X64/deps/lib/perl5/FFI/CheckLib.pm +0 -856
  558. package/Binaries/Perl/Linux/X64/deps/lib/perl5/File/Which.pm +0 -398
  559. package/Binaries/Perl/Linux/X64/deps/lib/perl5/IPC/System/Simple.pm +0 -1115
  560. package/Binaries/Perl/Linux/X64/deps/lib/perl5/MRO/Compat.pm +0 -407
  561. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Build.pm +0 -1097
  562. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Implementation.pm +0 -290
  563. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime/Conflicts.pm +0 -105
  564. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime.pm +0 -515
  565. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  566. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  567. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  568. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  569. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  570. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  571. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  572. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  573. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  574. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  575. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  576. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  577. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  578. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  579. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  580. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  581. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  582. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  583. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  584. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  585. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  586. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  587. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  588. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  589. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  590. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  591. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  592. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  593. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  594. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  595. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  596. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  597. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  598. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  599. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  600. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  601. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  602. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  603. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  604. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  605. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  606. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  607. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  608. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  609. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  610. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  611. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  612. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  613. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  614. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  615. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  616. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  617. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  618. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  619. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  620. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  621. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  622. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  623. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  624. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  625. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  626. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  627. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  628. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  629. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  630. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  631. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  632. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  633. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  634. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  635. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  636. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  637. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  638. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  639. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  640. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  641. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  642. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  643. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  644. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  645. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  646. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  647. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  648. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  649. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  650. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  651. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  652. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  653. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  654. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  655. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  656. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  657. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  658. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  659. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  660. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI.pm +0 -822
  661. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/DeprecationManager.pm +0 -368
  662. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/Conflicts.pm +0 -35
  663. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/PP.pm +0 -503
  664. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash.pm +0 -308
  665. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Path/Tiny.pm +0 -3946
  666. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  667. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Scope/Guard.pm +0 -183
  668. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Cookbook.pod +0 -602
  669. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Progressive.pm +0 -174
  670. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Tutorial.pod +0 -539
  671. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Util.pm +0 -488
  672. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter.pm +0 -1769
  673. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Install.pm +0 -486
  674. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Task/Weaken.pm +0 -95
  675. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  676. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Try/Tiny.pm +0 -820
  677. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  678. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  679. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  680. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  681. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  682. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  683. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  684. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  685. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  686. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  687. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  688. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  689. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  690. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  691. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  692. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  693. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  694. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  695. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  696. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  697. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  698. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  699. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  700. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  701. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  702. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  703. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  704. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  705. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  706. package/Binaries/Perl/Linux/X64/deps/lib/perl5/aliased.pm +0 -371
  707. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  708. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/install.json +0 -1
  709. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/MYMETA.json +0 -124
  710. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/install.json +0 -1
  711. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/MYMETA.json +0 -1290
  712. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/install.json +0 -1
  713. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/MYMETA.json +0 -1222
  714. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/install.json +0 -1
  715. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Clone-0.47/MYMETA.json +0 -54
  716. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Clone-0.47/install.json +0 -1
  717. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  718. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/install.json +0 -1
  719. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/MYMETA.json +0 -570
  720. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/install.json +0 -1
  721. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  722. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/install.json +0 -1
  723. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/MYMETA.json +0 -65
  724. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/install.json +0 -1
  725. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/MYMETA.json +0 -73
  726. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/install.json +0 -1
  727. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/MYMETA.json +0 -1081
  728. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/install.json +0 -1
  729. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/MYMETA.json +0 -463
  730. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/install.json +0 -1
  731. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/MYMETA.json +0 -599
  732. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/install.json +0 -1
  733. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/MYMETA.json +0 -79
  734. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/install.json +0 -1
  735. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/MYMETA.json +0 -89
  736. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/install.json +0 -1
  737. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/MYMETA.json +0 -76
  738. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/install.json +0 -1
  739. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/MYMETA.json +0 -156
  740. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/install.json +0 -1
  741. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/MYMETA.json +0 -198
  742. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/install.json +0 -1
  743. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/MYMETA.json +0 -81
  744. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/install.json +0 -1
  745. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/MYMETA.json +0 -69
  746. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/install.json +0 -1
  747. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/MYMETA.json +0 -66
  748. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/install.json +0 -1
  749. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-0.4234/MYMETA.json +0 -161
  750. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-0.4234/install.json +0 -1
  751. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/MYMETA.json +0 -122
  752. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/install.json +0 -1
  753. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/MYMETA.json +0 -625
  754. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/install.json +0 -1
  755. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.016/MYMETA.json +0 -62
  756. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.016/install.json +0 -1
  757. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/MYMETA.json +0 -1162
  758. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/install.json +0 -1
  759. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/MYMETA.json +0 -3189
  760. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/install.json +0 -1
  761. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  762. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/install.json +0 -1
  763. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/MYMETA.json +0 -1115
  764. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/install.json +0 -1
  765. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  766. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/install.json +0 -1
  767. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/MYMETA.json +0 -1069
  768. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/install.json +0 -1
  769. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/MYMETA.json +0 -1371
  770. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/install.json +0 -1
  771. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/MYMETA.json +0 -1331
  772. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/install.json +0 -1
  773. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/MYMETA.json +0 -89
  774. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/install.json +0 -1
  775. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/MYMETA.json +0 -186
  776. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/install.json +0 -1
  777. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  778. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/install.json +0 -1
  779. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-List-Utils-1.68/MYMETA.json +0 -58
  780. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-List-Utils-1.68/install.json +0 -1
  781. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  782. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  783. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/MYMETA.json +0 -53
  784. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/install.json +0 -1
  785. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/MYMETA.json +0 -595
  786. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/install.json +0 -1
  787. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/MYMETA.json +0 -55
  788. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/install.json +0 -1
  789. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/MYMETA.json +0 -572
  790. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/install.json +0 -1
  791. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/MYMETA.json +0 -1092
  792. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/install.json +0 -1
  793. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  794. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/install.json +0 -1
  795. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/MYMETA.json +0 -1344
  796. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/install.json +0 -1
  797. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/MYMETA.json +0 -40
  798. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/install.json +0 -1
  799. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  800. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/install.json +0 -1
  801. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/MYMETA.json +0 -1035
  802. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/install.json +0 -1
  803. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  804. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/install.json +0 -1
  805. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/Load/XS.pm +0 -89
  806. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Attribute.pm +0 -1100
  807. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class/Immutable/Trait.pm +0 -172
  808. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class.pm +0 -2312
  809. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Deprecated.pm +0 -95
  810. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Instance.pm +0 -533
  811. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Accessor.pm +0 -404
  812. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Constructor.pm +0 -251
  813. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Generated.pm +0 -142
  814. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Inlined.pm +0 -191
  815. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Meta.pm +0 -169
  816. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Wrapped.pm +0 -333
  817. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method.pm +0 -356
  818. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/MiniTrait.pm +0 -113
  819. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/AttributeCore.pm +0 -125
  820. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasAttributes.pm +0 -171
  821. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasMethods.pm +0 -304
  822. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasOverloads.pm +0 -243
  823. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin.pm +0 -107
  824. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Module.pm +0 -209
  825. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Object.pm +0 -196
  826. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Overload.pm +0 -340
  827. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Package.pm +0 -460
  828. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP.pm +0 -1222
  829. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Clone.pm +0 -99
  830. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Data/UUID.pm +0 -158
  831. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Build.pm +0 -634
  832. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/API.pm +0 -293
  833. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Buffer.pm +0 -366
  834. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Bundle.pm +0 -795
  835. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Closure.pm +0 -199
  836. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Constant.pm +0 -246
  837. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/DL.pm +0 -231
  838. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Function.pm +0 -229
  839. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Internal.pm +0 -96
  840. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/ASM.pm +0 -126
  841. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/C.pm +0 -123
  842. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/Win32.pm +0 -457
  843. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang.pm +0 -141
  844. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Legacy.pm +0 -140
  845. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Memory.pm +0 -268
  846. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/Meta.pm +0 -148
  847. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/TieArray.pm +0 -174
  848. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record.pm +0 -575
  849. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/ShareConfig.pm +0 -122
  850. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/PointerSizeBuffer.pm +0 -162
  851. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringArray.pm +0 -272
  852. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringPointer.pm +0 -190
  853. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/WideString.pm +0 -529
  854. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type.pm +0 -1399
  855. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version0.pm +0 -285
  856. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version1.pm +0 -390
  857. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version2.pm +0 -115
  858. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser.pm +0 -183
  859. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus.pm +0 -3302
  860. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Builder.pm +0 -538
  861. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Result.pm +0 -134
  862. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner.pm +0 -204
  863. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe.pm +0 -715
  864. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Temp.pm +0 -147
  865. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/typemap +0 -46
  866. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/List/Util/XS.pm +0 -42
  867. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/List/Util.pm +0 -836
  868. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Conflicts.pm +0 -132
  869. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod +0 -384
  870. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod +0 -397
  871. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod +0 -176
  872. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Company_Subtypes.pod +0 -615
  873. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod +0 -127
  874. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Document_AugmentAndInner.pod +0 -197
  875. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod +0 -318
  876. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod +0 -345
  877. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Immutable.pod +0 -99
  878. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod +0 -180
  879. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod +0 -489
  880. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod +0 -153
  881. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/ExtensionOverview.pod +0 -404
  882. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod +0 -160
  883. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod +0 -172
  884. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod +0 -337
  885. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod +0 -132
  886. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod +0 -304
  887. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod +0 -325
  888. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod +0 -224
  889. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Table_MetaclassTrait.pod +0 -157
  890. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/WhyMeta.pod +0 -117
  891. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/ApplicationToInstance.pod +0 -191
  892. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Comparable_CodeReuse.pod +0 -379
  893. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod +0 -230
  894. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Keywords.pod +0 -240
  895. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Types.pod +0 -130
  896. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Style.pod +0 -77
  897. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook.pod +0 -289
  898. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Deprecated.pm +0 -98
  899. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AccessorMustReadWrite.pm +0 -14
  900. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +0 -19
  901. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +0 -19
  902. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +0 -19
  903. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ApplyTakesABlessedInstance.pm +0 -19
  904. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +0 -19
  905. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInRoles.pm +0 -32
  906. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInSummation.pm +0 -28
  907. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +0 -19
  908. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeIsRequired.pm +0 -45
  909. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +0 -19
  910. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeNamesDoNotMatch.pm +0 -25
  911. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotAnObject.pm +0 -28
  912. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotDefined.pm +0 -22
  913. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +0 -14
  914. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BadOptionFormat.pm +0 -25
  915. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +0 -19
  916. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderDoesNotExist.pm +0 -14
  917. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +0 -14
  918. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +0 -26
  919. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMustBeAMethodName.pm +0 -19
  920. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +0 -19
  921. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +0 -19
  922. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanExtendOnlyClasses.pm +0 -15
  923. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyConsumeRole.pm +0 -18
  924. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyWrapBlessedCode.pm +0 -25
  925. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASubclass.pm +0 -15
  926. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +0 -14
  927. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +0 -18
  928. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAsAnAttributeToARole.pm +0 -20
  929. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +0 -13
  930. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +0 -20
  931. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +0 -13
  932. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentNoSuperMethod.pm +0 -26
  933. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDerefWithoutIsa.pm +0 -14
  934. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +0 -14
  935. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCalculateNativeType.pm +0 -14
  936. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +0 -19
  937. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractMethod.pm +0 -12
  938. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAWeakRef.pm +0 -14
  939. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +0 -17
  940. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +0 -13
  941. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +0 -25
  942. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +0 -19
  943. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +0 -14
  944. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateWithoutIsa.pm +0 -13
  945. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindDelegateMetaclass.pm +0 -14
  946. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindType.pm +0 -19
  947. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +0 -33
  948. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFixMetaclassCompatibility.pm +0 -26
  949. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotGenerateInlineConstraint.pm +0 -30
  950. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +0 -30
  951. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInlineTypeConstraintCheck.pm +0 -14
  952. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotLocatePackageInINC.pm +0 -41
  953. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotMakeMetaclassCompatible.pm +0 -23
  954. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideALocalMethod.pm +0 -20
  955. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +0 -19
  956. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +0 -13
  957. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideNoSuperMethod.pm +0 -26
  958. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +0 -12
  959. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +0 -14
  960. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CircularReferenceInAlso.pm +0 -31
  961. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesNotHaveInitMeta.pm +0 -22
  962. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesTheExcludedRole.pm +0 -22
  963. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassNamesDoNotMatch.pm +0 -25
  964. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +0 -20
  965. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CodeBlockMustBeACodeRef.pm +0 -13
  966. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercingWithoutCoercions.pm +0 -12
  967. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionAlreadyExists.pm +0 -20
  968. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionNeedsTypeConstraint.pm +0 -14
  969. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +0 -22
  970. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +0 -16
  971. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +0 -12
  972. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateMethod.pm +0 -32
  973. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateWriter.pm +0 -24
  974. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalConstructor.pm +0 -34
  975. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalDestructor.pm +0 -34
  976. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +0 -20
  977. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +0 -26
  978. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +0 -14
  979. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotParseType.pm +0 -30
  980. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +0 -13
  981. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +0 -13
  982. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +0 -13
  983. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesArrayRefOfRoles.pm +0 -13
  984. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfAttributes.pm +0 -13
  985. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfMethods.pm +0 -13
  986. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +0 -33
  987. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +0 -20
  988. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +0 -20
  989. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +0 -14
  990. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DoesRequiresRoleName.pm +0 -13
  991. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  992. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumValuesMustBeString.pm +0 -26
  993. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ExtendsMissingArgs.pm +0 -13
  994. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/HandlesMustBeAHashRef.pm +0 -20
  995. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalInheritedOptions.pm +0 -23
  996. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +0 -31
  997. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +0 -27
  998. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm +0 -13
  999. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +0 -18
  1000. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceBlessedIntoWrongClass.pm +0 -14
  1001. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceMustBeABlessedReference.pm +0 -20
  1002. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +0 -41
  1003. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentToMethod.pm +0 -45
  1004. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentsToTraitAliases.pm +0 -32
  1005. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1006. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHandleValue.pm +0 -20
  1007. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHasProvidedInARole.pm +0 -19
  1008. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidNameForType.pm +0 -17
  1009. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidOverloadOperator.pm +0 -21
  1010. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidRoleApplication.pm +0 -19
  1011. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeConstraint.pm +0 -24
  1012. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1013. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidValueForIs.pm +0 -14
  1014. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaDoesNotDoTheRole.pm +0 -14
  1015. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaLacksDoesMethod.pm +0 -14
  1016. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/LazyAttributeNeedsADefault.pm +0 -14
  1017. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Legacy.pm +0 -8
  1018. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +0 -19
  1019. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MatchActionMustBeACodeRef.pm +0 -28
  1020. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MessageParameterMustBeCodeRef.pm +0 -19
  1021. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +0 -24
  1022. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +0 -26
  1023. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +0 -23
  1024. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +0 -14
  1025. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +0 -14
  1026. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +0 -19
  1027. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassNotLoaded.pm +0 -14
  1028. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassTypeIncompatible.pm +0 -39
  1029. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectedAMetaclassObject.pm +0 -24
  1030. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsFewerArgs.pm +0 -27
  1031. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsMoreArgs.pm +0 -25
  1032. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodModifierNeedsMethodName.pm +0 -13
  1033. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameConflictInRoles.pm +0 -47
  1034. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +0 -20
  1035. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotGiven.pm +0 -13
  1036. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAMethodName.pm +0 -13
  1037. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnAttributeName.pm +0 -13
  1038. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnOverloadOperator.pm +0 -13
  1039. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +0 -19
  1040. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAHashOfOptions.pm +0 -19
  1041. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +0 -24
  1042. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +0 -19
  1043. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfArguments.pm +0 -25
  1044. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +0 -24
  1045. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustProvideANameForTheAttribute.pm +0 -19
  1046. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneMethod.pm +0 -13
  1047. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRole.pm +0 -13
  1048. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +0 -19
  1049. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +0 -19
  1050. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyADelegateToMethod.pm +0 -19
  1051. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMetaclass.pm +0 -20
  1052. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +0 -19
  1053. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +0 -19
  1054. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +0 -19
  1055. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +0 -13
  1056. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyPackageNameAndName.pm +0 -20
  1057. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +0 -25
  1058. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +0 -12
  1059. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +0 -12
  1060. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +0 -12
  1061. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +0 -12
  1062. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoAttributeFoundInSuperClass.pm +0 -14
  1063. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +0 -19
  1064. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoCasesMatched.pm +0 -27
  1065. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +0 -14
  1066. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoDestructorClassSpecified.pm +0 -13
  1067. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +0 -17
  1068. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoParentGivenToSubtype.pm +0 -18
  1069. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OnlyInstancesCanBeCloned.pm +0 -20
  1070. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OperatorIsRequired.pm +0 -19
  1071. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadConflictInSummation.pm +0 -62
  1072. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaClass.pm +0 -13
  1073. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaMethod.pm +0 -13
  1074. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaOverload.pm +0 -13
  1075. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm +0 -13
  1076. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAnOperator.pm +0 -13
  1077. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresNamesForCoderef.pm +0 -13
  1078. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInComposition.pm +0 -43
  1079. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInSummation.pm +0 -66
  1080. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageDoesNotUseMooseExporter.pm +0 -28
  1081. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +0 -25
  1082. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackagesAndModulesAreNotCachable.pm +0 -26
  1083. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +0 -26
  1084. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +0 -27
  1085. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeLacksInitialization.pm +0 -19
  1086. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeNeedsADefault.pm +0 -14
  1087. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsImportedByClass.pm +0 -46
  1088. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +0 -31
  1089. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Attribute.pm +0 -12
  1090. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/AttributeName.pm +0 -12
  1091. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Class.pm +0 -14
  1092. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +0 -49
  1093. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Instance.pm +0 -12
  1094. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InstanceClass.pm +0 -12
  1095. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InvalidAttributeOptions.pm +0 -13
  1096. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Method.pm +0 -12
  1097. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/ParamsHash.pm +0 -12
  1098. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Role.pm +0 -16
  1099. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreate.pm +0 -13
  1100. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreateMOPClass.pm +0 -13
  1101. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/TypeConstraint.pm +0 -14
  1102. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleDoesTheExcludedRole.pm +0 -28
  1103. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleExclusionConflict.pm +0 -27
  1104. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequired.pm +0 -13
  1105. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +0 -13
  1106. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportAugment.pm +0 -12
  1107. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportExtends.pm +0 -12
  1108. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportInner.pm +0 -12
  1109. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +0 -20
  1110. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +0 -14
  1111. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +0 -26
  1112. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +0 -12
  1113. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TriggerMustBeACodeRef.pm +0 -14
  1114. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +0 -25
  1115. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +0 -26
  1116. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +0 -13
  1117. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeHandles.pm +0 -20
  1118. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +0 -20
  1119. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +0 -22
  1120. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +0 -25
  1121. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  1122. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +0 -12
  1123. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +0 -49
  1124. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForTypeConstraint.pm +0 -33
  1125. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrapTakesACodeRefToBless.pm +0 -26
  1126. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrongTypeConstraintGiven.pm +0 -21
  1127. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception.pm +0 -211
  1128. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exporter.pm +0 -1048
  1129. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Intro.pod +0 -77
  1130. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Attributes.pod +0 -709
  1131. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/BestPractices.pod +0 -292
  1132. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Classes.pod +0 -218
  1133. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Concepts.pod +0 -439
  1134. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Construction.pod +0 -228
  1135. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Contributing.pod +0 -545
  1136. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delegation.pod +0 -313
  1137. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delta.pod +0 -1275
  1138. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions/Manifest.pod +0 -4124
  1139. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions.pod +0 -239
  1140. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/FAQ.pod +0 -470
  1141. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MOP.pod +0 -214
  1142. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MethodModifiers.pod +0 -449
  1143. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MooseX.pod +0 -326
  1144. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Resources.pod +0 -526
  1145. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Roles.pod +0 -557
  1146. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Support.pod +0 -204
  1147. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Types.pod +0 -501
  1148. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Unsweetened.pod +0 -386
  1149. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual.pod +0 -334
  1150. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Array.pm +0 -387
  1151. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Bool.pm +0 -146
  1152. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Code.pm +0 -129
  1153. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Counter.pm +0 -157
  1154. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Hash.pm +0 -227
  1155. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Number.pm +0 -155
  1156. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/String.pm +0 -187
  1157. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait.pm +0 -244
  1158. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native.pm +0 -299
  1159. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute.pm +0 -1810
  1160. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class/Immutable/Trait.pm +0 -123
  1161. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class.pm +0 -1014
  1162. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Instance.pm +0 -109
  1163. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/Writer.pm +0 -27
  1164. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/accessor.pm +0 -56
  1165. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/clear.pm +0 -28
  1166. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/count.pm +0 -22
  1167. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/delete.pm +0 -50
  1168. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/elements.pm +0 -22
  1169. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first.pm +0 -42
  1170. 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
  1171. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/get.pm +0 -31
  1172. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/grep.pm +0 -41
  1173. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/insert.pm +0 -58
  1174. 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
  1175. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/join.pm +0 -41
  1176. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/map.pm +0 -41
  1177. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/natatime.pm +0 -66
  1178. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/pop.pm +0 -47
  1179. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/push.pm +0 -36
  1180. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/reduce.pm +0 -42
  1181. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/set.pm +0 -64
  1182. 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
  1183. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shift.pm +0 -47
  1184. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm +0 -24
  1185. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort.pm +0 -44
  1186. 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
  1187. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/splice.pm +0 -72
  1188. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/uniq.pm +0 -24
  1189. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/unshift.pm +0 -36
  1190. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array.pm +0 -28
  1191. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/not.pm +0 -20
  1192. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/set.pm +0 -24
  1193. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm +0 -29
  1194. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/unset.pm +0 -24
  1195. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute.pm +0 -20
  1196. 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
  1197. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Collection.pm +0 -167
  1198. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm +0 -24
  1199. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/dec.pm +0 -30
  1200. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/inc.pm +0 -30
  1201. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/reset.pm +0 -36
  1202. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/set.pm +0 -25
  1203. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm +0 -41
  1204. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm +0 -61
  1205. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +0 -37
  1206. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/count.pm +0 -22
  1207. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/defined.pm +0 -31
  1208. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/delete.pm +0 -46
  1209. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/elements.pm +0 -23
  1210. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/exists.pm +0 -31
  1211. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/get.pm +0 -35
  1212. 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
  1213. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/keys.pm +0 -22
  1214. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/kv.pm +0 -23
  1215. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/set.pm +0 -99
  1216. 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
  1217. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/values.pm +0 -22
  1218. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash.pm +0 -28
  1219. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/abs.pm +0 -29
  1220. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/add.pm +0 -31
  1221. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/div.pm +0 -31
  1222. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mod.pm +0 -31
  1223. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mul.pm +0 -31
  1224. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/set.pm +0 -25
  1225. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/sub.pm +0 -31
  1226. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Reader.pm +0 -47
  1227. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/append.pm +0 -31
  1228. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chomp.pm +0 -40
  1229. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chop.pm +0 -40
  1230. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/clear.pm +0 -24
  1231. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/inc.pm +0 -33
  1232. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/length.pm +0 -22
  1233. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/match.pm +0 -42
  1234. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/prepend.pm +0 -31
  1235. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/replace.pm +0 -69
  1236. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/substr.pm +0 -123
  1237. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Writer.pm +0 -174
  1238. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native.pm +0 -157
  1239. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor.pm +0 -208
  1240. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Augmented.pm +0 -171
  1241. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Constructor.pm +0 -145
  1242. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Delegation.pm +0 -307
  1243. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Destructor.pm +0 -251
  1244. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Meta.pm +0 -112
  1245. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Overridden.pm +0 -160
  1246. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method.pm +0 -100
  1247. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Mixin/AttributeCore.pm +0 -185
  1248. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Object/Trait.pm +0 -107
  1249. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/RoleSummation.pm +0 -440
  1250. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToClass.pm +0 -314
  1251. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToInstance.pm +0 -142
  1252. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToRole.pm +0 -283
  1253. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application.pm +0 -225
  1254. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Attribute.pm +0 -259
  1255. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Composite.pm +0 -320
  1256. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Conflicting.pm +0 -135
  1257. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Required.pm +0 -127
  1258. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method.pm +0 -101
  1259. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role.pm +0 -1059
  1260. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion/Union.pm +0 -141
  1261. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion.pm +0 -239
  1262. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Class.pm +0 -261
  1263. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/DuckType.pm +0 -217
  1264. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Enum.pm +0 -235
  1265. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterizable.pm +0 -200
  1266. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterized.pm +0 -188
  1267. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Registry.pm +0 -206
  1268. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Role.pm +0 -235
  1269. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Union.pm +0 -346
  1270. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint.pm +0 -607
  1271. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Object.pm +0 -271
  1272. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Role.pm +0 -377
  1273. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Spec/Role.pod +0 -397
  1274. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Unsweetened.pod +0 -77
  1275. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/MetaRole.pm +0 -329
  1276. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints/Builtins.pm +0 -305
  1277. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints.pm +0 -1443
  1278. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util.pm +0 -725
  1279. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose.pm +0 -1268
  1280. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/PPI/XS.pm +0 -137
  1281. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Package/Stash/XS.pm +0 -110
  1282. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util/PP.pm +0 -276
  1283. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util.pm +0 -486
  1284. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/List/Utils.pm +0 -43
  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/Scalar/Util.pm +0 -390
  1287. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Sub/Util.pm +0 -153
  1288. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Test/Moose.pm +0 -228
  1289. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Want.pm +0 -742
  1290. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Attribute/Util/.packlist +0 -12
  1291. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Capture/Tiny/.packlist +0 -2
  1292. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/.packlist +0 -3
  1293. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/.packlist +0 -3
  1294. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/XS.so +0 -0
  1295. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Clone/.packlist +0 -4
  1296. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Clone/Clone.so +0 -0
  1297. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Clone/autosplit.ix +0 -3
  1298. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/Cmp/.packlist +0 -6
  1299. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/OptList/.packlist +0 -2
  1300. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/.packlist +0 -3
  1301. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/UUID.so +0 -0
  1302. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/GlobalDestruction/.packlist +0 -2
  1303. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/OverloadInfo/.packlist +0 -2
  1304. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/StackTrace/.packlist +0 -4
  1305. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Eval/Closure/.packlist +0 -2
  1306. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Config/.packlist +0 -4
  1307. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Helpers/.packlist +0 -8
  1308. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/InstallPaths/.packlist +0 -2
  1309. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/CheckLib/.packlist +0 -2
  1310. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/.packlist +0 -98
  1311. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Constant/Constant.txt +0 -1
  1312. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Memory/Memory.txt +0 -1
  1313. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Platypus.so +0 -0
  1314. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Record/Meta/Meta.txt +0 -1
  1315. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/File/Which/.packlist +0 -2
  1316. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/IPC/System/Simple/.packlist +0 -2
  1317. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/List/Util/.packlist +0 -11
  1318. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/List/Util/Util.so +0 -0
  1319. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MRO/Compat/.packlist +0 -2
  1320. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Implementation/.packlist +0 -2
  1321. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/.packlist +0 -2
  1322. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/Conflicts/.packlist +0 -2
  1323. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/.packlist +0 -574
  1324. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/Moose.so +0 -0
  1325. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Nice/Try/.packlist +0 -2
  1326. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/.packlist +0 -186
  1327. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/.packlist +0 -3
  1328. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/XS.so +0 -0
  1329. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/DeprecationManager/.packlist +0 -2
  1330. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/.packlist +0 -6
  1331. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/.packlist +0 -3
  1332. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/XS.so +0 -0
  1333. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/.packlist +0 -5
  1334. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/Util.so +0 -0
  1335. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Path/Tiny/.packlist +0 -2
  1336. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Safe/Isa/.packlist +0 -2
  1337. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/.packlist +0 -3
  1338. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/Numeric.so +0 -0
  1339. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scope/Guard/.packlist +0 -2
  1340. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/.packlist +0 -8
  1341. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/Progressive/.packlist +0 -2
  1342. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Install/.packlist +0 -2
  1343. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Task/Weaken/.packlist +0 -2
  1344. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Fatal/.packlist +0 -2
  1345. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Try/Tiny/.packlist +0 -2
  1346. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/.packlist +0 -3
  1347. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/Want.so +0 -0
  1348. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/YAML/PP/.packlist +0 -55
  1349. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/aliased/.packlist +0 -2
  1350. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/.packlist +0 -5
  1351. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/autobox.so +0 -0
  1352. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox/universal.pm +0 -13
  1353. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pm +0 -404
  1354. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pod +0 -709
  1355. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/metaclass.pm +0 -155
  1356. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/oose.pm +0 -137
  1357. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod +0 -990
  1358. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1359. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1360. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1361. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1362. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1363. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1364. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1365. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1366. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1367. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1368. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1369. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1370. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1371. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1372. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1373. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1374. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1375. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1376. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1377. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1378. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1379. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1380. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1381. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1382. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -22
  1383. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1384. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -43
  1385. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -43
  1386. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -203
  1387. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -86
  1388. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -82
  1389. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -142
  1390. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -38
  1391. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -28
  1392. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -128
  1393. package/Binaries/Perl/Linux/X64/lib/Javonet/Javonet.pm +0 -80
  1394. package/Binaries/Perl/Linux/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1395. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1396. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -56
  1397. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -25
  1398. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -34
  1399. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -20
  1400. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/Type.pm +0 -28
  1401. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1402. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1403. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1404. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1405. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1406. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -24
  1407. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1408. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1409. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1410. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1411. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -104
  1412. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events +0 -62
  1413. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events.bat +0 -79
  1414. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight +0 -54
  1415. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight.bat +0 -71
  1416. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load +0 -155
  1417. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump +0 -314
  1418. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump.bat +0 -331
  1419. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load.bat +0 -172
  1420. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit +0 -123
  1421. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit.bat +0 -140
  1422. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  1423. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  1424. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  1425. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  1426. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  1427. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  1428. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  1429. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  1430. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  1431. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  1432. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/install.json +0 -1
  1433. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  1434. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/install.json +0 -1
  1435. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  1436. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/install.json +0 -1
  1437. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  1438. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/install.json +0 -1
  1439. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/MYMETA.json +0 -1115
  1440. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/install.json +0 -1
  1441. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  1442. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/install.json +0 -1
  1443. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  1444. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/install.json +0 -1
  1445. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  1446. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  1447. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  1448. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/install.json +0 -1
  1449. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/MYMETA.json +0 -40
  1450. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/install.json +0 -1
  1451. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  1452. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/install.json +0 -1
  1453. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  1454. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/install.json +0 -1
  1455. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Data/UUID.pm +0 -158
  1456. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/PPI/XS.pm +0 -137
  1457. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Scalar/Util/Numeric.pm +0 -137
  1458. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Want.pm +0 -742
  1459. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Attribute/Util/.packlist +0 -6
  1460. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/Cmp/.packlist +0 -3
  1461. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/.packlist +0 -2
  1462. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/UUID.xs.dll +0 -0
  1463. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Nice/Try/.packlist +0 -1
  1464. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/.packlist +0 -95
  1465. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/.packlist +0 -2
  1466. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/XS.xs.dll +0 -0
  1467. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Safe/Isa/.packlist +0 -1
  1468. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/.packlist +0 -2
  1469. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/Numeric.xs.dll +0 -0
  1470. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Test/Fatal/.packlist +0 -1
  1471. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/.packlist +0 -2
  1472. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/Want.xs.dll +0 -0
  1473. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/YAML/PP/.packlist +0 -39
  1474. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/.packlist +0 -4
  1475. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/autobox.xs.dll +0 -0
  1476. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox/universal.pm +0 -13
  1477. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pm +0 -404
  1478. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pod +0 -709
  1479. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/perllocal.pod +0 -264
  1480. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  1481. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  1482. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  1483. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  1484. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  1485. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  1486. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  1487. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  1488. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  1489. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  1490. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  1491. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  1492. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  1493. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  1494. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  1495. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  1496. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  1497. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  1498. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  1499. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  1500. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  1501. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  1502. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  1503. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  1504. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  1505. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  1506. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  1507. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  1508. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  1509. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  1510. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  1511. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  1512. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  1513. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  1514. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  1515. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  1516. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  1517. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  1518. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  1519. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  1520. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  1521. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  1522. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  1523. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  1524. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  1525. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  1526. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  1527. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  1528. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  1529. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  1530. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  1531. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  1532. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  1533. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  1534. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  1535. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  1536. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  1537. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  1538. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  1539. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  1540. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  1541. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  1542. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  1543. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  1544. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  1545. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  1546. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  1547. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  1548. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  1549. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  1550. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  1551. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  1552. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  1553. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  1554. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  1555. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  1556. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  1557. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  1558. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  1559. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  1560. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  1561. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  1562. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  1563. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  1564. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  1565. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  1566. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  1567. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  1568. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  1569. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  1570. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  1571. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  1572. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  1573. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  1574. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  1575. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI.pm +0 -822
  1576. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  1577. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  1578. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  1579. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  1580. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  1581. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  1582. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  1583. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  1584. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  1585. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  1586. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  1587. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  1588. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  1589. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  1590. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  1591. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  1592. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  1593. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  1594. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  1595. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  1596. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  1597. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  1598. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  1599. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  1600. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  1601. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  1602. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  1603. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  1604. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  1605. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  1606. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  1607. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1608. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1609. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1610. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1611. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1612. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1613. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1614. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1615. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1616. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1617. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1618. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1619. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1620. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1621. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1622. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1623. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1624. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1625. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1626. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1627. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1628. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1629. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1630. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1631. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -22
  1632. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1633. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -43
  1634. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -43
  1635. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -203
  1636. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -86
  1637. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -82
  1638. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -142
  1639. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -38
  1640. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -28
  1641. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -128
  1642. package/Binaries/Perl/Windows/X64/lib/Javonet/Javonet.pm +0 -80
  1643. package/Binaries/Perl/Windows/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1644. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1645. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -56
  1646. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -25
  1647. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -34
  1648. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -20
  1649. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/Type.pm +0 -28
  1650. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1651. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1652. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1653. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1654. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1655. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -24
  1656. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1657. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1658. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1659. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1660. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -104
  1661. package/Binaries/Python/javonet/core/__init__.py +0 -0
  1662. package/Binaries/Python/javonet/core/callback/__init__.py +0 -0
  1663. package/Binaries/Python/javonet/core/callback/callbackFunc.py +0 -7
  1664. package/Binaries/Python/javonet/core/delegateCache/DelegatesCache.py +0 -39
  1665. package/Binaries/Python/javonet/core/delegateCache/__init__.py +0 -0
  1666. package/Binaries/Python/javonet/core/generator/__init__.py +0 -0
  1667. package/Binaries/Python/javonet/core/generator/handler/AbstractGeneretatorHandler.py +0 -8
  1668. package/Binaries/Python/javonet/core/generator/handler/CreateInstanceGeneratorHandler.py +0 -44
  1669. package/Binaries/Python/javonet/core/generator/handler/GeneratorHandler.py +0 -65
  1670. package/Binaries/Python/javonet/core/generator/handler/GetInstanceFieldGeneratorHandler.py +0 -36
  1671. package/Binaries/Python/javonet/core/generator/handler/GetStaticFieldGeneratorHandler.py +0 -39
  1672. package/Binaries/Python/javonet/core/generator/handler/GetTypeGeneratorHandler.py +0 -92
  1673. package/Binaries/Python/javonet/core/generator/handler/Handlers.py +0 -59
  1674. package/Binaries/Python/javonet/core/generator/handler/InvokeInstanceMethodGeneratorHandler.py +0 -53
  1675. package/Binaries/Python/javonet/core/generator/handler/InvokeStaticMethodGeneratorHandler.py +0 -54
  1676. package/Binaries/Python/javonet/core/generator/handler/__init__.py +0 -0
  1677. package/Binaries/Python/javonet/core/generator/handler/shared/SharedArgumentNameHandler.py +0 -12
  1678. package/Binaries/Python/javonet/core/generator/handler/shared/SharedClassInstanceHandler.py +0 -12
  1679. package/Binaries/Python/javonet/core/generator/handler/shared/SharedClassNameHandler.py +0 -31
  1680. package/Binaries/Python/javonet/core/generator/handler/shared/SharedMethodNameHandler.py +0 -30
  1681. package/Binaries/Python/javonet/core/generator/handler/shared/SharedModifierHandler.py +0 -21
  1682. package/Binaries/Python/javonet/core/generator/handler/shared/SharedReturnTypeHandler.py +0 -13
  1683. package/Binaries/Python/javonet/core/generator/handler/shared/SharedTypeHandler.py +0 -57
  1684. package/Binaries/Python/javonet/core/generator/handler/shared/__init__.py +0 -0
  1685. package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedBodyHandler.py +0 -10
  1686. package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedCreateInstanceBodyHandler.py +0 -21
  1687. package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedGetInstanceFieldBodyHandler.py +0 -16
  1688. package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedGetStaticFieldBodyHandler.py +0 -22
  1689. package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedGetTypeBodyHandler.py +0 -16
  1690. package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedInvokeInstanceMethodBodyHandler.py +0 -47
  1691. package/Binaries/Python/javonet/core/generator/handler/shared/body/SharedInvokeStaticMethodBodyHandler.py +0 -55
  1692. package/Binaries/Python/javonet/core/generator/handler/shared/body/__init__.py +0 -0
  1693. package/Binaries/Python/javonet/core/generator/internal/CommonGenerator.py +0 -23
  1694. package/Binaries/Python/javonet/core/generator/internal/PythonStringBuilder.py +0 -15
  1695. package/Binaries/Python/javonet/core/generator/internal/SharedHandlerType.py +0 -12
  1696. package/Binaries/Python/javonet/core/generator/internal/__init__.py +0 -0
  1697. package/Binaries/Python/javonet/core/handler/AbstractCommandHandler.py +0 -20
  1698. package/Binaries/Python/javonet/core/handler/AbstractHandler.py +0 -3
  1699. package/Binaries/Python/javonet/core/handler/ArrayGetItemHandler.py +0 -27
  1700. package/Binaries/Python/javonet/core/handler/ArrayGetRankHandler.py +0 -25
  1701. package/Binaries/Python/javonet/core/handler/ArrayGetSizeHandler.py +0 -24
  1702. package/Binaries/Python/javonet/core/handler/ArrayHandler.py +0 -13
  1703. package/Binaries/Python/javonet/core/handler/ArraySetItemHandler.py +0 -39
  1704. package/Binaries/Python/javonet/core/handler/CastingHandler.py +0 -6
  1705. package/Binaries/Python/javonet/core/handler/CreateClassInstanceHandler.py +0 -22
  1706. package/Binaries/Python/javonet/core/handler/DestructReferenceHandler.py +0 -13
  1707. package/Binaries/Python/javonet/core/handler/EnableNamespaceHandler.py +0 -28
  1708. package/Binaries/Python/javonet/core/handler/EnableTypeHandler.py +0 -28
  1709. package/Binaries/Python/javonet/core/handler/GetEnumItemHandler.py +0 -29
  1710. package/Binaries/Python/javonet/core/handler/GetEnumNameHandler.py +0 -22
  1711. package/Binaries/Python/javonet/core/handler/GetEnumValueHandler.py +0 -22
  1712. package/Binaries/Python/javonet/core/handler/GetInstanceFieldHandler.py +0 -27
  1713. package/Binaries/Python/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -29
  1714. package/Binaries/Python/javonet/core/handler/GetStaticFieldHandler.py +0 -27
  1715. package/Binaries/Python/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -31
  1716. package/Binaries/Python/javonet/core/handler/GetTypeHandler.py +0 -85
  1717. package/Binaries/Python/javonet/core/handler/Handler.py +0 -100
  1718. package/Binaries/Python/javonet/core/handler/HandlerDictionary.py +0 -8
  1719. package/Binaries/Python/javonet/core/handler/InvokeDelegateHandler.py +0 -27
  1720. package/Binaries/Python/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -46
  1721. package/Binaries/Python/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -31
  1722. package/Binaries/Python/javonet/core/handler/InvokeStaticMethodHandler.py +0 -33
  1723. package/Binaries/Python/javonet/core/handler/LoadLibraryHandler.py +0 -31
  1724. package/Binaries/Python/javonet/core/handler/PassDelegateHandler.py +0 -21
  1725. package/Binaries/Python/javonet/core/handler/ResolveInstanceHandler.py +0 -19
  1726. package/Binaries/Python/javonet/core/handler/SetInstanceFieldHandler.py +0 -29
  1727. package/Binaries/Python/javonet/core/handler/SetStaticFieldHandler.py +0 -29
  1728. package/Binaries/Python/javonet/core/handler/ValueHandler.py +0 -6
  1729. package/Binaries/Python/javonet/core/handler/__init__.py +0 -0
  1730. package/Binaries/Python/javonet/core/interpreter/Interpreter.py +0 -55
  1731. package/Binaries/Python/javonet/core/interpreter/__init__.py +0 -0
  1732. package/Binaries/Python/javonet/core/namespaceCache/NamespaceCache.py +0 -44
  1733. package/Binaries/Python/javonet/core/namespaceCache/__init__.py +0 -0
  1734. package/Binaries/Python/javonet/core/protocol/CommandDeserializer.py +0 -161
  1735. package/Binaries/Python/javonet/core/protocol/CommandSerializer.py +0 -29
  1736. package/Binaries/Python/javonet/core/protocol/TypeDeserializer.py +0 -64
  1737. package/Binaries/Python/javonet/core/protocol/TypeSerializer.py +0 -96
  1738. package/Binaries/Python/javonet/core/protocol/__init__.py +0 -0
  1739. package/Binaries/Python/javonet/core/receiver/Receiver.py +0 -42
  1740. package/Binaries/Python/javonet/core/receiver/__init__.py +0 -0
  1741. package/Binaries/Python/javonet/core/referenceCache/ReferencesCache.py +0 -39
  1742. package/Binaries/Python/javonet/core/referenceCache/__init__.py +0 -0
  1743. package/Binaries/Python/javonet/core/transmitter/Transmitter.py +0 -20
  1744. package/Binaries/Python/javonet/core/transmitter/TransmitterWrapper.py +0 -112
  1745. package/Binaries/Python/javonet/core/transmitter/__init__.py +0 -0
  1746. package/Binaries/Python/javonet/core/typeCache/TypeCache.py +0 -44
  1747. package/Binaries/Python/javonet/core/typeCache/__init__.py +0 -0
  1748. package/Binaries/Python/javonet/core/webSocketClient/WebSocketClient.py +0 -32
  1749. package/Binaries/Python/javonet/utils/Command.py +0 -90
  1750. package/Binaries/Python/javonet/utils/CommandType.py +0 -46
  1751. package/Binaries/Python/javonet/utils/ConnectionType.py +0 -7
  1752. package/Binaries/Python/javonet/utils/ExceptionType.py +0 -55
  1753. package/Binaries/Python/javonet/utils/RuntimeLogger.py +0 -30
  1754. package/Binaries/Python/javonet/utils/RuntimeName.py +0 -16
  1755. package/Binaries/Python/javonet/utils/RuntimeNameHandler.py +0 -26
  1756. package/Binaries/Python/javonet/utils/StringEncodingMode.py +0 -8
  1757. package/Binaries/Python/javonet/utils/Type.py +0 -16
  1758. package/Binaries/Python/javonet/utils/UtilsConst.py +0 -42
  1759. package/Binaries/Python/javonet/utils/__init__.py +0 -0
  1760. package/Binaries/Python/javonet/utils/connectionData/IConnectionData.py +0 -18
  1761. package/Binaries/Python/javonet/utils/connectionData/InMemoryConnectionData.py +0 -23
  1762. package/Binaries/Python/javonet/utils/connectionData/TcpConnectionData.py +0 -67
  1763. package/Binaries/Python/javonet/utils/connectionData/WsConnectionData.py +0 -30
  1764. package/Binaries/Python/javonet/utils/connectionData/__init__.py +0 -0
  1765. package/Binaries/Python/javonet/utils/exception/ExceptionSerializer.py +0 -60
  1766. package/Binaries/Python/javonet/utils/exception/ExceptionThrower.py +0 -81
  1767. package/Binaries/Python/javonet/utils/exception/JavonetException.py +0 -10
  1768. package/Binaries/Python/javonet/utils/exception/__init__.py +0 -0
  1769. package/Binaries/Python/javonet/utils/messageHelper/MessageHelper.py +0 -86
  1770. package/Binaries/Python/javonet/utils/messageHelper/__init__.py +0 -0
  1771. package/Binaries/Ruby/Linux/X64/core/handler/abstract_command_handler.rb +0 -24
  1772. package/Binaries/Ruby/Linux/X64/core/handler/abstract_handler.rb +0 -5
  1773. package/Binaries/Ruby/Linux/X64/core/handler/array_get_item_handler.rb +0 -47
  1774. package/Binaries/Ruby/Linux/X64/core/handler/array_get_rank_handler.rb +0 -23
  1775. package/Binaries/Ruby/Linux/X64/core/handler/array_get_size_handler.rb +0 -37
  1776. package/Binaries/Ruby/Linux/X64/core/handler/array_handler.rb +0 -12
  1777. package/Binaries/Ruby/Linux/X64/core/handler/array_set_item_handler.rb +0 -47
  1778. package/Binaries/Ruby/Linux/X64/core/handler/casting_handler.rb +0 -11
  1779. package/Binaries/Ruby/Linux/X64/core/handler/create_class_instance_handler.rb +0 -34
  1780. package/Binaries/Ruby/Linux/X64/core/handler/destruct_reference_handler.rb +0 -21
  1781. package/Binaries/Ruby/Linux/X64/core/handler/enable_namespace_handler.rb +0 -31
  1782. package/Binaries/Ruby/Linux/X64/core/handler/enable_type_handler.rb +0 -32
  1783. package/Binaries/Ruby/Linux/X64/core/handler/get_instance_field_handler.rb +0 -34
  1784. package/Binaries/Ruby/Linux/X64/core/handler/get_static_field_handler.rb +0 -34
  1785. package/Binaries/Ruby/Linux/X64/core/handler/get_type_handler.rb +0 -70
  1786. package/Binaries/Ruby/Linux/X64/core/handler/handler.rb +0 -111
  1787. package/Binaries/Ruby/Linux/X64/core/handler/handler_dictionary.rb +0 -8
  1788. package/Binaries/Ruby/Linux/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1789. package/Binaries/Ruby/Linux/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1790. package/Binaries/Ruby/Linux/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1791. package/Binaries/Ruby/Linux/X64/core/handler/load_library_handler.rb +0 -33
  1792. package/Binaries/Ruby/Linux/X64/core/handler/resolve_instance_handler.rb +0 -24
  1793. package/Binaries/Ruby/Linux/X64/core/handler/set_instance_field_handler.rb +0 -35
  1794. package/Binaries/Ruby/Linux/X64/core/handler/set_static_field_handler.rb +0 -31
  1795. package/Binaries/Ruby/Linux/X64/core/handler/value_handler.rb +0 -7
  1796. package/Binaries/Ruby/Linux/X64/core/interpreter/interpreter.rb +0 -25
  1797. package/Binaries/Ruby/Linux/X64/core/namespace_cache/namespace_cache.rb +0 -40
  1798. package/Binaries/Ruby/Linux/X64/core/protocol/command_deserializer.rb +0 -178
  1799. package/Binaries/Ruby/Linux/X64/core/protocol/command_serializer.rb +0 -30
  1800. package/Binaries/Ruby/Linux/X64/core/protocol/type_deserializer.rb +0 -65
  1801. package/Binaries/Ruby/Linux/X64/core/protocol/type_serializer.rb +0 -98
  1802. package/Binaries/Ruby/Linux/X64/core/receiver/receiver.rb +0 -22
  1803. package/Binaries/Ruby/Linux/X64/core/reference_cache/references_cache.rb +0 -33
  1804. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter.rb +0 -58
  1805. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1806. package/Binaries/Ruby/Linux/X64/core/type_cache/type_cache.rb +0 -40
  1807. package/Binaries/Ruby/Linux/X64/external_lib/random/formatter.rb +0 -373
  1808. package/Binaries/Ruby/Linux/X64/external_lib/securerandom.rb +0 -96
  1809. package/Binaries/Ruby/Linux/X64/external_lib/singleton.rb +0 -172
  1810. package/Binaries/Ruby/Linux/X64/utils/command.rb +0 -93
  1811. package/Binaries/Ruby/Linux/X64/utils/command_type.rb +0 -135
  1812. package/Binaries/Ruby/Linux/X64/utils/connection_type.rb +0 -4
  1813. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_serializer.rb +0 -93
  1814. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_thrower.rb +0 -65
  1815. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_type.rb +0 -10
  1816. package/Binaries/Ruby/Linux/X64/utils/runtime_logger.rb +0 -30
  1817. package/Binaries/Ruby/Linux/X64/utils/runtime_name.rb +0 -11
  1818. package/Binaries/Ruby/Linux/X64/utils/runtime_name_handler.rb +0 -34
  1819. package/Binaries/Ruby/Linux/X64/utils/string_encoding_mode.rb +0 -6
  1820. package/Binaries/Ruby/Linux/X64/utils/tcp_connection_data.rb +0 -37
  1821. package/Binaries/Ruby/Linux/X64/utils/type.rb +0 -14
  1822. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_command_handler.rb +0 -24
  1823. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_handler.rb +0 -5
  1824. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_item_handler.rb +0 -47
  1825. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_rank_handler.rb +0 -23
  1826. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_size_handler.rb +0 -37
  1827. package/Binaries/Ruby/MacOs/X64/core/handler/array_handler.rb +0 -12
  1828. package/Binaries/Ruby/MacOs/X64/core/handler/array_set_item_handler.rb +0 -47
  1829. package/Binaries/Ruby/MacOs/X64/core/handler/casting_handler.rb +0 -11
  1830. package/Binaries/Ruby/MacOs/X64/core/handler/create_class_instance_handler.rb +0 -34
  1831. package/Binaries/Ruby/MacOs/X64/core/handler/destruct_reference_handler.rb +0 -21
  1832. package/Binaries/Ruby/MacOs/X64/core/handler/enable_namespace_handler.rb +0 -31
  1833. package/Binaries/Ruby/MacOs/X64/core/handler/enable_type_handler.rb +0 -32
  1834. package/Binaries/Ruby/MacOs/X64/core/handler/get_instance_field_handler.rb +0 -34
  1835. package/Binaries/Ruby/MacOs/X64/core/handler/get_static_field_handler.rb +0 -34
  1836. package/Binaries/Ruby/MacOs/X64/core/handler/get_type_handler.rb +0 -70
  1837. package/Binaries/Ruby/MacOs/X64/core/handler/handler.rb +0 -111
  1838. package/Binaries/Ruby/MacOs/X64/core/handler/handler_dictionary.rb +0 -8
  1839. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1840. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1841. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1842. package/Binaries/Ruby/MacOs/X64/core/handler/load_library_handler.rb +0 -33
  1843. package/Binaries/Ruby/MacOs/X64/core/handler/resolve_instance_handler.rb +0 -24
  1844. package/Binaries/Ruby/MacOs/X64/core/handler/set_instance_field_handler.rb +0 -35
  1845. package/Binaries/Ruby/MacOs/X64/core/handler/set_static_field_handler.rb +0 -31
  1846. package/Binaries/Ruby/MacOs/X64/core/handler/value_handler.rb +0 -7
  1847. package/Binaries/Ruby/MacOs/X64/core/interpreter/interpreter.rb +0 -25
  1848. package/Binaries/Ruby/MacOs/X64/core/namespace_cache/namespace_cache.rb +0 -40
  1849. package/Binaries/Ruby/MacOs/X64/core/protocol/command_deserializer.rb +0 -178
  1850. package/Binaries/Ruby/MacOs/X64/core/protocol/command_serializer.rb +0 -30
  1851. package/Binaries/Ruby/MacOs/X64/core/protocol/type_deserializer.rb +0 -65
  1852. package/Binaries/Ruby/MacOs/X64/core/protocol/type_serializer.rb +0 -98
  1853. package/Binaries/Ruby/MacOs/X64/core/receiver/receiver.rb +0 -22
  1854. package/Binaries/Ruby/MacOs/X64/core/reference_cache/references_cache.rb +0 -33
  1855. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter.rb +0 -58
  1856. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1857. package/Binaries/Ruby/MacOs/X64/core/type_cache/type_cache.rb +0 -40
  1858. package/Binaries/Ruby/MacOs/X64/external_lib/random/formatter.rb +0 -373
  1859. package/Binaries/Ruby/MacOs/X64/external_lib/securerandom.rb +0 -96
  1860. package/Binaries/Ruby/MacOs/X64/external_lib/singleton.rb +0 -172
  1861. package/Binaries/Ruby/MacOs/X64/utils/command.rb +0 -93
  1862. package/Binaries/Ruby/MacOs/X64/utils/command_type.rb +0 -135
  1863. package/Binaries/Ruby/MacOs/X64/utils/connection_type.rb +0 -4
  1864. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_serializer.rb +0 -93
  1865. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_thrower.rb +0 -65
  1866. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_type.rb +0 -10
  1867. package/Binaries/Ruby/MacOs/X64/utils/runtime_logger.rb +0 -30
  1868. package/Binaries/Ruby/MacOs/X64/utils/runtime_name.rb +0 -11
  1869. package/Binaries/Ruby/MacOs/X64/utils/runtime_name_handler.rb +0 -34
  1870. package/Binaries/Ruby/MacOs/X64/utils/string_encoding_mode.rb +0 -6
  1871. package/Binaries/Ruby/MacOs/X64/utils/tcp_connection_data.rb +0 -37
  1872. package/Binaries/Ruby/MacOs/X64/utils/type.rb +0 -14
  1873. package/Binaries/Ruby/Windows/X64/core/handler/abstract_command_handler.rb +0 -24
  1874. package/Binaries/Ruby/Windows/X64/core/handler/abstract_handler.rb +0 -5
  1875. package/Binaries/Ruby/Windows/X64/core/handler/array_get_item_handler.rb +0 -47
  1876. package/Binaries/Ruby/Windows/X64/core/handler/array_get_rank_handler.rb +0 -23
  1877. package/Binaries/Ruby/Windows/X64/core/handler/array_get_size_handler.rb +0 -37
  1878. package/Binaries/Ruby/Windows/X64/core/handler/array_handler.rb +0 -12
  1879. package/Binaries/Ruby/Windows/X64/core/handler/array_set_item_handler.rb +0 -47
  1880. package/Binaries/Ruby/Windows/X64/core/handler/casting_handler.rb +0 -11
  1881. package/Binaries/Ruby/Windows/X64/core/handler/create_class_instance_handler.rb +0 -34
  1882. package/Binaries/Ruby/Windows/X64/core/handler/destruct_reference_handler.rb +0 -21
  1883. package/Binaries/Ruby/Windows/X64/core/handler/enable_namespace_handler.rb +0 -31
  1884. package/Binaries/Ruby/Windows/X64/core/handler/enable_type_handler.rb +0 -32
  1885. package/Binaries/Ruby/Windows/X64/core/handler/get_instance_field_handler.rb +0 -34
  1886. package/Binaries/Ruby/Windows/X64/core/handler/get_static_field_handler.rb +0 -34
  1887. package/Binaries/Ruby/Windows/X64/core/handler/get_type_handler.rb +0 -70
  1888. package/Binaries/Ruby/Windows/X64/core/handler/handler.rb +0 -111
  1889. package/Binaries/Ruby/Windows/X64/core/handler/handler_dictionary.rb +0 -8
  1890. package/Binaries/Ruby/Windows/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1891. package/Binaries/Ruby/Windows/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1892. package/Binaries/Ruby/Windows/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1893. package/Binaries/Ruby/Windows/X64/core/handler/load_library_handler.rb +0 -33
  1894. package/Binaries/Ruby/Windows/X64/core/handler/resolve_instance_handler.rb +0 -24
  1895. package/Binaries/Ruby/Windows/X64/core/handler/set_instance_field_handler.rb +0 -35
  1896. package/Binaries/Ruby/Windows/X64/core/handler/set_static_field_handler.rb +0 -31
  1897. package/Binaries/Ruby/Windows/X64/core/handler/value_handler.rb +0 -7
  1898. package/Binaries/Ruby/Windows/X64/core/interpreter/interpreter.rb +0 -25
  1899. package/Binaries/Ruby/Windows/X64/core/namespace_cache/namespace_cache.rb +0 -40
  1900. package/Binaries/Ruby/Windows/X64/core/protocol/command_deserializer.rb +0 -178
  1901. package/Binaries/Ruby/Windows/X64/core/protocol/command_serializer.rb +0 -30
  1902. package/Binaries/Ruby/Windows/X64/core/protocol/type_deserializer.rb +0 -65
  1903. package/Binaries/Ruby/Windows/X64/core/protocol/type_serializer.rb +0 -98
  1904. package/Binaries/Ruby/Windows/X64/core/receiver/receiver.rb +0 -22
  1905. package/Binaries/Ruby/Windows/X64/core/reference_cache/references_cache.rb +0 -33
  1906. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter.rb +0 -58
  1907. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1908. package/Binaries/Ruby/Windows/X64/core/type_cache/type_cache.rb +0 -40
  1909. package/Binaries/Ruby/Windows/X64/external_lib/random/formatter.rb +0 -373
  1910. package/Binaries/Ruby/Windows/X64/external_lib/securerandom.rb +0 -96
  1911. package/Binaries/Ruby/Windows/X64/external_lib/singleton.rb +0 -172
  1912. package/Binaries/Ruby/Windows/X64/utils/command.rb +0 -93
  1913. package/Binaries/Ruby/Windows/X64/utils/command_type.rb +0 -135
  1914. package/Binaries/Ruby/Windows/X64/utils/connection_type.rb +0 -4
  1915. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_serializer.rb +0 -93
  1916. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_thrower.rb +0 -65
  1917. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_type.rb +0 -10
  1918. package/Binaries/Ruby/Windows/X64/utils/runtime_logger.rb +0 -30
  1919. package/Binaries/Ruby/Windows/X64/utils/runtime_name.rb +0 -11
  1920. package/Binaries/Ruby/Windows/X64/utils/runtime_name_handler.rb +0 -34
  1921. package/Binaries/Ruby/Windows/X64/utils/string_encoding_mode.rb +0 -6
  1922. package/Binaries/Ruby/Windows/X64/utils/tcp_connection_data.rb +0 -37
  1923. package/Binaries/Ruby/Windows/X64/utils/type.rb +0 -14
  1924. package/Binaries/version.txt +0 -1
  1925. package/addon/JavonetNodejsRuntimeAddon.cpp +0 -299
  1926. package/addon/JavonetNodejsRuntimeAddon.h +0 -70
  1927. package/binding.gyp +0 -8
  1928. package/dist/Javonet.d.ts +0 -4821
  1929. package/dist/index.js +0 -66
  1930. package/dist/lib/core/delegatesCache/DelegatesCache.js +0 -35
  1931. package/dist/lib/core/handler/AbstractHandler.js +0 -41
  1932. package/dist/lib/core/handler/ArrayGetItemHandler.js +0 -38
  1933. package/dist/lib/core/handler/ArrayGetRankHandler.js +0 -28
  1934. package/dist/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  1935. package/dist/lib/core/handler/ArrayHandler.js +0 -18
  1936. package/dist/lib/core/handler/ArraySetItemHandler.js +0 -43
  1937. package/dist/lib/core/handler/CastingHandler.js +0 -10
  1938. package/dist/lib/core/handler/ConvertTypeHandler.js +0 -38
  1939. package/dist/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  1940. package/dist/lib/core/handler/DestructReferenceHandler.js +0 -19
  1941. package/dist/lib/core/handler/EnableNamespaceHandler.js +0 -34
  1942. package/dist/lib/core/handler/EnableTypeHandler.js +0 -35
  1943. package/dist/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  1944. package/dist/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  1945. package/dist/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  1946. package/dist/lib/core/handler/GetStaticFieldHandler.js +0 -36
  1947. package/dist/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  1948. package/dist/lib/core/handler/GetTypeHandler.js +0 -63
  1949. package/dist/lib/core/handler/Handler.js +0 -98
  1950. package/dist/lib/core/handler/InvokeDelegateHandler.js +0 -36
  1951. package/dist/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  1952. package/dist/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  1953. package/dist/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  1954. package/dist/lib/core/handler/LoadLibraryHandler.js +0 -48
  1955. package/dist/lib/core/handler/PassDelegateHandler.js +0 -157
  1956. package/dist/lib/core/handler/ResolveReferenceHandler.js +0 -13
  1957. package/dist/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  1958. package/dist/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  1959. package/dist/lib/core/handler/SetStaticFieldHandler.js +0 -33
  1960. package/dist/lib/core/handler/ValueHandler.js +0 -13
  1961. package/dist/lib/core/interpreter/Interpreter.js +0 -142
  1962. package/dist/lib/core/namespaceCache/NamespaceCache.js +0 -39
  1963. package/dist/lib/core/protocol/CommandDeserializer.js +0 -181
  1964. package/dist/lib/core/protocol/CommandSerializer.js +0 -50
  1965. package/dist/lib/core/protocol/TypeDeserializer.js +0 -83
  1966. package/dist/lib/core/protocol/TypeSerializer.js +0 -143
  1967. package/dist/lib/core/receiver/Receiver.js +0 -32
  1968. package/dist/lib/core/receiver/ReceiverNative.js +0 -13
  1969. package/dist/lib/core/referenceCache/ReferencesCache.js +0 -30
  1970. package/dist/lib/core/transmitter/Transmitter.js +0 -21
  1971. package/dist/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  1972. package/dist/lib/core/transmitter/TransmitterWrapper.js +0 -47
  1973. package/dist/lib/core/typeCache/TypeCache.js +0 -39
  1974. package/dist/lib/core/webSocketClient/WebSocketClient.js +0 -136
  1975. package/dist/lib/declarations.d.ts +0 -64
  1976. package/dist/lib/sdk/ConfigRuntimeFactory.js +0 -145
  1977. package/dist/lib/sdk/InvocationContext.js +0 -485
  1978. package/dist/lib/sdk/Javonet.js +0 -105
  1979. package/dist/lib/sdk/RuntimeContext.js +0 -300
  1980. package/dist/lib/sdk/RuntimeFactory.js +0 -78
  1981. package/dist/lib/sdk/tools/JsonFileResolver.js +0 -101
  1982. package/dist/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  1983. package/dist/lib/utils/Command.js +0 -69
  1984. package/dist/lib/utils/CommandType.js +0 -47
  1985. package/dist/lib/utils/ConnectionType.js +0 -8
  1986. package/dist/lib/utils/CustomError.js +0 -8
  1987. package/dist/lib/utils/ExceptionType.js +0 -13
  1988. package/dist/lib/utils/RuntimeLogger.js +0 -30
  1989. package/dist/lib/utils/RuntimeName.js +0 -14
  1990. package/dist/lib/utils/RuntimeNameHandler.js +0 -34
  1991. package/dist/lib/utils/StringEncodingMode.js +0 -9
  1992. package/dist/lib/utils/Type.js +0 -17
  1993. package/dist/lib/utils/TypesConverter.js +0 -91
  1994. package/dist/lib/utils/connectionData/IConnectionData.js +0 -15
  1995. package/dist/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  1996. package/dist/lib/utils/connectionData/TcpConnectionData.js +0 -77
  1997. package/dist/lib/utils/connectionData/WsConnectionData.js +0 -50
  1998. package/dist/lib/utils/exception/ExceptionSerializer.js +0 -64
  1999. package/dist/lib/utils/exception/ExceptionThrower.js +0 -95
  2000. package/dist/lib/utils/guid/generateGuid.js +0 -9
  2001. package/dist/lib/utils/uuid/REGEX.js +0 -2
  2002. package/dist/lib/utils/uuid/rng.js +0 -12
  2003. package/dist/lib/utils/uuid/stringify.js +0 -51
  2004. package/dist/lib/utils/uuid/v4.js +0 -27
  2005. package/dist/lib/utils/uuid/validate.js +0 -6
  2006. package/lib/sdk/tools/JsonFileResolver.js +0 -101
  2007. package/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2008. package/lib/utils/TypesConverter.js +0 -91
  2009. package/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2010. package/lib/utils/uuid/REGEX.js +0 -2
  2011. package/lib/utils/uuid/rng.js +0 -12
  2012. package/lib/utils/uuid/stringify.js +0 -51
  2013. package/lib/utils/uuid/v4.js +0 -27
  2014. package/lib/utils/uuid/validate.js +0 -6
package/dist/Javonet.d.ts DELETED
@@ -1,4821 +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
- }
193
- declare module "Binaries/Nodejs/lib/core/protocol/CommandSerializer" {
194
- export = CommandSerializer;
195
- class CommandSerializer {
196
- serialize(rootCommand: any, connectionData: any): Uint8Array<any>;
197
- serializeRecursively(command: any, buffers: any): void;
198
- }
199
- }
200
- declare module "Binaries/Nodejs/lib/utils/ConnectionType" {
201
- export let IN_MEMORY: 0;
202
- export let TCP: 1;
203
- export let WEB_SOCKET: 2;
204
- }
205
- declare module "Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient" {
206
- export = WebSocketClient;
207
- /**
208
- * WebSocketClient class that handles WebSocket connection, message sending, and automatic disconnection.
209
- */
210
- class WebSocketClient {
211
- /**
212
- * @param {string} url
213
- * @param {object} options
214
- */
215
- constructor(url: string, options: object);
216
- /**
217
- * @type {string}
218
- */
219
- url: string;
220
- /**
221
- * @type {WebSocket | null}
222
- */
223
- instance: WebSocket | null;
224
- /**
225
- * @type {boolean} isConnected indicates whether the WebSocket is connected.
226
- */
227
- isConnected: boolean;
228
- /**
229
- * @type {boolean}
230
- */
231
- isDisconnectedAfterMessage: boolean;
232
- /**
233
- * Connects to the WebSocket server.
234
- * @async
235
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
236
- */
237
- connect(): Promise<WebSocket>;
238
- /**
239
- * Sends messageArray through websocket connection
240
- * @async
241
- * @param {Buffer|ArrayBuffer|Buffer[]} messageArray
242
- * @returns {Promise<Buffer|ArrayBuffer|Buffer[]>}
243
- */
244
- send(messageArray: Buffer | ArrayBuffer | Buffer[]): Promise<Buffer | ArrayBuffer | Buffer[]>;
245
- /**
246
- * Disconnects the WebSocket by terminating the connection.
247
- */
248
- disconnect(): void;
249
- /**
250
- * Connects to the WebSocket server.
251
- * @private
252
- * @async
253
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
254
- */
255
- private _connect;
256
- }
257
- }
258
- declare module "Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket" {
259
- export = TransmitterWebsocket;
260
- /** @typedef {import('../../../../core/lib/declarations').WsConnectionData} WsConnectionData */
261
- class TransmitterWebsocket {
262
- /**
263
- * @returns {void}
264
- */
265
- static initialize(): void;
266
- /**
267
- * @returns {void}
268
- */
269
- static setConfigSource(): void;
270
- /**
271
- * @returns {void}
272
- */
273
- static activate(): void;
274
- /**
275
- * @async
276
- * @param {number[]} messageByteArray
277
- * @param {WsConnectionData} connectionData
278
- * @returns {Promise<number[]>} responseByteArray
279
- */
280
- static sendCommand(messageByteArray: number[], connectionData: WsConnectionData): Promise<number[]>;
281
- }
282
- namespace TransmitterWebsocket {
283
- export { WsConnectionData };
284
- }
285
- type WsConnectionData = any;
286
- }
287
- declare module "Binaries/Nodejs/lib/core/interpreter/Interpreter" {
288
- export = Interpreter;
289
- class Interpreter {
290
- handler: any;
291
- /**
292
- *
293
- * @param {Command} command
294
- * @param {IConnectionData} connectionData
295
- * @returns
296
- */
297
- executeAsync(command: Command, connectionData: IConnectionData): Promise<import("Binaries/Nodejs/lib/utils/Command") | undefined>;
298
- /**
299
- *
300
- * @param {Command} command
301
- * @param {WsConnectionData} connectionData
302
- * @returns {Promise<Command>}
303
- */
304
- execute(command: Command, connectionData: WsConnectionData): Promise<Command>;
305
- /**
306
- *
307
- * @param {number[]} messageByteArray
308
- * @returns {Command}
309
- */
310
- process(messageByteArray: number[]): Command;
311
- }
312
- namespace Interpreter {
313
- export { WsConnectionData };
314
- }
315
- type WsConnectionData = any;
316
- }
317
- declare module "Binaries/Nodejs/lib/utils/guid/generateGuid" {
318
- export = generateGUID;
319
- function generateGUID(): string;
320
- }
321
- declare module "Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache" {
322
- const _exports: DelegatesCache;
323
- export = _exports;
324
- /**
325
- * A cache for storing and retrieving delegates.
326
- */
327
- class DelegatesCache {
328
- cache: Map<any, any>;
329
- /**
330
- * Adds a delegate to the cache and returns its unique ID.
331
- * @param {Function} delegateInstance - The delegate function to store.
332
- * @returns {string} The unique ID for the delegate.
333
- */
334
- addDelegate(delegateInstance: Function): string;
335
- /**
336
- * Retrieves a delegate by its unique ID.
337
- * @param {string} delegateId - The unique ID of the delegate.
338
- * @returns {Function} The delegate function.
339
- * @throws {Error} If the delegate is not found.
340
- */
341
- getDelegate(delegateId: string): Function;
342
- }
343
- }
344
- declare module "Binaries/Nodejs/lib/utils/ExceptionType" {
345
- export let EXCEPTION: 0;
346
- export let IO_EXCEPTION: 1;
347
- export let FILE_NOT_FOUND_EXCEPTION: 2;
348
- export let RUNTIME_EXCEPTION: 3;
349
- export let ARITHMETIC_EXCEPTION: 4;
350
- export let ILLEGAL_ARGUMENT_EXCEPTION: 5;
351
- export let INDEX_OUT_OF_BOUNDS_EXCEPTION: 6;
352
- export let NULL_POINTER_EXCEPTION: 7;
353
- }
354
- declare module "Binaries/Nodejs/lib/utils/exception/ExceptionThrower" {
355
- export = ExceptionThrower;
356
- class ExceptionThrower {
357
- static throwException(commandException: any): Error;
358
- static serializeStack(stackTraceClasses: any, stackTraceMethods: any, stackTraceLines: any, stackTraceFiles: any): string;
359
- }
360
- }
361
- declare module "Binaries/Nodejs/lib/sdk/InvocationContext" {
362
- /**
363
- * InvocationContext is a class that represents a context for invoking commands.
364
- * It implements several interfaces for different types of interactions.
365
- * This class is used to construct chains of invocations, representing expressions of interaction that have not yet been executed.
366
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/invocation-context)
367
- * @class
368
- */
369
- export class InvocationContext {
370
- constructor(runtimeName: any, connectionData: any, command: any, isExecuted?: boolean);
371
- get_current_command(): any;
372
- /**
373
- * Executes the current command.
374
- * 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.
375
- * The non-materialized context wraps either single command or chain of recursively nested commands.
376
- * Commands are becoming nested through each invocation of methods on Invocation Context.
377
- * Each invocation triggers the creation of new Invocation Context instance wrapping the current command with new parent command valid for invoked method.
378
- * 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.
379
- * @returns {InvocationContext} the InvocationContext after executing the command.
380
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
381
- * @method
382
- */
383
- execute(): InvocationContext;
384
- /**
385
- * Invokes a static method on the target runtime.
386
- * @param {string} methodName - The name of the method to invoke.
387
- * @param {...any} args - Method arguments.
388
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the static method.
389
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/invoking-static-method)
390
- * @method
391
- */
392
- invokeStaticMethod(methodName: string, ...args: any[]): InvocationContext;
393
- /**
394
- * Retrieves the value of a static field from the target runtime.
395
- * @param {string} fieldName - The name of the field to get.
396
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the static field.
397
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-static-fields-and-properties)
398
- * @method
399
- */
400
- getStaticField(fieldName: string): InvocationContext;
401
- /**
402
- * Sets the value of a static field in the target runtime.
403
- * @param {string} fieldName - The name of the field to set.
404
- * @param {any} value - The new value of the field.
405
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the static field.
406
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-static-fields-and-properties)
407
- * @method
408
- */
409
- setStaticField(fieldName: string, value: any): InvocationContext;
410
- /**
411
- * Creates a new instance of a class in the target runtime.
412
- * @param {...any} args - The arguments to pass to the class constructor
413
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to create the instance.
414
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/creating-instance-and-calling-instance-methods)
415
- * @method
416
- */
417
- createInstance(...args: any[]): InvocationContext;
418
- /**
419
- * Retrieves the value of an instance field from the target runtime.
420
- * @param {string} fieldName - The name of the field to get.
421
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the instance field.
422
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-instance-fields-and-properties)
423
- * @method
424
- */
425
- getInstanceField(fieldName: string): InvocationContext;
426
- /**
427
- * Sets the value of an instance field in the target runtime.
428
- * @param {string} fieldName - The name of the field to set.
429
- * @param {any} value - The new value of the field.
430
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the instance field.
431
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-instance-fields-and-properties)
432
- * @method
433
- */
434
- setInstanceField(fieldName: string, value: any): InvocationContext;
435
- /**
436
- * Invokes an instance method on the target runtime.
437
- * @param {string} methodName - The name of the method to invoke.
438
- * @param {...any} args - Method arguments.
439
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the instance method.
440
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/invoking-instance-method)
441
- * @method
442
- */
443
- invokeInstanceMethod(methodName: string, ...args: any[]): InvocationContext;
444
- /**
445
- * Retrieves the value at a specific index in an array from the target runtime.
446
- * @param {...any} indexes - the arguments to pass to the array getter. The first argument should be the index.
447
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the index.
448
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
449
- * @method
450
- */
451
- getIndex(...indexes: any[]): InvocationContext;
452
- /**
453
- * Sets the value at a specific index in an array in the target runtime.
454
- * @param {number[]} indexes - The index to set the value at.
455
- * @param {any} value - The value to set at the index.
456
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the index.
457
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
458
- * @method
459
- */
460
- setIndex(indexes: number[], value: any): InvocationContext;
461
- /**
462
- * Retrieves the size of an array from the target runtime.
463
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the size.
464
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
465
- * @method
466
- */
467
- getSize(): InvocationContext;
468
- /**
469
- * Retrieves the rank of an array from the target runtime.
470
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the rank.
471
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
472
- * @method
473
- */
474
- getRank(): InvocationContext;
475
- /**
476
- * Invokes a generic static method on the target runtime.
477
- * @param {string} methodName - The name of the method to invoke.
478
- * @param {...any} args - Method arguments.
479
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the generic static method.
480
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/generics/calling-generic-static-method)
481
- * @method
482
- */
483
- invokeGenericStaticMethod(methodName: string, ...args: any[]): InvocationContext;
484
- /**
485
- * Invokes a generic method on the target runtime.
486
- * @param {string} methodName - The name of the method to invoke.
487
- * @param {...any} args - Method arguments.
488
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the generic method.
489
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/generics/calling-generic-instance-method)
490
- * @method
491
- */
492
- invokeGenericMethod(methodName: string, ...args: any[]): InvocationContext;
493
- /**
494
- * Retrieves the name of an enum from the target runtime.
495
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the enum name.
496
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
497
- * @method
498
- */
499
- getEnumName(): InvocationContext;
500
- /**
501
- * Retrieves the value of an enum from the target runtime.
502
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the enum value.
503
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
504
- * @method
505
- */
506
- getEnumValue(): InvocationContext;
507
- /**
508
- * Retrieves the value of a reference from the target runtime.
509
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the ref value.
510
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-ref-keyword)
511
- * @method
512
- */
513
- getRefValue(): InvocationContext;
514
- /**
515
- * Creates a null object of a specific type on the target runtime.
516
- *
517
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
518
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/null-handling/create-null-object)
519
- * @method
520
- */
521
- createNull(): InvocationContext;
522
- /**
523
- * Creates a null object of a specific type on the target runtime.
524
- * @param {string} methodName - The name of the method to invoke.
525
- * @param {...any} args - Method arguments.
526
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
527
- * TODO: connect documentation page url
528
- * @see [Javonet Guides](https://www.javonet.com/guides/)
529
- * @method
530
- */
531
- getStaticMethodAsDelegate(methodName: string, ...args: any[]): InvocationContext;
532
- /**
533
- * Creates a null object of a specific type on the target runtime.
534
- * @param {string} methodName - The name of the method to invoke.
535
- * @param {...any} args - Method arguments.
536
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
537
- * TODO: connect documentation page url
538
- * @see [Javonet Guides](https://www.javonet.com/guides/)
539
- * @method
540
- */
541
- getInstanceMethodAsDelegate(methodName: string, ...args: any[]): InvocationContext;
542
- /**
543
- * Retrieves an array from the target runtime.
544
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to retrieve the array.
545
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/retrieve-array)
546
- * @method
547
- */
548
- retrieveArray(): InvocationContext;
549
- /**
550
- * Returns the primitive value from the target runtime. This could be any primitive type in JavaScript,
551
- * such as int, boolean, byte, char, long, double, float, etc.
552
- * @returns {Command} The value of the current command.
553
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
554
- * @method
555
- */
556
- getValue(): Command;
557
- [Symbol.iterator]: () => {
558
- next: () => {
559
- value: any;
560
- done: boolean;
561
- };
562
- };
563
- #private;
564
- }
565
- export class InvocationWsContext extends InvocationContext {
566
- #private;
567
- }
568
- import Command = require("Binaries/Nodejs/lib/utils/Command");
569
- }
570
- declare module "Binaries/Nodejs/lib/sdk/RuntimeContext" {
571
- export = RuntimeContext;
572
- /**
573
- * Represents a single context which allows interaction with a selected technology.
574
- * Refers to a single instance of the called runtime within a particular target OS process.
575
- * 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.
576
- * Multiple Runtime Contexts can be initialized within one process.
577
- * Calling the same technology on inMemory communication channel will return the existing instance of runtime context.
578
- * Calling the same technology on TCP channel but on different nodes will result in unique Runtime Contexts.
579
- * 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.
580
- * @see [Javonet Guides]{@link https://www.javonet.com/guides/v2/javascript/foundations/runtime-context}
581
- * @class
582
- */
583
- class RuntimeContext {
584
- static memoryRuntimeContexts: Map<any, any>;
585
- static networkRuntimeContexts: Map<any, any>;
586
- static webSocketRuntimeContexts: Map<any, any>;
587
- static getGeneratorHandler(): any;
588
- static getInstance(runtimeName: any, connectionData: any): any;
589
- constructor(runtimeName: any, connectionData: any);
590
- runtimeName: any;
591
- connectionData: any;
592
- /**
593
- * Executes the current command. The initial state of RuntimeContext is non-materialized,
594
- * wrapping either a single command or a chain of recursively nested commands.
595
- * Commands become nested through each invocation of methods on RuntimeContext.
596
- * Each invocation triggers the creation of a new RuntimeContext instance wrapping the current command with a new parent command.
597
- * 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.
598
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
599
- * @method
600
- */
601
- execute(): void;
602
- /**
603
- * Adds a reference to a library. Javonet allows you to reference and use modules or packages written in various languages.
604
- * This method allows you to use any library from all supported technologies. The necessary libraries need to be referenced.
605
- * 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.
606
- * 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.
607
- * @param {string} libraryPath - The relative or full path to the library.
608
- * @returns {RuntimeContext} RuntimeContext instance.
609
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/adding-references-to-libraries)
610
- * @method
611
- */
612
- loadLibrary(libraryPath: string): RuntimeContext;
613
- /**
614
- * 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.
615
- * @param {string} typeName - The full name of the type.
616
- * @param {...any} args - The arguments to be passed, if needed
617
- * @returns {InvocationContext} InvocationContext instance, that wraps the command to get the type.
618
- * @method
619
- */
620
- getType(typeName: string, ...args: any[]): InvocationContext;
621
- /**
622
- * Casts the provided value to a specific type. This method is used when invoking methods that require specific types of arguments.
623
- * 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.
624
- * After casting the value, it can be used as an argument when invoking methods.
625
- * @param {...any} args - The target type and the value to be cast.
626
- * @returns {InvocationContext} InvocationContext instance that wraps the command to cast the value.
627
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/casting/casting)
628
- * @method
629
- */
630
- cast(...args: any[]): InvocationContext;
631
- /**
632
- * Retrieves a specific item from an enum type. This method is used when working with enums from the called runtime.
633
- * 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.
634
- * After retrieving the item, it can be used as an argument when invoking methods or for other operations.
635
- * @param {...any} args - The enum type and the name of the item.
636
- * @returns {InvocationContext} InvocationContext instance that wraps the command to get the enum item.
637
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
638
- * @method
639
- */
640
- getEnumItem(...args: any[]): InvocationContext;
641
- /**
642
- * 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.
643
- * 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.
644
- * After creating the reference, it can be used as an argument when invoking methods.
645
- * @param {...any} args - The value and optionally the type of the reference.
646
- * @returns {InvocationContext} InvocationContext instance that wraps the command to create a reference as ref.
647
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-ref-keyword)
648
- * @method
649
- */
650
- asRef(...args: any[]): InvocationContext;
651
- /**
652
- * 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.
653
- * 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.
654
- * After creating the reference, it can be used as an argument when invoking methods.
655
- * @param {...any} args - The value and optionally the type of the reference.
656
- * @returns {InvocationContext} InvocationContext instance that wraps the command to create a reference as out.
657
- * @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)
658
- * @method
659
- */
660
- asOut(...args: any[]): InvocationContext;
661
- /**
662
- * Invokes a function from the called runtime. This method is used when working with functions from the called runtime.
663
- * The arguments include the function name and the arguments to be passed to the function.
664
- * After invoking the function, the result can be used for further operations.
665
- * @param {string} functionName - The name of the function to invoke.
666
- * @param {...any} args - The arguments to be passed to the function.
667
- * @returns {InvocationContext} InvocationContext instance that wraps the command to invoke the function.
668
- * @see [Invoking Functions Guide](https://www.javonet.com/guides/v2/csharp/functions/invoking-functions)
669
- * @method
670
- */
671
- invokeGlobalFunction(functionName: string, ...args: any[]): InvocationContext;
672
- healthCheck(): void;
673
- #private;
674
- }
675
- import { InvocationContext } from "Binaries/Nodejs/lib/sdk/InvocationContext";
676
- }
677
- declare module "Binaries/Nodejs/lib/sdk/RuntimeFactory" {
678
- export = RuntimeFactory;
679
- /**
680
- * The RuntimeFactory class provides methods for creating runtime contexts.
681
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
682
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
683
- */
684
- class RuntimeFactory {
685
- constructor(connectionData: any);
686
- connectionData: any;
687
- /**
688
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
689
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
690
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
691
- */
692
- clr(): RuntimeContext;
693
- /**
694
- * Creates RuntimeContext instance to interact with the JVM runtime.
695
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
696
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
697
- */
698
- jvm(): RuntimeContext;
699
- /**
700
- * Creates RuntimeContext instance to interact with the .NET runtime.
701
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
702
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
703
- */
704
- netcore(): RuntimeContext;
705
- /**
706
- * Creates RuntimeContext instance to interact with the Perl runtime.
707
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
708
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
709
- */
710
- perl(): RuntimeContext;
711
- /**
712
- * Creates RuntimeContext instance to interact with the Python runtime.
713
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
714
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
715
- */
716
- python(): RuntimeContext;
717
- /**
718
- * Creates RuntimeContext instance to interact with the Ruby runtime.
719
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
720
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
721
- */
722
- ruby(): RuntimeContext;
723
- /**
724
- * Creates RuntimeContext instance to interact with Node.js runtime.
725
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
726
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
727
- */
728
- nodejs(): RuntimeContext;
729
- }
730
- import RuntimeContext = require("Binaries/Nodejs/lib/sdk/RuntimeContext");
731
- }
732
- declare module "Binaries/Nodejs/lib/utils/RuntimeNameHandler" {
733
- export = RuntimeNameHandler;
734
- class RuntimeNameHandler {
735
- /**
736
- * @param {number} runtimeName
737
- * @returns {string}
738
- */
739
- static getName(runtimeName: number): string;
740
- }
741
- }
742
- declare module "Binaries/Nodejs/lib/utils/connectionData/IConnectionData" {
743
- export = IConnectionData;
744
- class IConnectionData {
745
- get connectionType(): void;
746
- get hostname(): void;
747
- serializeConnectionData(): void;
748
- }
749
- }
750
- declare module "Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData" {
751
- export = InMemoryConnectionData;
752
- /**
753
- * @extends IConnectionData
754
- */
755
- class InMemoryConnectionData extends IConnectionData {
756
- _connectionType: 0;
757
- _hostname: string;
758
- get connectionType(): 0;
759
- get hostname(): string;
760
- serializeConnectionData(): number[];
761
- /**
762
- * @param {InMemoryConnectionData} other
763
- * @returns {boolean}
764
- */
765
- equals(other: InMemoryConnectionData): boolean;
766
- }
767
- import IConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/IConnectionData");
768
- }
769
- declare module "Binaries/Nodejs/lib/utils/connectionData/WsConnectionData" {
770
- export = WsConnectionData;
771
- /** @typedef {import('../../declarations').ConnectionType} ConnectionType */
772
- /**
773
- * Represents WebSocket connection data.
774
- * @extends IConnectionData
775
- */
776
- class WsConnectionData extends IConnectionData {
777
- /**
778
- * @param {string} hostname - The hostname of the connection.
779
- */
780
- constructor(hostname: string);
781
- /** @private @type {string} */
782
- private _hostname;
783
- /** @private @type {ConnectionType} */
784
- private _connectionType;
785
- /** @type {ConnectionType} */
786
- get connectionType(): ConnectionType;
787
- /** @type {string} */
788
- set hostname(value: string);
789
- /** @type {string} */
790
- get hostname(): string;
791
- /**
792
- * Serializes the connection data.
793
- * @returns {number[]} An array of connection data values.
794
- */
795
- serializeConnectionData(): number[];
796
- equals(other: any): boolean;
797
- }
798
- namespace WsConnectionData {
799
- export { ConnectionType };
800
- }
801
- import IConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/IConnectionData");
802
- type ConnectionType = import("Binaries/Nodejs/lib/declarations").ConnectionType;
803
- }
804
- declare module "Binaries/Nodejs/lib/utils/exception/ExceptionSerializer" {
805
- export = ExceptionSerializer;
806
- class ExceptionSerializer {
807
- static serializeException(exception: any, command: any): Command;
808
- static getExceptionCode(exception: any): 0 | 5 | 6;
809
- static serializeStackTrace(exception: any, stackClasses: any, stackMethods: any, stackLines: any, stackFiles: any): void;
810
- }
811
- import Command = require("Binaries/Nodejs/lib/utils/Command");
812
- }
813
- declare module "Binaries/Nodejs/index" {
814
- import CommandSerializer = require("Binaries/Nodejs/lib/core/protocol/CommandSerializer");
815
- import CommandDeserializer = require("Binaries/Nodejs/lib/core/protocol/CommandDeserializer");
816
- import TypeDeserializer = require("Binaries/Nodejs/lib/core/protocol/TypeDeserializer");
817
- import TypeSerializer = require("Binaries/Nodejs/lib/core/protocol/TypeSerializer");
818
- import Interpreter = require("Binaries/Nodejs/lib/core/interpreter/Interpreter");
819
- import DelegatesCache = require("Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache");
820
- import { InvocationContext } from "Binaries/Nodejs/lib/sdk/InvocationContext";
821
- import { InvocationWsContext } from "Binaries/Nodejs/lib/sdk/InvocationContext";
822
- import RuntimeContext = require("Binaries/Nodejs/lib/sdk/RuntimeContext");
823
- import RuntimeFactory = require("Binaries/Nodejs/lib/sdk/RuntimeFactory");
824
- import Command = require("Binaries/Nodejs/lib/utils/Command");
825
- import CommandType = require("Binaries/Nodejs/lib/utils/CommandType");
826
- import ConnectionType = require("Binaries/Nodejs/lib/utils/ConnectionType");
827
- import ExceptionType = require("Binaries/Nodejs/lib/utils/ExceptionType");
828
- import RuntimeName = require("Binaries/Nodejs/lib/utils/RuntimeName");
829
- import RuntimeNameHandler = require("Binaries/Nodejs/lib/utils/RuntimeNameHandler");
830
- import StringEncodingMode = require("Binaries/Nodejs/lib/utils/StringEncodingMode");
831
- import Type = require("Binaries/Nodejs/lib/utils/Type");
832
- import IConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/IConnectionData");
833
- import InMemoryConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData");
834
- import WsConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/WsConnectionData");
835
- import ExceptionSerializer = require("Binaries/Nodejs/lib/utils/exception/ExceptionSerializer");
836
- import ExceptionThrower = require("Binaries/Nodejs/lib/utils/exception/ExceptionThrower");
837
- export { CommandSerializer, CommandDeserializer, TypeDeserializer, TypeSerializer, Interpreter, DelegatesCache, InvocationContext, InvocationWsContext, RuntimeContext, RuntimeFactory, Command, CommandType, ConnectionType, ExceptionType, RuntimeName, RuntimeNameHandler, StringEncodingMode, Type, IConnectionData, InMemoryConnectionData, WsConnectionData, ExceptionSerializer, ExceptionThrower };
838
- }
839
- declare module "Binaries/Nodejs/lib/core/handler/AbstractHandler" {
840
- export = AbstractHandler;
841
- class AbstractHandler {
842
- handlers: any[];
843
- process(command: any): void;
844
- handleCommand(command: any): void;
845
- iterate(cmd: any): void;
846
- process_stack_trace(error: any, class_name: any): any;
847
- }
848
- }
849
- declare module "Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler" {
850
- const _exports: ArrayGetItemHandler;
851
- export = _exports;
852
- class ArrayGetItemHandler extends AbstractHandler {
853
- requiredParametersCount: number;
854
- process(command: any): any;
855
- }
856
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
857
- }
858
- declare module "Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler" {
859
- const _exports: ArrayGetRankHandler;
860
- export = _exports;
861
- class ArrayGetRankHandler extends AbstractHandler {
862
- requiredParametersCount: number;
863
- process(command: any): number;
864
- }
865
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
866
- }
867
- declare module "Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler" {
868
- const _exports: ArrayGetSizeHandler;
869
- export = _exports;
870
- class ArrayGetSizeHandler extends AbstractHandler {
871
- requiredParametersCount: number;
872
- process(command: any): number;
873
- }
874
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
875
- }
876
- declare module "Binaries/Nodejs/lib/core/handler/ArrayHandler" {
877
- const _exports: ArrayHandler;
878
- export = _exports;
879
- class ArrayHandler extends AbstractHandler {
880
- process(command: any): any;
881
- }
882
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
883
- }
884
- declare module "Binaries/Nodejs/lib/core/handler/ArraySetItemHandler" {
885
- const _exports: ArraySetItemHandler;
886
- export = _exports;
887
- class ArraySetItemHandler extends AbstractHandler {
888
- requiredParametersCount: number;
889
- process(command: any): number;
890
- }
891
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
892
- }
893
- declare module "Binaries/Nodejs/lib/core/handler/CastingHandler" {
894
- const _exports: CastingHandler;
895
- export = _exports;
896
- class CastingHandler extends AbstractHandler {
897
- }
898
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
899
- }
900
- declare module "Binaries/Nodejs/lib/utils/TypesConverter" {
901
- /**
902
- * ConvertTypeHandler class handles the conversion of JType to Type.
903
- */
904
- export class ConvertTypeHandler {
905
- /**
906
- * Minimum required parameters count for the command.
907
- * @type {number}
908
- */
909
- requiredParametersCount: number;
910
- /**
911
- * Processes the given command to convert JType to Type.
912
- * @param {Object} command - The command to process.
913
- * @returns {any} The converted type.
914
- */
915
- process(command: Object): any;
916
- /**
917
- * Validates the command to ensure it has enough parameters.
918
- * @param {Object} command - The command to validate.
919
- */
920
- validateCommand(command: Object): void;
921
- }
922
- /**
923
- * TypesConverter class provides utilities for converting between types.
924
- */
925
- export class TypesConverter {
926
- /**
927
- * Converts a JavaScript type to a JType equivalent.
928
- * @param {Function} type - The JavaScript type.
929
- * @returns {number} The corresponding JType.
930
- */
931
- static convertTypeToJType(type: Function): number;
932
- /**
933
- * Converts a JType to a JavaScript type equivalent.
934
- * @param {number} type - The JType to convert.
935
- * @returns {Function} The corresponding JavaScript type.
936
- */
937
- static convertJTypeToType(type: number): Function;
938
- }
939
- /**
940
- * Enum for JType mappings.
941
- */
942
- export type JType = number;
943
- export namespace JType {
944
- let Boolean: number;
945
- let Float: number;
946
- let String: number;
947
- let Null: number;
948
- }
949
- }
950
- declare module "Binaries/Nodejs/lib/core/handler/ConvertTypeHandler" {
951
- export = ConvertTypeHandler;
952
- /**
953
- * ConvertTypeHandler class handles the conversion of JType to Type.
954
- */
955
- class ConvertTypeHandler extends AbstractHandler {
956
- /**
957
- * Minimum required parameters count for the command.
958
- * @type {number}
959
- */
960
- requiredParametersCount: number;
961
- /**
962
- * Processes the given command to convert JType to Type.
963
- * @param {Object} command - The command to process.
964
- * @returns {any} The converted type.
965
- */
966
- process(command: Object): any;
967
- /**
968
- * Validates the command to ensure it has enough parameters.
969
- * @param {Object} command - The command to validate.
970
- */
971
- validateCommand(command: Object): void;
972
- }
973
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
974
- }
975
- declare module "Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler" {
976
- const _exports: CreateClassInstanceHandler;
977
- export = _exports;
978
- class CreateClassInstanceHandler extends AbstractHandler {
979
- requiredParametersCount: number;
980
- process(command: any): any;
981
- }
982
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
983
- }
984
- declare module "Binaries/Nodejs/lib/utils/uuid/rng" {
985
- function _exports(): Uint8Array<ArrayBuffer>;
986
- export = _exports;
987
- }
988
- declare module "Binaries/Nodejs/lib/utils/uuid/REGEX" {
989
- const _exports: RegExp;
990
- export = _exports;
991
- }
992
- declare module "Binaries/Nodejs/lib/utils/uuid/validate" {
993
- export = validate;
994
- function validate(uuid: any): boolean;
995
- }
996
- declare module "Binaries/Nodejs/lib/utils/uuid/stringify" {
997
- export = stringify;
998
- function stringify(arr: any, offset?: number): string;
999
- }
1000
- declare module "Binaries/Nodejs/lib/utils/uuid/v4" {
1001
- export = v4;
1002
- function v4(options: any, buf: any, offset: any): any;
1003
- }
1004
- declare module "Binaries/Nodejs/lib/core/referenceCache/ReferencesCache" {
1005
- export = ReferencesCache;
1006
- class ReferencesCache {
1007
- static getInstance(): any;
1008
- cacheReference(reference: any): any;
1009
- resolveReference(id: any): any;
1010
- deleteReference(referenceGuid: any): number;
1011
- }
1012
- }
1013
- declare module "Binaries/Nodejs/lib/core/handler/DestructReferenceHandler" {
1014
- const _exports: DestructReferenceHandler;
1015
- export = _exports;
1016
- class DestructReferenceHandler extends AbstractHandler {
1017
- process(command: any): any;
1018
- }
1019
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1020
- }
1021
- declare module "Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache" {
1022
- export = NamespaceCache;
1023
- class NamespaceCache {
1024
- static _instance: null;
1025
- namespaceCache: any[];
1026
- cacheNamespace(namespaceRegex: any): void;
1027
- isNamespaceCacheEmpty(): boolean;
1028
- isTypeAllowed(typeToCheck: any): boolean;
1029
- getCachedNamespaces(): any[];
1030
- clearCache(): number;
1031
- }
1032
- }
1033
- declare module "Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler" {
1034
- const _exports: EnableNamespaceHandler;
1035
- export = _exports;
1036
- class EnableNamespaceHandler extends AbstractHandler {
1037
- requiredParametersCount: number;
1038
- process(command: any): number;
1039
- }
1040
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1041
- }
1042
- declare module "Binaries/Nodejs/lib/core/typeCache/TypeCache" {
1043
- export = TypeCache;
1044
- class TypeCache {
1045
- static _instance: null;
1046
- typeCache: any[];
1047
- cacheType(typRegex: any): void;
1048
- isTypeCacheEmpty(): boolean;
1049
- isTypeAllowed(typeToCheck: any): boolean;
1050
- getCachedTypes(): any[];
1051
- clearCache(): number;
1052
- }
1053
- }
1054
- declare module "Binaries/Nodejs/lib/core/handler/EnableTypeHandler" {
1055
- const _exports: EnableTypeHandler;
1056
- export = _exports;
1057
- class EnableTypeHandler extends AbstractHandler {
1058
- requiredParametersCount: number;
1059
- process(command: any): number;
1060
- }
1061
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1062
- }
1063
- declare module "Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler" {
1064
- const _exports: GetGlobalStaticFieldHandler;
1065
- export = _exports;
1066
- class GetGlobalStaticFieldHandler extends AbstractHandler {
1067
- requiredParametersCount: number;
1068
- process(command: any): any;
1069
- }
1070
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1071
- }
1072
- declare module "Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler" {
1073
- const _exports: GetInstanceFieldHandler;
1074
- export = _exports;
1075
- class GetInstanceFieldHandler extends AbstractHandler {
1076
- requiredParametersCount: number;
1077
- process(command: any): any;
1078
- }
1079
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1080
- }
1081
- declare module "Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler" {
1082
- const _exports: GetInstanceMethodAsDelegateHandler;
1083
- export = _exports;
1084
- /**
1085
- * Handles retrieving an instance method as a delegate.
1086
- */
1087
- class GetInstanceMethodAsDelegateHandler extends AbstractHandler {
1088
- /** @type {Function|null} */
1089
- method: Function | null;
1090
- /** @type {number} */
1091
- requiredParametersCount: number;
1092
- /** @type {Array<*>} */
1093
- args: Array<any>;
1094
- /** @type {Object|null} */
1095
- instance: Object | null;
1096
- /**
1097
- * Processes a command to retrieve an instance method as a delegate.
1098
- * @param {Object} command - The command containing payload data.
1099
- * @param {Array<*>} command.payload - The payload containing instance, method name, and arguments.
1100
- * @returns {Function} The delegate for the instance method.
1101
- * @throws {Error} If the parameters mismatch or the method cannot be found.
1102
- */
1103
- process(command: {
1104
- payload: Array<any>;
1105
- }): Function;
1106
- /**
1107
- * Retrieves the method from the type.
1108
- * @param {Object} type - The class or constructor to search for the method.
1109
- * @param {string} methodName - The name of the method.
1110
- * @returns {Function|null} The found method or null if not found.
1111
- */
1112
- getMethod(type: Object, methodName: string): Function | null;
1113
- /**
1114
- * Creates an error message when the method is not found.
1115
- * @param {Object} type - The class or constructor.
1116
- * @param {string} methodName - The method name.
1117
- * @returns {Error} The error with detailed message.
1118
- */
1119
- createMethodNotFoundError(type: Object, methodName: string): Error;
1120
- }
1121
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1122
- }
1123
- declare module "Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler" {
1124
- const _exports: GetStaticFieldHandler;
1125
- export = _exports;
1126
- class GetStaticFieldHandler extends AbstractHandler {
1127
- requiredParametersCount: number;
1128
- process(command: any): any;
1129
- }
1130
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1131
- }
1132
- declare module "Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler" {
1133
- const _exports: GetStaticMethodAsDelegateHandler;
1134
- export = _exports;
1135
- /**
1136
- * Handles retrieving a static method as a delegate.
1137
- */
1138
- class GetStaticMethodAsDelegateHandler extends AbstractHandler {
1139
- /** @type {Array<*>} */
1140
- args: Array<any>;
1141
- /** @type {Function|null} */
1142
- method: Function | null;
1143
- /** @type {number} */
1144
- requiredParametersCount: number;
1145
- /**
1146
- * Processes a command to retrieve a static method as a delegate.
1147
- * @param {Command} command - The command containing payload data.
1148
- * @param {Array<*>} command.payload - The payload containing type, method name, and arguments.
1149
- * @returns {Function} The delegate for the static method.
1150
- * @throws {Error} If the parameters mismatch or the method cannot be found.
1151
- */
1152
- process(command: Command): Function;
1153
- /**
1154
- * Retrieves the method from the type.
1155
- * @param {Object} type - The class or constructor to search for the method.
1156
- * @param {string} methodName - The name of the method.
1157
- * @param {Array<Function>} argsType - The argument types.
1158
- * @param {Object} modifier - Parameter modifier (not used in JS implementation).
1159
- * @returns {Function|null} The found method or null if not found.
1160
- */
1161
- getMethod(type: Object, methodName: string): Function | null;
1162
- /**
1163
- * Creates an error message when the method is not found.
1164
- * @param {Object} type - The class or constructor.
1165
- * @param {string} methodName - The method name.
1166
- * @returns {Error} The error with detailed message.
1167
- */
1168
- createMethodNotFoundError(type: Object, methodName: string): Error;
1169
- }
1170
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1171
- import { Command } from "Binaries/Nodejs";
1172
- }
1173
- declare module "Binaries/Nodejs/lib/core/handler/LoadLibraryHandler" {
1174
- const _exports: LoadLibraryHandler;
1175
- export = _exports;
1176
- class LoadLibraryHandler extends AbstractHandler {
1177
- static loadedLibraries: any[];
1178
- requiredParametersCount: number;
1179
- process(command: any): number;
1180
- getLoadedLibraries(): any[];
1181
- }
1182
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1183
- }
1184
- declare module "Binaries/Nodejs/lib/core/handler/GetTypeHandler" {
1185
- const _exports: GetTypeHandler;
1186
- export = _exports;
1187
- class GetTypeHandler extends AbstractHandler {
1188
- requiredParametersCount: number;
1189
- namespaceCache: NamespaceCache;
1190
- typeCache: TypeCache;
1191
- process(command: any): any;
1192
- getAvailableTypes(): any[];
1193
- }
1194
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1195
- import NamespaceCache = require("Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache");
1196
- import TypeCache = require("Binaries/Nodejs/lib/core/typeCache/TypeCache");
1197
- }
1198
- declare module "Binaries/Nodejs/lib/core/handler/ValueHandler" {
1199
- const _exports: ValueHandler;
1200
- export = _exports;
1201
- class ValueHandler extends AbstractHandler {
1202
- process(command: any): any;
1203
- }
1204
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1205
- }
1206
- declare module "Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler" {
1207
- const _exports: InvokeStaticMethodHandler;
1208
- export = _exports;
1209
- class InvokeStaticMethodHandler extends AbstractHandler {
1210
- requiredParametersCount: number;
1211
- process(command: any): any;
1212
- }
1213
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1214
- }
1215
- declare module "Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler" {
1216
- const _exports: SetStaticFieldHandler;
1217
- export = _exports;
1218
- class SetStaticFieldHandler extends AbstractHandler {
1219
- requiredParametersCount: number;
1220
- process(command: any): number;
1221
- }
1222
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1223
- }
1224
- declare module "Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler" {
1225
- const _exports: ResolveReferenceHandler;
1226
- export = _exports;
1227
- class ResolveReferenceHandler extends AbstractHandler {
1228
- process(command: any): any;
1229
- }
1230
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1231
- }
1232
- declare module "Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler" {
1233
- const _exports: SetInstanceFieldHandler;
1234
- export = _exports;
1235
- class SetInstanceFieldHandler extends AbstractHandler {
1236
- requiredParametersCount: number;
1237
- process(command: any): number;
1238
- }
1239
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1240
- }
1241
- declare module "Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler" {
1242
- const _exports: InvokeInstanceMethodHandler;
1243
- export = _exports;
1244
- class InvokeInstanceMethodHandler extends AbstractHandler {
1245
- requiredParametersCount: number;
1246
- process(command: any): any;
1247
- }
1248
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1249
- }
1250
- declare module "Binaries/Nodejs/lib/core/handler/PassDelegateHandler" {
1251
- const _exports: PassDelegateHandler;
1252
- export = _exports;
1253
- /**
1254
- * PassDelegateHandler class responsible for processing a command to create a delegate.
1255
- */
1256
- class PassDelegateHandler extends AbstractHandler {
1257
- /**
1258
- * Minimum required parameters count for the command.
1259
- * @type {number}
1260
- */
1261
- requiredParametersCount: number;
1262
- interpreter: Interpreter;
1263
- /**
1264
- * Processes the given command to create and compile a delegate.
1265
- * @param {Command} command - The command to process.
1266
- * @returns {Function} The compiled delegate function.
1267
- */
1268
- process(command: Command): Function;
1269
- /**
1270
- * Validates the command to ensure it has enough parameters.
1271
- * @param {Command} command - The command to validate.
1272
- */
1273
- validateCommand(command: Command): void;
1274
- /**
1275
- * Retrieves the arguments from the command payload.
1276
- * @param {Command} command - The command containing the payload.
1277
- * @returns {Array} The extracted arguments.
1278
- */
1279
- getArguments(command: Command): any[];
1280
- /**
1281
- * Extracts argument types from the arguments array.
1282
- * @param {Array} args - The arguments array.
1283
- * @returns {Array} The argument types.
1284
- */
1285
- getArgumentTypes(args: any[]): any[];
1286
- /**
1287
- * Retrieves the return type from the arguments array.
1288
- * @param {Array} args - The arguments array.
1289
- * @returns {Function} The return type.
1290
- */
1291
- getReturnType(args: any[]): Function;
1292
- /**
1293
- * Creates parameter expressions from argument types.
1294
- * @param {Array} argsTypes - The argument types.
1295
- * @returns {Array} The parameter expressions.
1296
- */
1297
- createParameters(argsTypes: any[]): any[];
1298
- /**
1299
- * Creates an array of arguments for the delegate.
1300
- * @param {string} delegateGuid - The delegate identifier.
1301
- * @param {Array} parameters - The parameter expressions.
1302
- * @returns {Array} The arguments array.
1303
- */
1304
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
1305
- /**
1306
- * Creates a command expression.
1307
- * @param {string} callingRuntimeName - The runtime name.
1308
- * @param {Array} payload - The arguments array.
1309
- * @returns {Object} The command object.
1310
- */
1311
- createCommand(callingRuntimeName: string, payload: any[]): Object;
1312
- /**
1313
- * Creates a method call to execute the command.
1314
- * @param {Command} command - The command object.
1315
- * @returns {Object} The response object.
1316
- */
1317
- createExecuteCall(command: Command): Object;
1318
- /**
1319
- * Retrieves the response payload from the execution call.
1320
- * @param {Object} executeCall - The execution call.
1321
- * @returns {Array} The response payload.
1322
- */
1323
- getResponse(executeCall: Object): any[];
1324
- /**
1325
- * Converts the first element of the response to the return type.
1326
- * @param {Array} response - The response payload.
1327
- * @param {Function} returnType - The return type.
1328
- * @returns {*} The converted first element.
1329
- */
1330
- convertFirstElement(response: any[], returnType: Function): any;
1331
- /**
1332
- * Creates a block of expressions for the delegate.
1333
- * @param {Function} returnType - The return type.
1334
- * @param {*} convertedFirstElement - The converted first element.
1335
- * @returns {Object} The block expression.
1336
- */
1337
- createBlock(returnType: Function, convertedFirstElement: any): Object;
1338
- /**
1339
- * Creates a delegate type.
1340
- * @param {Array} parameters - The parameter expressions.
1341
- * @param {Function} returnType - The return type.
1342
- * @returns {Function} The delegate type.
1343
- */
1344
- createDelegateType(parameters: any[], returnType: Function): Function;
1345
- }
1346
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1347
- import { Interpreter } from "Binaries/Nodejs";
1348
- import { Command } from "Binaries/Nodejs";
1349
- }
1350
- declare module "Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler" {
1351
- const _exports: InvokeDelegateHandler;
1352
- export = _exports;
1353
- /**
1354
- * Handles invoking a delegate by GUID.
1355
- */
1356
- class InvokeDelegateHandler extends AbstractHandler {
1357
- /** @type {number} */
1358
- requiredParametersCount: number;
1359
- /**
1360
- * Processes a command to invoke a delegate.
1361
- * @param {Command} command - The command containing payload data.
1362
- * @returns {*} The result of the delegate invocation.
1363
- * @throws {Error} If the parameters mismatch or the delegate cannot be found.
1364
- */
1365
- process(command: Command): any;
1366
- }
1367
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1368
- }
1369
- declare module "Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler" {
1370
- const _exports: InvokeGlobalFunctionHandler;
1371
- export = _exports;
1372
- class InvokeGlobalFunctionHandler extends AbstractHandler {
1373
- requiredParametersCount: number;
1374
- process(command: any): any;
1375
- }
1376
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1377
- }
1378
- declare module "Binaries/Nodejs/lib/core/handler/Handler" {
1379
- export class Handler {
1380
- handleCommand(command: any): Command;
1381
- parseCommand(response: any, runtimeName: any): Command;
1382
- }
1383
- export const handlers: {
1384
- 0: {
1385
- process(command: any): any;
1386
- handlers: any[];
1387
- handleCommand(command: any): void;
1388
- iterate(cmd: any): void;
1389
- process_stack_trace(error: any, class_name: any): any;
1390
- };
1391
- 1: {
1392
- requiredParametersCount: number;
1393
- process(command: any): number;
1394
- getLoadedLibraries(): any[];
1395
- handlers: any[];
1396
- handleCommand(command: any): void;
1397
- iterate(cmd: any): void;
1398
- process_stack_trace(error: any, class_name: any): any;
1399
- };
1400
- 2: {
1401
- requiredParametersCount: number;
1402
- process(command: any): 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
- 6: {
1409
- requiredParametersCount: number;
1410
- namespaceCache: import("Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache");
1411
- typeCache: import("Binaries/Nodejs/lib/core/typeCache/TypeCache");
1412
- process(command: any): any;
1413
- getAvailableTypes(): any[];
1414
- handlers: any[];
1415
- handleCommand(command: any): void;
1416
- iterate(cmd: any): void;
1417
- process_stack_trace(error: any, class_name: any): any;
1418
- };
1419
- 3: {
1420
- requiredParametersCount: number;
1421
- process(command: any): 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
- 4: {
1428
- requiredParametersCount: number;
1429
- process(command: any): number;
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
- 5: {
1436
- requiredParametersCount: number;
1437
- process(command: any): any;
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
- 7: {
1444
- process(command: any): any;
1445
- handlers: any[];
1446
- handleCommand(command: any): void;
1447
- iterate(cmd: any): void;
1448
- process_stack_trace(error: any, class_name: any): any;
1449
- };
1450
- 12: {
1451
- process(command: any): void;
1452
- handlers: any[];
1453
- handleCommand(command: any): void;
1454
- iterate(cmd: any): void;
1455
- process_stack_trace(error: any, class_name: any): any;
1456
- };
1457
- 13: {
1458
- requiredParametersCount: number;
1459
- process(command: any): any;
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
- 25: {
1466
- requiredParametersCount: number;
1467
- process(command: any): number;
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
- 9: {
1474
- requiredParametersCount: number;
1475
- process(command: any): any;
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
- 17: {
1482
- process(command: any): any;
1483
- handlers: any[];
1484
- handleCommand(command: any): void;
1485
- iterate(cmd: any): void;
1486
- process_stack_trace(error: any, class_name: any): any;
1487
- };
1488
- 19: {
1489
- requiredParametersCount: number;
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
- 20: {
1497
- requiredParametersCount: number;
1498
- process(command: any): number;
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
- 21: {
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
- 22: {
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
- 23: {
1521
- process(command: any): any;
1522
- handlers: any[];
1523
- handleCommand(command: any): void;
1524
- iterate(cmd: any): void;
1525
- process_stack_trace(error: any, class_name: any): any;
1526
- };
1527
- 34: {
1528
- requiredParametersCount: number;
1529
- process(command: any): number;
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
- 35: {
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
- 37: {
1544
- args: Array<any>;
1545
- method: Function | null;
1546
- requiredParametersCount: number;
1547
- process(command: Command): Function;
1548
- getMethod(type: Object, methodName: string): Function | null;
1549
- createMethodNotFoundError(type: Object, methodName: string): Error;
1550
- handlers: any[];
1551
- handleCommand(command: any): void;
1552
- iterate(cmd: any): void;
1553
- process_stack_trace(error: any, class_name: any): any;
1554
- };
1555
- 38: {
1556
- method: Function | null;
1557
- requiredParametersCount: number;
1558
- args: Array<any>;
1559
- instance: Object | null;
1560
- process(command: {
1561
- payload: Array<any>;
1562
- }): Function;
1563
- getMethod(type: Object, methodName: string): Function | null;
1564
- createMethodNotFoundError(type: Object, methodName: string): Error;
1565
- handlers: any[];
1566
- handleCommand(command: any): void;
1567
- iterate(cmd: any): void;
1568
- process_stack_trace(error: any, class_name: any): any;
1569
- };
1570
- 39: {
1571
- requiredParametersCount: number;
1572
- interpreter: import("Binaries/Nodejs").Interpreter;
1573
- process(command: Command): Function;
1574
- validateCommand(command: Command): void;
1575
- getArguments(command: Command): any[];
1576
- getArgumentTypes(args: any[]): any[];
1577
- getReturnType(args: any[]): Function;
1578
- createParameters(argsTypes: any[]): any[];
1579
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
1580
- createCommand(callingRuntimeName: string, payload: any[]): Object;
1581
- createExecuteCall(command: Command): Object;
1582
- getResponse(executeCall: Object): any[];
1583
- convertFirstElement(response: any[], returnType: Function): any;
1584
- createBlock(returnType: Function, convertedFirstElement: any): Object;
1585
- createDelegateType(parameters: any[], returnType: Function): Function;
1586
- handlers: any[];
1587
- handleCommand(command: any): void;
1588
- iterate(cmd: any): void;
1589
- process_stack_trace(error: any, class_name: any): any;
1590
- };
1591
- 40: {
1592
- requiredParametersCount: number;
1593
- process(command: Command): any;
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
- 16: {
1600
- requiredParametersCount: number;
1601
- process(command: any): 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
- };
1608
- import { Command } from "Binaries/Nodejs";
1609
- }
1610
- declare module "Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler" {
1611
- const _exports: SetGlobalStaticFieldHandler;
1612
- export = _exports;
1613
- class SetGlobalStaticFieldHandler extends AbstractHandler {
1614
- requiredParametersCount: number;
1615
- }
1616
- import AbstractHandler = require("Binaries/Nodejs/lib/core/handler/AbstractHandler");
1617
- }
1618
- declare module "Binaries/Nodejs/lib/utils/RuntimeLogger" {
1619
- export = RuntimeLogger;
1620
- class RuntimeLogger {
1621
- static notLoggedYet: boolean;
1622
- static getRuntimeInfo(): string;
1623
- static printRuntimeInfo(): void;
1624
- }
1625
- }
1626
- declare module "Binaries/Nodejs/lib/core/receiver/Receiver" {
1627
- export = Receiver;
1628
- class Receiver {
1629
- static connectionData: InMemoryConnectionData;
1630
- /**
1631
- * @param {number[]} messageByteArray
1632
- */
1633
- static sendCommand(messageByteArray: number[]): Uint8Array<any>;
1634
- static heartBeat(messageByteArray: any): Int8Array<ArrayBuffer>;
1635
- Receiver(): void;
1636
- }
1637
- import { InMemoryConnectionData } from "Binaries/Nodejs";
1638
- }
1639
- declare module "Binaries/Nodejs/lib/core/receiver/ReceiverNative" {
1640
- export {};
1641
- }
1642
- declare module "Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper" {
1643
- export = TransmitterWrapper;
1644
- class TransmitterWrapper {
1645
- static isNativeLibraryLoaded(): boolean;
1646
- static loadNativeLibrary(): void;
1647
- static activate(licenseKey: any): any;
1648
- static sendCommand(messageArray: any): any;
1649
- static setConfigSource(configSource: any): any;
1650
- static setJavonetWorkingDirectory(path: any): void;
1651
- }
1652
- }
1653
- declare module "Binaries/Nodejs/lib/core/transmitter/Transmitter" {
1654
- export = Transmitter;
1655
- class Transmitter {
1656
- static sendCommand(messageArray: any): any;
1657
- static activate: (licenseKey: any) => any;
1658
- static setConfigSource(configSource: any): any;
1659
- static setJavonetWorkingDirectory(workingDirectory: any): void;
1660
- }
1661
- }
1662
- declare module "Binaries/Nodejs/lib/sdk/tools/JsonFileResolver" {
1663
- export = JsonFileResolver;
1664
- class JsonFileResolver {
1665
- constructor(path: any);
1666
- path: any;
1667
- jsonObject: any;
1668
- getLicenseKey(): any;
1669
- getRuntimes(): any;
1670
- getRuntime(runtimeName: any, configName: any): any;
1671
- getChannel(runtimeName: any, configName: any): any;
1672
- getChannelType(runtimeName: any, configName: any): any;
1673
- getChannelHost(runtimeName: any, configName: any): any;
1674
- getChannelPort(runtimeName: any, configName: any): any;
1675
- getModules(runtimeName: any, configName: any): any;
1676
- }
1677
- }
1678
- declare module "Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData" {
1679
- export = TcpConnectionData;
1680
- /**
1681
- * @extends IConnectionData
1682
- */
1683
- class TcpConnectionData extends IConnectionData {
1684
- constructor(hostname: any, port: any);
1685
- _port: any;
1686
- _hostname: any;
1687
- _connectionType: 1;
1688
- ipAddress: string | null;
1689
- get connectionType(): 1;
1690
- get hostname(): any;
1691
- /**
1692
- * @param {TcpConnectionData} other
1693
- * @returns {boolean}
1694
- */
1695
- equals(other: TcpConnectionData): boolean;
1696
- /**
1697
- * @param {string} hostname
1698
- * @returns {string|null}
1699
- */
1700
- resolveIpAddress(hostname: string): string | null;
1701
- serializeConnectionData(): 1[];
1702
- #private;
1703
- }
1704
- import { IConnectionData } from "Binaries/Nodejs";
1705
- }
1706
- declare module "Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory" {
1707
- export = ConfigRuntimeFactory;
1708
- /**
1709
- * The ConfigRuntimeFactory class provides methods for creating runtime contexts.
1710
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
1711
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1712
- */
1713
- class ConfigRuntimeFactory {
1714
- constructor(path: any);
1715
- path: any;
1716
- /**
1717
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
1718
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1719
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
1720
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1721
- */
1722
- clr(configName?: string): RuntimeContext;
1723
- /**
1724
- * Creates RuntimeContext instance to interact with the JVM runtime.
1725
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1726
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
1727
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1728
- */
1729
- jvm(configName?: string): RuntimeContext;
1730
- /**
1731
- * Creates RuntimeContext instance to interact with the .NET runtime.
1732
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1733
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
1734
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1735
- */
1736
- netcore(configName?: string): RuntimeContext;
1737
- /**
1738
- * Creates RuntimeContext instance to interact with the Perl runtime.
1739
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1740
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
1741
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1742
- */
1743
- perl(configName?: string): RuntimeContext;
1744
- /**
1745
- * Creates RuntimeContext instance to interact with the Python runtime.
1746
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1747
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
1748
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1749
- */
1750
- python(configName?: string): RuntimeContext;
1751
- /**
1752
- * Creates RuntimeContext instance to interact with the Ruby runtime.
1753
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1754
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
1755
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1756
- */
1757
- ruby(configName?: string): RuntimeContext;
1758
- /**
1759
- * Creates RuntimeContext instance to interact with Node.js runtime.
1760
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
1761
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
1762
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
1763
- */
1764
- nodejs(configName?: string): RuntimeContext;
1765
- #private;
1766
- }
1767
- import { RuntimeContext } from "Binaries/Nodejs";
1768
- }
1769
- declare module "Binaries/Nodejs/lib/sdk/Javonet" {
1770
- /**
1771
- * The Javonet class is a singleton class that serves as the entry point for interacting with Javonet.
1772
- * It provides methods to activate and initialize the Javonet SDK.
1773
- * It supports both in-memory and TCP connections.
1774
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/javonet-static-class)
1775
- */
1776
- export class Javonet {
1777
- /**
1778
- * Initializes Javonet using an in-memory channel on the same machine.
1779
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for an in-memory connection.
1780
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/in-memory-channel)
1781
- */
1782
- static inMemory(): RuntimeFactory;
1783
- /**
1784
- * Initializes Javonet with a TCP connection to a remote machine.
1785
- * @param {TcpConnectionData} tcpConnectionData - The tcp connection data of the remote machine.
1786
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a TCP connection.
1787
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/tcp-channel)
1788
- */
1789
- static tcp(tcpConnectionData: TcpConnectionData): RuntimeFactory;
1790
- /**
1791
- * Initializes Javonet with a WebSocket connection to a remote machine.
1792
- * @param {WsConnectionData} wsConnectionData - The WebSocket connection data of the remote machine.
1793
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a WebSocket connection.
1794
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/websocket-channel)
1795
- */
1796
- static ws(wsConnectionData: WsConnectionData): RuntimeFactory;
1797
- /**
1798
- * Initializes Javonet with a custom configuration file taken from external source.
1799
- * Currentyl supported: Configuration file in JSON format
1800
- * @param {string} configPath - Path to a configuration file.
1801
- * @returns {ConfigRuntimeFactory} A ConfigRuntimeFactory instance with configuration data.
1802
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/configure-channel)
1803
- */
1804
- static withConfig(configPath: string): ConfigRuntimeFactory;
1805
- /**
1806
- * Activates Javonet with the provided license key.
1807
- * @param {string} licenseKey - The license key to activate Javonet.
1808
- * @returns {number} The activation status code.
1809
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/activating-javonet)
1810
- */
1811
- static activate(licenseKey: string): number;
1812
- static getRuntimeInfo(): string;
1813
- /**
1814
- * Sets the configuration source for the Javonet SDK.
1815
- *
1816
- * @param {string} configSource - The configuration source.
1817
- */
1818
- static setConfigSource(configSource: string): void;
1819
- /**
1820
- * Sets the working directory for the Javonet SDK.
1821
- *
1822
- * @param {string} path - The working directory.
1823
- */
1824
- static setJavonetWorkingDirectory(path: string): void;
1825
- }
1826
- import TcpConnectionData = require("Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData");
1827
- import { WsConnectionData } from "Binaries/Nodejs";
1828
- import { RuntimeFactory } from "Binaries/Nodejs";
1829
- import ConfigRuntimeFactory = require("Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory");
1830
- export { TcpConnectionData, WsConnectionData };
1831
- }
1832
- declare module "Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper" {
1833
- export = sendExceptionToAppInsights;
1834
- /**
1835
- *
1836
- * @param {any} e
1837
- * @param {string} licenseKey
1838
- */
1839
- function sendExceptionToAppInsights(e: any, licenseKey: string): Promise<any>;
1840
- }
1841
- declare module "dist/lib/utils/CommandType" {
1842
- export let Value: 0;
1843
- export let LoadLibrary: 1;
1844
- export let InvokeStaticMethod: 2;
1845
- export let GetStaticField: 3;
1846
- export let SetStaticField: 4;
1847
- export let CreateClassInstance: 5;
1848
- export let GetType: 6;
1849
- export let Reference: 7;
1850
- export let GetModule: 8;
1851
- export let InvokeInstanceMethod: 9;
1852
- export let Exception: 10;
1853
- export let HeartBeat: 11;
1854
- export let Cast: 12;
1855
- export let GetInstanceField: 13;
1856
- export let Optimize: 14;
1857
- export let GenerateLib: 15;
1858
- export let InvokeGlobalFunction: 16;
1859
- export let DestructReference: 17;
1860
- export let ArrayReference: 18;
1861
- export let ArrayGetItem: 19;
1862
- export let ArrayGetSize: 20;
1863
- export let ArrayGetRank: 21;
1864
- export let ArraySetItem: 22;
1865
- export let Array: 23;
1866
- export let RetrieveArray: 24;
1867
- export let SetInstanceField: 25;
1868
- export let InvokeGenericStaticMethod: 26;
1869
- export let InvokeGenericMethod: 27;
1870
- export let GetEnumItem: 28;
1871
- export let GetEnumName: 29;
1872
- export let GetEnumValue: 30;
1873
- export let AsRef: 31;
1874
- export let AsOut: 32;
1875
- export let GetRefValue: 33;
1876
- export let EnableNamespace: 34;
1877
- export let EnableType: 35;
1878
- export let CreateNull: 36;
1879
- export let GetStaticMethodAsDelegate: 37;
1880
- export let GetInstanceMethodAsDelegate: 38;
1881
- export let PassDelegate: 39;
1882
- export let InvokeDelegate: 40;
1883
- export let ConvertType: 41;
1884
- }
1885
- declare module "dist/lib/utils/Command" {
1886
- export = Command;
1887
- class Command {
1888
- /**
1889
- * @param {any} [response]
1890
- * @param {number} runtimeName
1891
- */
1892
- static createResponse(response?: any, runtimeName: number): Command;
1893
- /**
1894
- * @param {any} [response]
1895
- * @param {number} runtimeName
1896
- * @method
1897
- */
1898
- static createReference(response?: any, runtimeName: number): Command;
1899
- /**
1900
- * @param {any} [response]
1901
- * @param {number} runtimeName
1902
- * @returns {Command}
1903
- * @method
1904
- */
1905
- static createArrayResponse(response?: any, runtimeName: number): Command;
1906
- /**
1907
- * Constructs a new Command instance.
1908
- * @param {number} runtimeName - The runtime name associated with the command.
1909
- * @param {number} commandType - The type of the command.
1910
- * @param {any} [payload] - The optional payload of the command.
1911
- * @method
1912
- */
1913
- constructor(runtimeName: number, commandType: number, payload?: any);
1914
- runtimeName: number;
1915
- commandType: number;
1916
- payload: any;
1917
- dropFirstPayloadArg(): Command;
1918
- /**
1919
- * @param {any} arg
1920
- * @returns {Command}
1921
- */
1922
- addArgToPayload(arg: any): Command;
1923
- /**
1924
- * @param {Command|null} current_command
1925
- * @returns {Command}
1926
- */
1927
- prependArgToPayload(current_command: Command | null): Command;
1928
- }
1929
- }
1930
- declare module "dist/lib/utils/StringEncodingMode" {
1931
- export let ASCII: 0;
1932
- export let UTF8: 1;
1933
- export let UTF16: 2;
1934
- export let UTF32: 3;
1935
- }
1936
- declare module "dist/lib/core/protocol/TypeDeserializer" {
1937
- export = TypeDeserializer;
1938
- class TypeDeserializer {
1939
- static deserializeCommand(encodedCommand: any): Command;
1940
- static deserializeString(stringEncodingMode: any, encodedString: any): string;
1941
- static deserializeInt(encodedInt: any): number;
1942
- static deserializeBool(encodedBool: any): boolean;
1943
- static deserializeFloat(encodedFloat: any): number;
1944
- static deserializeByte(encodedByte: any): number;
1945
- static deserializeChar(encodedChar: any): number;
1946
- static deserializeLongLong(encodedLongLong: any): bigint;
1947
- static deserializeDouble(encodedDouble: any): number;
1948
- static deserializeULLong(encodedULLong: any): bigint;
1949
- static deserializeUInt(encodedUInt: any): number;
1950
- static deserializeNull(encodedNull?: null): null;
1951
- }
1952
- import Command = require("@javonet/core/lib/utils/Command");
1953
- }
1954
- declare module "dist/lib/utils/Type" {
1955
- export let JAVONET_COMMAND: 0;
1956
- export let JAVONET_STRING: 1;
1957
- export let JAVONET_INTEGER: 2;
1958
- export let JAVONET_BOOLEAN: 3;
1959
- export let JAVONET_FLOAT: 4;
1960
- export let JAVONET_BYTE: 5;
1961
- export let JAVONET_CHAR: 6;
1962
- export let JAVONET_LONG_LONG: 7;
1963
- export let JAVONET_DOUBLE: 8;
1964
- export let JAVONET_UNSIGNED_LONG_LONG: 9;
1965
- export let JAVONET_UNSIGNED_INTEGER: 10;
1966
- export let JAVONET_NULL: 11;
1967
- }
1968
- declare module "dist/lib/core/protocol/CommandDeserializer" {
1969
- export = CommandDeserializer;
1970
- class CommandDeserializer {
1971
- constructor(buffer: any);
1972
- buffer: any;
1973
- command: Command;
1974
- position: number;
1975
- /**
1976
- * @returns {Command}
1977
- */
1978
- deserialize(): Command;
1979
- isAtEnd(): boolean;
1980
- readObject(typeNum: any): string | number | bigint | boolean | Command | (() => bigint) | null;
1981
- readCommand(): Command;
1982
- readString(): string;
1983
- readInt(): number;
1984
- readBool(): boolean;
1985
- readFloat(): number;
1986
- readByte(): number;
1987
- readChar(): number;
1988
- readLongLong(): bigint;
1989
- readDouble(): number;
1990
- readUllong(): bigint;
1991
- readUInt(): number;
1992
- readNull(): null;
1993
- }
1994
- import Command = require("@javonet/core/lib/utils/Command");
1995
- }
1996
- declare module "dist/lib/utils/CustomError" {
1997
- export = CustomError;
1998
- class CustomError extends Error {
1999
- constructor(message: any, cause: any);
2000
- }
2001
- }
2002
- declare module "dist/lib/core/protocol/TypeSerializer" {
2003
- export = TypeSerializer;
2004
- class TypeSerializer {
2005
- static serializePrimitive(payload_item: any): Buffer<ArrayBuffer>;
2006
- static serializeCommand(command: any): Buffer<ArrayBuffer>;
2007
- static serializeString(string_value: any): Buffer<ArrayBuffer>;
2008
- static serializeInt(int_value: any): Buffer<ArrayBuffer>;
2009
- static serializeBool(bool_value: any): Buffer<ArrayBuffer>;
2010
- static serializeFloat(float_value: any): Buffer<ArrayBuffer>;
2011
- static serializeByte(byte_value: any): Buffer<ArrayBuffer>;
2012
- static serializeChar(char_value: any): Buffer<ArrayBuffer>;
2013
- static serializeLongLong(longlong_value: any): Buffer<ArrayBuffer>;
2014
- static serializeDouble(double_value: any): Buffer<ArrayBuffer>;
2015
- static serializeULLong(ullong_value: any): Buffer<ArrayBuffer>;
2016
- static serializeUInt(uint_value: any): Buffer<ArrayBuffer>;
2017
- static serializeNull(): Buffer<ArrayBuffer>;
2018
- static serializeIntValue(int_value: any): Buffer<ArrayBuffer>;
2019
- }
2020
- import { Buffer } from "buffer";
2021
- }
2022
- declare module "dist/lib/utils/RuntimeName" {
2023
- export let Clr: 0;
2024
- export let Go: 1;
2025
- export let Jvm: 2;
2026
- export let Netcore: 3;
2027
- export let Perl: 4;
2028
- export let Python: 5;
2029
- export let Ruby: 6;
2030
- export let Nodejs: 7;
2031
- export let Cpp: 8;
2032
- }
2033
- declare module "dist/lib/core/protocol/CommandSerializer" {
2034
- export = CommandSerializer;
2035
- class CommandSerializer {
2036
- serialize(rootCommand: any, connectionData: any): Uint8Array<any>;
2037
- serializeRecursively(command: any, buffers: any): void;
2038
- }
2039
- }
2040
- declare module "dist/lib/utils/ConnectionType" {
2041
- export let IN_MEMORY: 0;
2042
- export let TCP: 1;
2043
- export let WEB_SOCKET: 2;
2044
- }
2045
- declare module "dist/lib/core/webSocketClient/WebSocketClient" {
2046
- export = WebSocketClient;
2047
- /**
2048
- * WebSocketClient class that handles WebSocket connection, message sending, and automatic disconnection.
2049
- */
2050
- class WebSocketClient {
2051
- /**
2052
- * @param {string} url
2053
- * @param {object} options
2054
- */
2055
- constructor(url: string, options: object);
2056
- /**
2057
- * @type {string}
2058
- */
2059
- url: string;
2060
- /**
2061
- * @type {WebSocket | null}
2062
- */
2063
- instance: WebSocket | null;
2064
- /**
2065
- * @type {boolean} isConnected indicates whether the WebSocket is connected.
2066
- */
2067
- isConnected: boolean;
2068
- /**
2069
- * @type {boolean}
2070
- */
2071
- isDisconnectedAfterMessage: boolean;
2072
- /**
2073
- * Connects to the WebSocket server.
2074
- * @async
2075
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
2076
- */
2077
- connect(): Promise<WebSocket>;
2078
- /**
2079
- * Sends messageArray through websocket connection
2080
- * @async
2081
- * @param {Buffer|ArrayBuffer|Buffer[]} messageArray
2082
- * @returns {Promise<Buffer|ArrayBuffer|Buffer[]>}
2083
- */
2084
- send(messageArray: Buffer | ArrayBuffer | Buffer[]): Promise<Buffer | ArrayBuffer | Buffer[]>;
2085
- /**
2086
- * Disconnects the WebSocket by terminating the connection.
2087
- */
2088
- disconnect(): void;
2089
- /**
2090
- * Connects to the WebSocket server.
2091
- * @private
2092
- * @async
2093
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
2094
- */
2095
- private _connect;
2096
- }
2097
- }
2098
- declare module "dist/lib/core/transmitter/TransmitterWebsocket" {
2099
- export = TransmitterWebsocket;
2100
- /** @typedef {import('../../../../core/lib/declarations').WsConnectionData} WsConnectionData */
2101
- class TransmitterWebsocket {
2102
- /**
2103
- * @returns {void}
2104
- */
2105
- static initialize(): void;
2106
- /**
2107
- * @returns {void}
2108
- */
2109
- static setConfigSource(): void;
2110
- /**
2111
- * @returns {void}
2112
- */
2113
- static activate(): void;
2114
- /**
2115
- * @async
2116
- * @param {number[]} messageByteArray
2117
- * @param {WsConnectionData} connectionData
2118
- * @returns {Promise<number[]>} responseByteArray
2119
- */
2120
- static sendCommand(messageByteArray: number[], connectionData: WsConnectionData): Promise<number[]>;
2121
- }
2122
- namespace TransmitterWebsocket {
2123
- export { WsConnectionData };
2124
- }
2125
- type WsConnectionData = any;
2126
- }
2127
- declare module "dist/lib/core/interpreter/Interpreter" {
2128
- export = Interpreter;
2129
- class Interpreter {
2130
- handler: any;
2131
- /**
2132
- *
2133
- * @param {Command} command
2134
- * @param {IConnectionData} connectionData
2135
- * @returns
2136
- */
2137
- executeAsync(command: Command, connectionData: IConnectionData): Promise<import("@javonet/core/lib/utils/Command") | undefined>;
2138
- /**
2139
- *
2140
- * @param {Command} command
2141
- * @param {WsConnectionData} connectionData
2142
- * @returns {Promise<Command>}
2143
- */
2144
- execute(command: Command, connectionData: WsConnectionData): Promise<Command>;
2145
- /**
2146
- *
2147
- * @param {number[]} messageByteArray
2148
- * @returns {Command}
2149
- */
2150
- process(messageByteArray: number[]): Command;
2151
- }
2152
- namespace Interpreter {
2153
- export { WsConnectionData };
2154
- }
2155
- type WsConnectionData = any;
2156
- }
2157
- declare module "dist/lib/utils/guid/generateGuid" {
2158
- export = generateGUID;
2159
- function generateGUID(): string;
2160
- }
2161
- declare module "dist/lib/core/delegatesCache/DelegatesCache" {
2162
- const _exports: DelegatesCache;
2163
- export = _exports;
2164
- /**
2165
- * A cache for storing and retrieving delegates.
2166
- */
2167
- class DelegatesCache {
2168
- cache: Map<any, any>;
2169
- /**
2170
- * Adds a delegate to the cache and returns its unique ID.
2171
- * @param {Function} delegateInstance - The delegate function to store.
2172
- * @returns {string} The unique ID for the delegate.
2173
- */
2174
- addDelegate(delegateInstance: Function): string;
2175
- /**
2176
- * Retrieves a delegate by its unique ID.
2177
- * @param {string} delegateId - The unique ID of the delegate.
2178
- * @returns {Function} The delegate function.
2179
- * @throws {Error} If the delegate is not found.
2180
- */
2181
- getDelegate(delegateId: string): Function;
2182
- }
2183
- }
2184
- declare module "dist/lib/utils/ExceptionType" {
2185
- export let EXCEPTION: 0;
2186
- export let IO_EXCEPTION: 1;
2187
- export let FILE_NOT_FOUND_EXCEPTION: 2;
2188
- export let RUNTIME_EXCEPTION: 3;
2189
- export let ARITHMETIC_EXCEPTION: 4;
2190
- export let ILLEGAL_ARGUMENT_EXCEPTION: 5;
2191
- export let INDEX_OUT_OF_BOUNDS_EXCEPTION: 6;
2192
- export let NULL_POINTER_EXCEPTION: 7;
2193
- }
2194
- declare module "dist/lib/utils/exception/ExceptionThrower" {
2195
- export = ExceptionThrower;
2196
- class ExceptionThrower {
2197
- static throwException(commandException: any): Error;
2198
- static serializeStack(stackTraceClasses: any, stackTraceMethods: any, stackTraceLines: any, stackTraceFiles: any): string;
2199
- }
2200
- }
2201
- declare module "dist/lib/sdk/InvocationContext" {
2202
- /**
2203
- * InvocationContext is a class that represents a context for invoking commands.
2204
- * It implements several interfaces for different types of interactions.
2205
- * This class is used to construct chains of invocations, representing expressions of interaction that have not yet been executed.
2206
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/invocation-context)
2207
- * @class
2208
- */
2209
- export class InvocationContext {
2210
- constructor(runtimeName: any, connectionData: any, command: any, isExecuted?: boolean);
2211
- get_current_command(): any;
2212
- /**
2213
- * Executes the current command.
2214
- * 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.
2215
- * The non-materialized context wraps either single command or chain of recursively nested commands.
2216
- * Commands are becoming nested through each invocation of methods on Invocation Context.
2217
- * Each invocation triggers the creation of new Invocation Context instance wrapping the current command with new parent command valid for invoked method.
2218
- * 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.
2219
- * @returns {InvocationContext} the InvocationContext after executing the command.
2220
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
2221
- * @method
2222
- */
2223
- execute(): InvocationContext;
2224
- /**
2225
- * Invokes a static method on the target runtime.
2226
- * @param {string} methodName - The name of the method to invoke.
2227
- * @param {...any} args - Method arguments.
2228
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the static method.
2229
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/invoking-static-method)
2230
- * @method
2231
- */
2232
- invokeStaticMethod(methodName: string, ...args: any[]): InvocationContext;
2233
- /**
2234
- * Retrieves the value of a static field from the target runtime.
2235
- * @param {string} fieldName - The name of the field to get.
2236
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the static field.
2237
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-static-fields-and-properties)
2238
- * @method
2239
- */
2240
- getStaticField(fieldName: string): InvocationContext;
2241
- /**
2242
- * Sets the value of a static field in the target runtime.
2243
- * @param {string} fieldName - The name of the field to set.
2244
- * @param {any} value - The new value of the field.
2245
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the static field.
2246
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-static-fields-and-properties)
2247
- * @method
2248
- */
2249
- setStaticField(fieldName: string, value: any): InvocationContext;
2250
- /**
2251
- * Creates a new instance of a class in the target runtime.
2252
- * @param {...any} args - The arguments to pass to the class constructor
2253
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to create the instance.
2254
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/creating-instance-and-calling-instance-methods)
2255
- * @method
2256
- */
2257
- createInstance(...args: any[]): InvocationContext;
2258
- /**
2259
- * Retrieves the value of an instance field from the target runtime.
2260
- * @param {string} fieldName - The name of the field to get.
2261
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the instance field.
2262
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-instance-fields-and-properties)
2263
- * @method
2264
- */
2265
- getInstanceField(fieldName: string): InvocationContext;
2266
- /**
2267
- * Sets the value of an instance field in the target runtime.
2268
- * @param {string} fieldName - The name of the field to set.
2269
- * @param {any} value - The new value of the field.
2270
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the instance field.
2271
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/fields-and-properties/getting-and-setting-values-for-instance-fields-and-properties)
2272
- * @method
2273
- */
2274
- setInstanceField(fieldName: string, value: any): InvocationContext;
2275
- /**
2276
- * Invokes an instance method on the target runtime.
2277
- * @param {string} methodName - The name of the method to invoke.
2278
- * @param {...any} args - Method arguments.
2279
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the instance method.
2280
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/calling-methods/invoking-instance-method)
2281
- * @method
2282
- */
2283
- invokeInstanceMethod(methodName: string, ...args: any[]): InvocationContext;
2284
- /**
2285
- * Retrieves the value at a specific index in an array from the target runtime.
2286
- * @param {...any} indexes - the arguments to pass to the array getter. The first argument should be the index.
2287
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the index.
2288
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
2289
- * @method
2290
- */
2291
- getIndex(...indexes: any[]): InvocationContext;
2292
- /**
2293
- * Sets the value at a specific index in an array in the target runtime.
2294
- * @param {number[]} indexes - The index to set the value at.
2295
- * @param {any} value - The value to set at the index.
2296
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to set the index.
2297
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
2298
- * @method
2299
- */
2300
- setIndex(indexes: number[], value: any): InvocationContext;
2301
- /**
2302
- * Retrieves the size of an array from the target runtime.
2303
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the size.
2304
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
2305
- * @method
2306
- */
2307
- getSize(): InvocationContext;
2308
- /**
2309
- * Retrieves the rank of an array from the target runtime.
2310
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the rank.
2311
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/one-dimensional-arrays)
2312
- * @method
2313
- */
2314
- getRank(): InvocationContext;
2315
- /**
2316
- * Invokes a generic static method on the target runtime.
2317
- * @param {string} methodName - The name of the method to invoke.
2318
- * @param {...any} args - Method arguments.
2319
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the generic static method.
2320
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/generics/calling-generic-static-method)
2321
- * @method
2322
- */
2323
- invokeGenericStaticMethod(methodName: string, ...args: any[]): InvocationContext;
2324
- /**
2325
- * Invokes a generic method on the target runtime.
2326
- * @param {string} methodName - The name of the method to invoke.
2327
- * @param {...any} args - Method arguments.
2328
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to invoke the generic method.
2329
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/generics/calling-generic-instance-method)
2330
- * @method
2331
- */
2332
- invokeGenericMethod(methodName: string, ...args: any[]): InvocationContext;
2333
- /**
2334
- * Retrieves the name of an enum from the target runtime.
2335
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the enum name.
2336
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
2337
- * @method
2338
- */
2339
- getEnumName(): InvocationContext;
2340
- /**
2341
- * Retrieves the value of an enum from the target runtime.
2342
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the enum value.
2343
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
2344
- * @method
2345
- */
2346
- getEnumValue(): InvocationContext;
2347
- /**
2348
- * Retrieves the value of a reference from the target runtime.
2349
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to get the ref value.
2350
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-ref-keyword)
2351
- * @method
2352
- */
2353
- getRefValue(): InvocationContext;
2354
- /**
2355
- * Creates a null object of a specific type on the target runtime.
2356
- *
2357
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
2358
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/null-handling/create-null-object)
2359
- * @method
2360
- */
2361
- createNull(): InvocationContext;
2362
- /**
2363
- * Creates a null object of a specific type on the target runtime.
2364
- * @param {string} methodName - The name of the method to invoke.
2365
- * @param {...any} args - Method arguments.
2366
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
2367
- * TODO: connect documentation page url
2368
- * @see [Javonet Guides](https://www.javonet.com/guides/)
2369
- * @method
2370
- */
2371
- getStaticMethodAsDelegate(methodName: string, ...args: any[]): InvocationContext;
2372
- /**
2373
- * Creates a null object of a specific type on the target runtime.
2374
- * @param {string} methodName - The name of the method to invoke.
2375
- * @param {...any} args - Method arguments.
2376
- * @returns {InvocationContext} An InvocationContext instance with the command to create a null object.
2377
- * TODO: connect documentation page url
2378
- * @see [Javonet Guides](https://www.javonet.com/guides/)
2379
- * @method
2380
- */
2381
- getInstanceMethodAsDelegate(methodName: string, ...args: any[]): InvocationContext;
2382
- /**
2383
- * Retrieves an array from the target runtime.
2384
- * @returns {InvocationContext} A new InvocationContext instance that wraps the command to retrieve the array.
2385
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/arrays-and-collections/retrieve-array)
2386
- * @method
2387
- */
2388
- retrieveArray(): InvocationContext;
2389
- /**
2390
- * Returns the primitive value from the target runtime. This could be any primitive type in JavaScript,
2391
- * such as int, boolean, byte, char, long, double, float, etc.
2392
- * @returns {Command} The value of the current command.
2393
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
2394
- * @method
2395
- */
2396
- getValue(): Command;
2397
- [Symbol.iterator]: () => {
2398
- next: () => {
2399
- value: any;
2400
- done: boolean;
2401
- };
2402
- };
2403
- #private;
2404
- }
2405
- export class InvocationWsContext extends InvocationContext {
2406
- #private;
2407
- }
2408
- import Command = require("@javonet/core/lib/utils/Command");
2409
- }
2410
- declare module "dist/lib/sdk/RuntimeContext" {
2411
- export = RuntimeContext;
2412
- /**
2413
- * Represents a single context which allows interaction with a selected technology.
2414
- * Refers to a single instance of the called runtime within a particular target OS process.
2415
- * 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.
2416
- * Multiple Runtime Contexts can be initialized within one process.
2417
- * Calling the same technology on inMemory communication channel will return the existing instance of runtime context.
2418
- * Calling the same technology on TCP channel but on different nodes will result in unique Runtime Contexts.
2419
- * 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.
2420
- * @see [Javonet Guides]{@link https://www.javonet.com/guides/v2/javascript/foundations/runtime-context}
2421
- * @class
2422
- */
2423
- class RuntimeContext {
2424
- static memoryRuntimeContexts: Map<any, any>;
2425
- static networkRuntimeContexts: Map<any, any>;
2426
- static webSocketRuntimeContexts: Map<any, any>;
2427
- static getGeneratorHandler(): any;
2428
- static getInstance(runtimeName: any, connectionData: any): any;
2429
- constructor(runtimeName: any, connectionData: any);
2430
- runtimeName: any;
2431
- connectionData: any;
2432
- /**
2433
- * Executes the current command. The initial state of RuntimeContext is non-materialized,
2434
- * wrapping either a single command or a chain of recursively nested commands.
2435
- * Commands become nested through each invocation of methods on RuntimeContext.
2436
- * Each invocation triggers the creation of a new RuntimeContext instance wrapping the current command with a new parent command.
2437
- * 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.
2438
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/execute-method)
2439
- * @method
2440
- */
2441
- execute(): void;
2442
- /**
2443
- * Adds a reference to a library. Javonet allows you to reference and use modules or packages written in various languages.
2444
- * This method allows you to use any library from all supported technologies. The necessary libraries need to be referenced.
2445
- * 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.
2446
- * 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.
2447
- * @param {string} libraryPath - The relative or full path to the library.
2448
- * @returns {RuntimeContext} RuntimeContext instance.
2449
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/adding-references-to-libraries)
2450
- * @method
2451
- */
2452
- loadLibrary(libraryPath: string): RuntimeContext;
2453
- /**
2454
- * 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.
2455
- * @param {string} typeName - The full name of the type.
2456
- * @param {...any} args - The arguments to be passed, if needed
2457
- * @returns {InvocationContext} InvocationContext instance, that wraps the command to get the type.
2458
- * @method
2459
- */
2460
- getType(typeName: string, ...args: any[]): InvocationContext;
2461
- /**
2462
- * Casts the provided value to a specific type. This method is used when invoking methods that require specific types of arguments.
2463
- * 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.
2464
- * After casting the value, it can be used as an argument when invoking methods.
2465
- * @param {...any} args - The target type and the value to be cast.
2466
- * @returns {InvocationContext} InvocationContext instance that wraps the command to cast the value.
2467
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/casting/casting)
2468
- * @method
2469
- */
2470
- cast(...args: any[]): InvocationContext;
2471
- /**
2472
- * Retrieves a specific item from an enum type. This method is used when working with enums from the called runtime.
2473
- * 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.
2474
- * After retrieving the item, it can be used as an argument when invoking methods or for other operations.
2475
- * @param {...any} args - The enum type and the name of the item.
2476
- * @returns {InvocationContext} InvocationContext instance that wraps the command to get the enum item.
2477
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/enums/using-enum-type)
2478
- * @method
2479
- */
2480
- getEnumItem(...args: any[]): InvocationContext;
2481
- /**
2482
- * 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.
2483
- * 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.
2484
- * After creating the reference, it can be used as an argument when invoking methods.
2485
- * @param {...any} args - The value and optionally the type of the reference.
2486
- * @returns {InvocationContext} InvocationContext instance that wraps the command to create a reference as ref.
2487
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/methods-arguments/passing-arguments-by-reference-with-ref-keyword)
2488
- * @method
2489
- */
2490
- asRef(...args: any[]): InvocationContext;
2491
- /**
2492
- * 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.
2493
- * 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.
2494
- * After creating the reference, it can be used as an argument when invoking methods.
2495
- * @param {...any} args - The value and optionally the type of the reference.
2496
- * @returns {InvocationContext} InvocationContext instance that wraps the command to create a reference as out.
2497
- * @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)
2498
- * @method
2499
- */
2500
- asOut(...args: any[]): InvocationContext;
2501
- /**
2502
- * Invokes a function from the called runtime. This method is used when working with functions from the called runtime.
2503
- * The arguments include the function name and the arguments to be passed to the function.
2504
- * After invoking the function, the result can be used for further operations.
2505
- * @param {string} functionName - The name of the function to invoke.
2506
- * @param {...any} args - The arguments to be passed to the function.
2507
- * @returns {InvocationContext} InvocationContext instance that wraps the command to invoke the function.
2508
- * @see [Invoking Functions Guide](https://www.javonet.com/guides/v2/csharp/functions/invoking-functions)
2509
- * @method
2510
- */
2511
- invokeGlobalFunction(functionName: string, ...args: any[]): InvocationContext;
2512
- healthCheck(): void;
2513
- #private;
2514
- }
2515
- import { InvocationContext } from "@javonet/core/lib/sdk/InvocationContext";
2516
- }
2517
- declare module "dist/lib/sdk/RuntimeFactory" {
2518
- export = RuntimeFactory;
2519
- /**
2520
- * The RuntimeFactory class provides methods for creating runtime contexts.
2521
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
2522
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2523
- */
2524
- class RuntimeFactory {
2525
- constructor(connectionData: any);
2526
- connectionData: any;
2527
- /**
2528
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
2529
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
2530
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2531
- */
2532
- clr(): RuntimeContext;
2533
- /**
2534
- * Creates RuntimeContext instance to interact with the JVM runtime.
2535
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
2536
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2537
- */
2538
- jvm(): RuntimeContext;
2539
- /**
2540
- * Creates RuntimeContext instance to interact with the .NET runtime.
2541
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
2542
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2543
- */
2544
- netcore(): RuntimeContext;
2545
- /**
2546
- * Creates RuntimeContext instance to interact with the Perl runtime.
2547
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
2548
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2549
- */
2550
- perl(): RuntimeContext;
2551
- /**
2552
- * Creates RuntimeContext instance to interact with the Python runtime.
2553
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
2554
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2555
- */
2556
- python(): RuntimeContext;
2557
- /**
2558
- * Creates RuntimeContext instance to interact with the Ruby runtime.
2559
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
2560
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2561
- */
2562
- ruby(): RuntimeContext;
2563
- /**
2564
- * Creates RuntimeContext instance to interact with Node.js runtime.
2565
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
2566
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
2567
- */
2568
- nodejs(): RuntimeContext;
2569
- }
2570
- import RuntimeContext = require("@javonet/core/lib/sdk/RuntimeContext");
2571
- }
2572
- declare module "dist/lib/utils/RuntimeNameHandler" {
2573
- export = RuntimeNameHandler;
2574
- class RuntimeNameHandler {
2575
- /**
2576
- * @param {number} runtimeName
2577
- * @returns {string}
2578
- */
2579
- static getName(runtimeName: number): string;
2580
- }
2581
- }
2582
- declare module "dist/lib/utils/connectionData/IConnectionData" {
2583
- export = IConnectionData;
2584
- class IConnectionData {
2585
- get connectionType(): void;
2586
- get hostname(): void;
2587
- serializeConnectionData(): void;
2588
- }
2589
- }
2590
- declare module "dist/lib/utils/connectionData/InMemoryConnectionData" {
2591
- export = InMemoryConnectionData;
2592
- /**
2593
- * @extends IConnectionData
2594
- */
2595
- class InMemoryConnectionData extends IConnectionData {
2596
- _connectionType: 0;
2597
- _hostname: string;
2598
- get connectionType(): 0;
2599
- get hostname(): string;
2600
- serializeConnectionData(): number[];
2601
- /**
2602
- * @param {InMemoryConnectionData} other
2603
- * @returns {boolean}
2604
- */
2605
- equals(other: InMemoryConnectionData): boolean;
2606
- }
2607
- import IConnectionData = require("@javonet/core/lib/utils/connectionData/IConnectionData");
2608
- }
2609
- declare module "dist/lib/utils/connectionData/WsConnectionData" {
2610
- export = WsConnectionData;
2611
- /** @typedef {import('../../declarations').ConnectionType} ConnectionType */
2612
- /**
2613
- * Represents WebSocket connection data.
2614
- * @extends IConnectionData
2615
- */
2616
- class WsConnectionData extends IConnectionData {
2617
- /**
2618
- * @param {string} hostname - The hostname of the connection.
2619
- */
2620
- constructor(hostname: string);
2621
- /** @private @type {string} */
2622
- private _hostname;
2623
- /** @private @type {ConnectionType} */
2624
- private _connectionType;
2625
- /** @type {ConnectionType} */
2626
- get connectionType(): ConnectionType;
2627
- /** @type {string} */
2628
- set hostname(value: string);
2629
- /** @type {string} */
2630
- get hostname(): string;
2631
- /**
2632
- * Serializes the connection data.
2633
- * @returns {number[]} An array of connection data values.
2634
- */
2635
- serializeConnectionData(): number[];
2636
- equals(other: any): boolean;
2637
- }
2638
- namespace WsConnectionData {
2639
- export { ConnectionType };
2640
- }
2641
- import IConnectionData = require("@javonet/core/lib/utils/connectionData/IConnectionData");
2642
- type ConnectionType = import("@javonet/core/lib/declarations").ConnectionType;
2643
- }
2644
- declare module "dist/lib/utils/exception/ExceptionSerializer" {
2645
- export = ExceptionSerializer;
2646
- class ExceptionSerializer {
2647
- static serializeException(exception: any, command: any): Command;
2648
- static getExceptionCode(exception: any): 0 | 5 | 6;
2649
- static serializeStackTrace(exception: any, stackClasses: any, stackMethods: any, stackLines: any, stackFiles: any): void;
2650
- }
2651
- import Command = require("@javonet/core/lib/utils/Command");
2652
- }
2653
- declare module "dist/index" {
2654
- import CommandSerializer = require("@javonet/core/lib/core/protocol/CommandSerializer");
2655
- import CommandDeserializer = require("@javonet/core/lib/core/protocol/CommandDeserializer");
2656
- import TypeDeserializer = require("@javonet/core/lib/core/protocol/TypeDeserializer");
2657
- import TypeSerializer = require("@javonet/core/lib/core/protocol/TypeSerializer");
2658
- import Interpreter = require("@javonet/core/lib/core/interpreter/Interpreter");
2659
- import DelegatesCache = require("@javonet/core/lib/core/delegatesCache/DelegatesCache");
2660
- import { InvocationContext } from "@javonet/core/lib/sdk/InvocationContext";
2661
- import { InvocationWsContext } from "@javonet/core/lib/sdk/InvocationContext";
2662
- import RuntimeContext = require("@javonet/core/lib/sdk/RuntimeContext");
2663
- import RuntimeFactory = require("@javonet/core/lib/sdk/RuntimeFactory");
2664
- import Command = require("@javonet/core/lib/utils/Command");
2665
- import CommandType = require("@javonet/core/lib/utils/CommandType");
2666
- import ConnectionType = require("@javonet/core/lib/utils/ConnectionType");
2667
- import ExceptionType = require("@javonet/core/lib/utils/ExceptionType");
2668
- import RuntimeName = require("@javonet/core/lib/utils/RuntimeName");
2669
- import RuntimeNameHandler = require("@javonet/core/lib/utils/RuntimeNameHandler");
2670
- import StringEncodingMode = require("@javonet/core/lib/utils/StringEncodingMode");
2671
- import Type = require("@javonet/core/lib/utils/Type");
2672
- import IConnectionData = require("@javonet/core/lib/utils/connectionData/IConnectionData");
2673
- import InMemoryConnectionData = require("@javonet/core/lib/utils/connectionData/InMemoryConnectionData");
2674
- import WsConnectionData = require("@javonet/core/lib/utils/connectionData/WsConnectionData");
2675
- import ExceptionSerializer = require("@javonet/core/lib/utils/exception/ExceptionSerializer");
2676
- import ExceptionThrower = require("@javonet/core/lib/utils/exception/ExceptionThrower");
2677
- export { CommandSerializer, CommandDeserializer, TypeDeserializer, TypeSerializer, Interpreter, DelegatesCache, InvocationContext, InvocationWsContext, RuntimeContext, RuntimeFactory, Command, CommandType, ConnectionType, ExceptionType, RuntimeName, RuntimeNameHandler, StringEncodingMode, Type, IConnectionData, InMemoryConnectionData, WsConnectionData, ExceptionSerializer, ExceptionThrower };
2678
- }
2679
- declare module "dist/lib/core/handler/AbstractHandler" {
2680
- export = AbstractHandler;
2681
- class AbstractHandler {
2682
- handlers: any[];
2683
- process(command: any): void;
2684
- handleCommand(command: any): void;
2685
- iterate(cmd: any): void;
2686
- process_stack_trace(error: any, class_name: any): any;
2687
- }
2688
- }
2689
- declare module "dist/lib/core/handler/ArrayGetItemHandler" {
2690
- const _exports: ArrayGetItemHandler;
2691
- export = _exports;
2692
- class ArrayGetItemHandler extends AbstractHandler {
2693
- requiredParametersCount: number;
2694
- process(command: any): any;
2695
- }
2696
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2697
- }
2698
- declare module "dist/lib/core/handler/ArrayGetRankHandler" {
2699
- const _exports: ArrayGetRankHandler;
2700
- export = _exports;
2701
- class ArrayGetRankHandler extends AbstractHandler {
2702
- requiredParametersCount: number;
2703
- process(command: any): number;
2704
- }
2705
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2706
- }
2707
- declare module "dist/lib/core/handler/ArrayGetSizeHandler" {
2708
- const _exports: ArrayGetSizeHandler;
2709
- export = _exports;
2710
- class ArrayGetSizeHandler extends AbstractHandler {
2711
- requiredParametersCount: number;
2712
- process(command: any): number;
2713
- }
2714
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2715
- }
2716
- declare module "dist/lib/core/handler/ArrayHandler" {
2717
- const _exports: ArrayHandler;
2718
- export = _exports;
2719
- class ArrayHandler extends AbstractHandler {
2720
- process(command: any): any;
2721
- }
2722
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2723
- }
2724
- declare module "dist/lib/core/handler/ArraySetItemHandler" {
2725
- const _exports: ArraySetItemHandler;
2726
- export = _exports;
2727
- class ArraySetItemHandler extends AbstractHandler {
2728
- requiredParametersCount: number;
2729
- process(command: any): number;
2730
- }
2731
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2732
- }
2733
- declare module "dist/lib/core/handler/CastingHandler" {
2734
- const _exports: CastingHandler;
2735
- export = _exports;
2736
- class CastingHandler extends AbstractHandler {
2737
- }
2738
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2739
- }
2740
- declare module "dist/lib/utils/TypesConverter" {
2741
- /**
2742
- * ConvertTypeHandler class handles the conversion of JType to Type.
2743
- */
2744
- export class ConvertTypeHandler {
2745
- /**
2746
- * Minimum required parameters count for the command.
2747
- * @type {number}
2748
- */
2749
- requiredParametersCount: number;
2750
- /**
2751
- * Processes the given command to convert JType to Type.
2752
- * @param {Object} command - The command to process.
2753
- * @returns {any} The converted type.
2754
- */
2755
- process(command: Object): any;
2756
- /**
2757
- * Validates the command to ensure it has enough parameters.
2758
- * @param {Object} command - The command to validate.
2759
- */
2760
- validateCommand(command: Object): void;
2761
- }
2762
- /**
2763
- * TypesConverter class provides utilities for converting between types.
2764
- */
2765
- export class TypesConverter {
2766
- /**
2767
- * Converts a JavaScript type to a JType equivalent.
2768
- * @param {Function} type - The JavaScript type.
2769
- * @returns {number} The corresponding JType.
2770
- */
2771
- static convertTypeToJType(type: Function): number;
2772
- /**
2773
- * Converts a JType to a JavaScript type equivalent.
2774
- * @param {number} type - The JType to convert.
2775
- * @returns {Function} The corresponding JavaScript type.
2776
- */
2777
- static convertJTypeToType(type: number): Function;
2778
- }
2779
- /**
2780
- * Enum for JType mappings.
2781
- */
2782
- export type JType = number;
2783
- export namespace JType {
2784
- let Boolean: number;
2785
- let Float: number;
2786
- let String: number;
2787
- let Null: number;
2788
- }
2789
- }
2790
- declare module "dist/lib/core/handler/ConvertTypeHandler" {
2791
- export = ConvertTypeHandler;
2792
- /**
2793
- * ConvertTypeHandler class handles the conversion of JType to Type.
2794
- */
2795
- class ConvertTypeHandler extends AbstractHandler {
2796
- /**
2797
- * Minimum required parameters count for the command.
2798
- * @type {number}
2799
- */
2800
- requiredParametersCount: number;
2801
- /**
2802
- * Processes the given command to convert JType to Type.
2803
- * @param {Object} command - The command to process.
2804
- * @returns {any} The converted type.
2805
- */
2806
- process(command: Object): any;
2807
- /**
2808
- * Validates the command to ensure it has enough parameters.
2809
- * @param {Object} command - The command to validate.
2810
- */
2811
- validateCommand(command: Object): void;
2812
- }
2813
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2814
- }
2815
- declare module "dist/lib/core/handler/CreateClassInstanceHandler" {
2816
- const _exports: CreateClassInstanceHandler;
2817
- export = _exports;
2818
- class CreateClassInstanceHandler extends AbstractHandler {
2819
- requiredParametersCount: number;
2820
- process(command: any): any;
2821
- }
2822
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2823
- }
2824
- declare module "dist/lib/utils/uuid/rng" {
2825
- function _exports(): Uint8Array<ArrayBuffer>;
2826
- export = _exports;
2827
- }
2828
- declare module "dist/lib/utils/uuid/REGEX" {
2829
- const _exports: RegExp;
2830
- export = _exports;
2831
- }
2832
- declare module "dist/lib/utils/uuid/validate" {
2833
- export = validate;
2834
- function validate(uuid: any): boolean;
2835
- }
2836
- declare module "dist/lib/utils/uuid/stringify" {
2837
- export = stringify;
2838
- function stringify(arr: any, offset?: number): string;
2839
- }
2840
- declare module "dist/lib/utils/uuid/v4" {
2841
- export = v4;
2842
- function v4(options: any, buf: any, offset: any): any;
2843
- }
2844
- declare module "dist/lib/core/referenceCache/ReferencesCache" {
2845
- export = ReferencesCache;
2846
- class ReferencesCache {
2847
- static getInstance(): any;
2848
- cacheReference(reference: any): any;
2849
- resolveReference(id: any): any;
2850
- deleteReference(referenceGuid: any): number;
2851
- }
2852
- }
2853
- declare module "dist/lib/core/handler/DestructReferenceHandler" {
2854
- const _exports: DestructReferenceHandler;
2855
- export = _exports;
2856
- class DestructReferenceHandler extends AbstractHandler {
2857
- process(command: any): any;
2858
- }
2859
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2860
- }
2861
- declare module "dist/lib/core/namespaceCache/NamespaceCache" {
2862
- export = NamespaceCache;
2863
- class NamespaceCache {
2864
- static _instance: null;
2865
- namespaceCache: any[];
2866
- cacheNamespace(namespaceRegex: any): void;
2867
- isNamespaceCacheEmpty(): boolean;
2868
- isTypeAllowed(typeToCheck: any): boolean;
2869
- getCachedNamespaces(): any[];
2870
- clearCache(): number;
2871
- }
2872
- }
2873
- declare module "dist/lib/core/handler/EnableNamespaceHandler" {
2874
- const _exports: EnableNamespaceHandler;
2875
- export = _exports;
2876
- class EnableNamespaceHandler extends AbstractHandler {
2877
- requiredParametersCount: number;
2878
- process(command: any): number;
2879
- }
2880
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2881
- }
2882
- declare module "dist/lib/core/typeCache/TypeCache" {
2883
- export = TypeCache;
2884
- class TypeCache {
2885
- static _instance: null;
2886
- typeCache: any[];
2887
- cacheType(typRegex: any): void;
2888
- isTypeCacheEmpty(): boolean;
2889
- isTypeAllowed(typeToCheck: any): boolean;
2890
- getCachedTypes(): any[];
2891
- clearCache(): number;
2892
- }
2893
- }
2894
- declare module "dist/lib/core/handler/EnableTypeHandler" {
2895
- const _exports: EnableTypeHandler;
2896
- export = _exports;
2897
- class EnableTypeHandler extends AbstractHandler {
2898
- requiredParametersCount: number;
2899
- process(command: any): number;
2900
- }
2901
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2902
- }
2903
- declare module "dist/lib/core/handler/GetGlobalStaticFieldHandler" {
2904
- const _exports: GetGlobalStaticFieldHandler;
2905
- export = _exports;
2906
- class GetGlobalStaticFieldHandler extends AbstractHandler {
2907
- requiredParametersCount: number;
2908
- process(command: any): any;
2909
- }
2910
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2911
- }
2912
- declare module "dist/lib/core/handler/GetInstanceFieldHandler" {
2913
- const _exports: GetInstanceFieldHandler;
2914
- export = _exports;
2915
- class GetInstanceFieldHandler extends AbstractHandler {
2916
- requiredParametersCount: number;
2917
- process(command: any): any;
2918
- }
2919
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2920
- }
2921
- declare module "dist/lib/core/handler/GetInstanceMethodAsDelegateHandler" {
2922
- const _exports: GetInstanceMethodAsDelegateHandler;
2923
- export = _exports;
2924
- /**
2925
- * Handles retrieving an instance method as a delegate.
2926
- */
2927
- class GetInstanceMethodAsDelegateHandler extends AbstractHandler {
2928
- /** @type {Function|null} */
2929
- method: Function | null;
2930
- /** @type {number} */
2931
- requiredParametersCount: number;
2932
- /** @type {Array<*>} */
2933
- args: Array<any>;
2934
- /** @type {Object|null} */
2935
- instance: Object | null;
2936
- /**
2937
- * Processes a command to retrieve an instance method as a delegate.
2938
- * @param {Object} command - The command containing payload data.
2939
- * @param {Array<*>} command.payload - The payload containing instance, method name, and arguments.
2940
- * @returns {Function} The delegate for the instance method.
2941
- * @throws {Error} If the parameters mismatch or the method cannot be found.
2942
- */
2943
- process(command: {
2944
- payload: Array<any>;
2945
- }): Function;
2946
- /**
2947
- * Retrieves the method from the type.
2948
- * @param {Object} type - The class or constructor to search for the method.
2949
- * @param {string} methodName - The name of the method.
2950
- * @returns {Function|null} The found method or null if not found.
2951
- */
2952
- getMethod(type: Object, methodName: string): Function | null;
2953
- /**
2954
- * Creates an error message when the method is not found.
2955
- * @param {Object} type - The class or constructor.
2956
- * @param {string} methodName - The method name.
2957
- * @returns {Error} The error with detailed message.
2958
- */
2959
- createMethodNotFoundError(type: Object, methodName: string): Error;
2960
- }
2961
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2962
- }
2963
- declare module "dist/lib/core/handler/GetStaticFieldHandler" {
2964
- const _exports: GetStaticFieldHandler;
2965
- export = _exports;
2966
- class GetStaticFieldHandler extends AbstractHandler {
2967
- requiredParametersCount: number;
2968
- process(command: any): any;
2969
- }
2970
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
2971
- }
2972
- declare module "dist/lib/core/handler/GetStaticMethodAsDelegateHandler" {
2973
- const _exports: GetStaticMethodAsDelegateHandler;
2974
- export = _exports;
2975
- /**
2976
- * Handles retrieving a static method as a delegate.
2977
- */
2978
- class GetStaticMethodAsDelegateHandler extends AbstractHandler {
2979
- /** @type {Array<*>} */
2980
- args: Array<any>;
2981
- /** @type {Function|null} */
2982
- method: Function | null;
2983
- /** @type {number} */
2984
- requiredParametersCount: number;
2985
- /**
2986
- * Processes a command to retrieve a static method as a delegate.
2987
- * @param {Command} command - The command containing payload data.
2988
- * @param {Array<*>} command.payload - The payload containing type, method name, and arguments.
2989
- * @returns {Function} The delegate for the static method.
2990
- * @throws {Error} If the parameters mismatch or the method cannot be found.
2991
- */
2992
- process(command: Command): Function;
2993
- /**
2994
- * Retrieves the method from the type.
2995
- * @param {Object} type - The class or constructor to search for the method.
2996
- * @param {string} methodName - The name of the method.
2997
- * @param {Array<Function>} argsType - The argument types.
2998
- * @param {Object} modifier - Parameter modifier (not used in JS implementation).
2999
- * @returns {Function|null} The found method or null if not found.
3000
- */
3001
- getMethod(type: Object, methodName: string): Function | null;
3002
- /**
3003
- * Creates an error message when the method is not found.
3004
- * @param {Object} type - The class or constructor.
3005
- * @param {string} methodName - The method name.
3006
- * @returns {Error} The error with detailed message.
3007
- */
3008
- createMethodNotFoundError(type: Object, methodName: string): Error;
3009
- }
3010
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3011
- import { Command } from "@javonet/core";
3012
- }
3013
- declare module "dist/lib/core/handler/LoadLibraryHandler" {
3014
- const _exports: LoadLibraryHandler;
3015
- export = _exports;
3016
- class LoadLibraryHandler extends AbstractHandler {
3017
- static loadedLibraries: any[];
3018
- requiredParametersCount: number;
3019
- process(command: any): number;
3020
- getLoadedLibraries(): any[];
3021
- }
3022
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3023
- }
3024
- declare module "dist/lib/core/handler/GetTypeHandler" {
3025
- const _exports: GetTypeHandler;
3026
- export = _exports;
3027
- class GetTypeHandler extends AbstractHandler {
3028
- requiredParametersCount: number;
3029
- namespaceCache: NamespaceCache;
3030
- typeCache: TypeCache;
3031
- process(command: any): any;
3032
- getAvailableTypes(): any[];
3033
- }
3034
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3035
- import NamespaceCache = require("@javonet/core/lib/core/namespaceCache/NamespaceCache");
3036
- import TypeCache = require("@javonet/core/lib/core/typeCache/TypeCache");
3037
- }
3038
- declare module "dist/lib/core/handler/ValueHandler" {
3039
- const _exports: ValueHandler;
3040
- export = _exports;
3041
- class ValueHandler extends AbstractHandler {
3042
- process(command: any): any;
3043
- }
3044
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3045
- }
3046
- declare module "dist/lib/core/handler/InvokeStaticMethodHandler" {
3047
- const _exports: InvokeStaticMethodHandler;
3048
- export = _exports;
3049
- class InvokeStaticMethodHandler extends AbstractHandler {
3050
- requiredParametersCount: number;
3051
- process(command: any): any;
3052
- }
3053
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3054
- }
3055
- declare module "dist/lib/core/handler/SetStaticFieldHandler" {
3056
- const _exports: SetStaticFieldHandler;
3057
- export = _exports;
3058
- class SetStaticFieldHandler extends AbstractHandler {
3059
- requiredParametersCount: number;
3060
- process(command: any): number;
3061
- }
3062
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3063
- }
3064
- declare module "dist/lib/core/handler/ResolveReferenceHandler" {
3065
- const _exports: ResolveReferenceHandler;
3066
- export = _exports;
3067
- class ResolveReferenceHandler extends AbstractHandler {
3068
- process(command: any): any;
3069
- }
3070
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3071
- }
3072
- declare module "dist/lib/core/handler/SetInstanceFieldHandler" {
3073
- const _exports: SetInstanceFieldHandler;
3074
- export = _exports;
3075
- class SetInstanceFieldHandler extends AbstractHandler {
3076
- requiredParametersCount: number;
3077
- process(command: any): number;
3078
- }
3079
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3080
- }
3081
- declare module "dist/lib/core/handler/InvokeInstanceMethodHandler" {
3082
- const _exports: InvokeInstanceMethodHandler;
3083
- export = _exports;
3084
- class InvokeInstanceMethodHandler extends AbstractHandler {
3085
- requiredParametersCount: number;
3086
- process(command: any): any;
3087
- }
3088
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3089
- }
3090
- declare module "dist/lib/core/handler/PassDelegateHandler" {
3091
- const _exports: PassDelegateHandler;
3092
- export = _exports;
3093
- /**
3094
- * PassDelegateHandler class responsible for processing a command to create a delegate.
3095
- */
3096
- class PassDelegateHandler extends AbstractHandler {
3097
- /**
3098
- * Minimum required parameters count for the command.
3099
- * @type {number}
3100
- */
3101
- requiredParametersCount: number;
3102
- interpreter: Interpreter;
3103
- /**
3104
- * Processes the given command to create and compile a delegate.
3105
- * @param {Command} command - The command to process.
3106
- * @returns {Function} The compiled delegate function.
3107
- */
3108
- process(command: Command): Function;
3109
- /**
3110
- * Validates the command to ensure it has enough parameters.
3111
- * @param {Command} command - The command to validate.
3112
- */
3113
- validateCommand(command: Command): void;
3114
- /**
3115
- * Retrieves the arguments from the command payload.
3116
- * @param {Command} command - The command containing the payload.
3117
- * @returns {Array} The extracted arguments.
3118
- */
3119
- getArguments(command: Command): any[];
3120
- /**
3121
- * Extracts argument types from the arguments array.
3122
- * @param {Array} args - The arguments array.
3123
- * @returns {Array} The argument types.
3124
- */
3125
- getArgumentTypes(args: any[]): any[];
3126
- /**
3127
- * Retrieves the return type from the arguments array.
3128
- * @param {Array} args - The arguments array.
3129
- * @returns {Function} The return type.
3130
- */
3131
- getReturnType(args: any[]): Function;
3132
- /**
3133
- * Creates parameter expressions from argument types.
3134
- * @param {Array} argsTypes - The argument types.
3135
- * @returns {Array} The parameter expressions.
3136
- */
3137
- createParameters(argsTypes: any[]): any[];
3138
- /**
3139
- * Creates an array of arguments for the delegate.
3140
- * @param {string} delegateGuid - The delegate identifier.
3141
- * @param {Array} parameters - The parameter expressions.
3142
- * @returns {Array} The arguments array.
3143
- */
3144
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
3145
- /**
3146
- * Creates a command expression.
3147
- * @param {string} callingRuntimeName - The runtime name.
3148
- * @param {Array} payload - The arguments array.
3149
- * @returns {Object} The command object.
3150
- */
3151
- createCommand(callingRuntimeName: string, payload: any[]): Object;
3152
- /**
3153
- * Creates a method call to execute the command.
3154
- * @param {Command} command - The command object.
3155
- * @returns {Object} The response object.
3156
- */
3157
- createExecuteCall(command: Command): Object;
3158
- /**
3159
- * Retrieves the response payload from the execution call.
3160
- * @param {Object} executeCall - The execution call.
3161
- * @returns {Array} The response payload.
3162
- */
3163
- getResponse(executeCall: Object): any[];
3164
- /**
3165
- * Converts the first element of the response to the return type.
3166
- * @param {Array} response - The response payload.
3167
- * @param {Function} returnType - The return type.
3168
- * @returns {*} The converted first element.
3169
- */
3170
- convertFirstElement(response: any[], returnType: Function): any;
3171
- /**
3172
- * Creates a block of expressions for the delegate.
3173
- * @param {Function} returnType - The return type.
3174
- * @param {*} convertedFirstElement - The converted first element.
3175
- * @returns {Object} The block expression.
3176
- */
3177
- createBlock(returnType: Function, convertedFirstElement: any): Object;
3178
- /**
3179
- * Creates a delegate type.
3180
- * @param {Array} parameters - The parameter expressions.
3181
- * @param {Function} returnType - The return type.
3182
- * @returns {Function} The delegate type.
3183
- */
3184
- createDelegateType(parameters: any[], returnType: Function): Function;
3185
- }
3186
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3187
- import { Interpreter } from "@javonet/core";
3188
- import { Command } from "@javonet/core";
3189
- }
3190
- declare module "dist/lib/core/handler/InvokeDelegateHandler" {
3191
- const _exports: InvokeDelegateHandler;
3192
- export = _exports;
3193
- /**
3194
- * Handles invoking a delegate by GUID.
3195
- */
3196
- class InvokeDelegateHandler extends AbstractHandler {
3197
- /** @type {number} */
3198
- requiredParametersCount: number;
3199
- /**
3200
- * Processes a command to invoke a delegate.
3201
- * @param {Command} command - The command containing payload data.
3202
- * @returns {*} The result of the delegate invocation.
3203
- * @throws {Error} If the parameters mismatch or the delegate cannot be found.
3204
- */
3205
- process(command: Command): any;
3206
- }
3207
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3208
- }
3209
- declare module "dist/lib/core/handler/InvokeGlobalFunctionHandler" {
3210
- const _exports: InvokeGlobalFunctionHandler;
3211
- export = _exports;
3212
- class InvokeGlobalFunctionHandler extends AbstractHandler {
3213
- requiredParametersCount: number;
3214
- process(command: any): any;
3215
- }
3216
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3217
- }
3218
- declare module "dist/lib/core/handler/Handler" {
3219
- export class Handler {
3220
- handleCommand(command: any): Command;
3221
- parseCommand(response: any, runtimeName: any): Command;
3222
- }
3223
- export const handlers: {
3224
- 0: {
3225
- process(command: any): any;
3226
- handlers: any[];
3227
- handleCommand(command: any): void;
3228
- iterate(cmd: any): void;
3229
- process_stack_trace(error: any, class_name: any): any;
3230
- };
3231
- 1: {
3232
- requiredParametersCount: number;
3233
- process(command: any): number;
3234
- getLoadedLibraries(): any[];
3235
- handlers: any[];
3236
- handleCommand(command: any): void;
3237
- iterate(cmd: any): void;
3238
- process_stack_trace(error: any, class_name: any): any;
3239
- };
3240
- 2: {
3241
- requiredParametersCount: number;
3242
- process(command: any): any;
3243
- handlers: any[];
3244
- handleCommand(command: any): void;
3245
- iterate(cmd: any): void;
3246
- process_stack_trace(error: any, class_name: any): any;
3247
- };
3248
- 6: {
3249
- requiredParametersCount: number;
3250
- namespaceCache: import("@javonet/core/lib/core/namespaceCache/NamespaceCache");
3251
- typeCache: import("@javonet/core/lib/core/typeCache/TypeCache");
3252
- process(command: any): any;
3253
- getAvailableTypes(): any[];
3254
- handlers: any[];
3255
- handleCommand(command: any): void;
3256
- iterate(cmd: any): void;
3257
- process_stack_trace(error: any, class_name: any): any;
3258
- };
3259
- 3: {
3260
- requiredParametersCount: number;
3261
- process(command: any): any;
3262
- handlers: any[];
3263
- handleCommand(command: any): void;
3264
- iterate(cmd: any): void;
3265
- process_stack_trace(error: any, class_name: any): any;
3266
- };
3267
- 4: {
3268
- requiredParametersCount: number;
3269
- process(command: any): number;
3270
- handlers: any[];
3271
- handleCommand(command: any): void;
3272
- iterate(cmd: any): void;
3273
- process_stack_trace(error: any, class_name: any): any;
3274
- };
3275
- 5: {
3276
- requiredParametersCount: number;
3277
- process(command: any): any;
3278
- handlers: any[];
3279
- handleCommand(command: any): void;
3280
- iterate(cmd: any): void;
3281
- process_stack_trace(error: any, class_name: any): any;
3282
- };
3283
- 7: {
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
- 12: {
3291
- process(command: any): void;
3292
- handlers: any[];
3293
- handleCommand(command: any): void;
3294
- iterate(cmd: any): void;
3295
- process_stack_trace(error: any, class_name: any): any;
3296
- };
3297
- 13: {
3298
- requiredParametersCount: number;
3299
- process(command: any): any;
3300
- handlers: any[];
3301
- handleCommand(command: any): void;
3302
- iterate(cmd: any): void;
3303
- process_stack_trace(error: any, class_name: any): any;
3304
- };
3305
- 25: {
3306
- requiredParametersCount: number;
3307
- process(command: any): number;
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
- 9: {
3314
- requiredParametersCount: number;
3315
- process(command: any): any;
3316
- handlers: any[];
3317
- handleCommand(command: any): void;
3318
- iterate(cmd: any): void;
3319
- process_stack_trace(error: any, class_name: any): any;
3320
- };
3321
- 17: {
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
- 19: {
3329
- requiredParametersCount: number;
3330
- process(command: any): any;
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
- 20: {
3337
- requiredParametersCount: number;
3338
- process(command: any): number;
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
- 21: {
3345
- requiredParametersCount: number;
3346
- process(command: any): number;
3347
- handlers: any[];
3348
- handleCommand(command: any): void;
3349
- iterate(cmd: any): void;
3350
- process_stack_trace(error: any, class_name: any): any;
3351
- };
3352
- 22: {
3353
- requiredParametersCount: number;
3354
- process(command: any): number;
3355
- handlers: any[];
3356
- handleCommand(command: any): void;
3357
- iterate(cmd: any): void;
3358
- process_stack_trace(error: any, class_name: any): any;
3359
- };
3360
- 23: {
3361
- process(command: any): any;
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
- 34: {
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
- 35: {
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
- 37: {
3384
- args: Array<any>;
3385
- method: Function | null;
3386
- requiredParametersCount: number;
3387
- process(command: Command): Function;
3388
- getMethod(type: Object, methodName: string): Function | null;
3389
- createMethodNotFoundError(type: Object, methodName: string): Error;
3390
- handlers: any[];
3391
- handleCommand(command: any): void;
3392
- iterate(cmd: any): void;
3393
- process_stack_trace(error: any, class_name: any): any;
3394
- };
3395
- 38: {
3396
- method: Function | null;
3397
- requiredParametersCount: number;
3398
- args: Array<any>;
3399
- instance: Object | null;
3400
- process(command: {
3401
- payload: Array<any>;
3402
- }): Function;
3403
- getMethod(type: Object, methodName: string): Function | null;
3404
- createMethodNotFoundError(type: Object, methodName: string): Error;
3405
- handlers: any[];
3406
- handleCommand(command: any): void;
3407
- iterate(cmd: any): void;
3408
- process_stack_trace(error: any, class_name: any): any;
3409
- };
3410
- 39: {
3411
- requiredParametersCount: number;
3412
- interpreter: import("@javonet/core").Interpreter;
3413
- process(command: Command): Function;
3414
- validateCommand(command: Command): void;
3415
- getArguments(command: Command): any[];
3416
- getArgumentTypes(args: any[]): any[];
3417
- getReturnType(args: any[]): Function;
3418
- createParameters(argsTypes: any[]): any[];
3419
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
3420
- createCommand(callingRuntimeName: string, payload: any[]): Object;
3421
- createExecuteCall(command: Command): Object;
3422
- getResponse(executeCall: Object): any[];
3423
- convertFirstElement(response: any[], returnType: Function): any;
3424
- createBlock(returnType: Function, convertedFirstElement: any): Object;
3425
- createDelegateType(parameters: any[], returnType: Function): Function;
3426
- handlers: any[];
3427
- handleCommand(command: any): void;
3428
- iterate(cmd: any): void;
3429
- process_stack_trace(error: any, class_name: any): any;
3430
- };
3431
- 40: {
3432
- requiredParametersCount: number;
3433
- process(command: Command): any;
3434
- handlers: any[];
3435
- handleCommand(command: any): void;
3436
- iterate(cmd: any): void;
3437
- process_stack_trace(error: any, class_name: any): any;
3438
- };
3439
- 16: {
3440
- requiredParametersCount: number;
3441
- process(command: any): any;
3442
- handlers: any[];
3443
- handleCommand(command: any): void;
3444
- iterate(cmd: any): void;
3445
- process_stack_trace(error: any, class_name: any): any;
3446
- };
3447
- };
3448
- import { Command } from "@javonet/core";
3449
- }
3450
- declare module "dist/lib/core/handler/SetGlobalStaticFieldHandler" {
3451
- const _exports: SetGlobalStaticFieldHandler;
3452
- export = _exports;
3453
- class SetGlobalStaticFieldHandler extends AbstractHandler {
3454
- requiredParametersCount: number;
3455
- }
3456
- import AbstractHandler = require("@javonet/core/lib/core/handler/AbstractHandler");
3457
- }
3458
- declare module "dist/lib/utils/RuntimeLogger" {
3459
- export = RuntimeLogger;
3460
- class RuntimeLogger {
3461
- static notLoggedYet: boolean;
3462
- static getRuntimeInfo(): string;
3463
- static printRuntimeInfo(): void;
3464
- }
3465
- }
3466
- declare module "dist/lib/core/receiver/Receiver" {
3467
- export = Receiver;
3468
- class Receiver {
3469
- static connectionData: InMemoryConnectionData;
3470
- /**
3471
- * @param {number[]} messageByteArray
3472
- */
3473
- static sendCommand(messageByteArray: number[]): Uint8Array<any>;
3474
- static heartBeat(messageByteArray: any): Int8Array<ArrayBuffer>;
3475
- Receiver(): void;
3476
- }
3477
- import { InMemoryConnectionData } from "@javonet/core";
3478
- }
3479
- declare module "dist/lib/core/receiver/ReceiverNative" {
3480
- export {};
3481
- }
3482
- declare module "dist/lib/core/transmitter/TransmitterWrapper" {
3483
- export = TransmitterWrapper;
3484
- class TransmitterWrapper {
3485
- static isNativeLibraryLoaded(): boolean;
3486
- static loadNativeLibrary(): void;
3487
- static activate(licenseKey: any): any;
3488
- static sendCommand(messageArray: any): any;
3489
- static setConfigSource(configSource: any): any;
3490
- static setJavonetWorkingDirectory(path: any): void;
3491
- }
3492
- }
3493
- declare module "dist/lib/core/transmitter/Transmitter" {
3494
- export = Transmitter;
3495
- class Transmitter {
3496
- static sendCommand(messageArray: any): any;
3497
- static activate: (licenseKey: any) => any;
3498
- static setConfigSource(configSource: any): any;
3499
- static setJavonetWorkingDirectory(workingDirectory: any): void;
3500
- }
3501
- }
3502
- declare module "dist/lib/sdk/tools/JsonFileResolver" {
3503
- export = JsonFileResolver;
3504
- class JsonFileResolver {
3505
- constructor(path: any);
3506
- path: any;
3507
- jsonObject: any;
3508
- getLicenseKey(): any;
3509
- getRuntimes(): any;
3510
- getRuntime(runtimeName: any, configName: any): any;
3511
- getChannel(runtimeName: any, configName: any): any;
3512
- getChannelType(runtimeName: any, configName: any): any;
3513
- getChannelHost(runtimeName: any, configName: any): any;
3514
- getChannelPort(runtimeName: any, configName: any): any;
3515
- getModules(runtimeName: any, configName: any): any;
3516
- }
3517
- }
3518
- declare module "dist/lib/utils/connectionData/TcpConnectionData" {
3519
- export = TcpConnectionData;
3520
- /**
3521
- * @extends IConnectionData
3522
- */
3523
- class TcpConnectionData extends IConnectionData {
3524
- constructor(hostname: any, port: any);
3525
- _port: any;
3526
- _hostname: any;
3527
- _connectionType: 1;
3528
- ipAddress: string | null;
3529
- get connectionType(): 1;
3530
- get hostname(): any;
3531
- /**
3532
- * @param {TcpConnectionData} other
3533
- * @returns {boolean}
3534
- */
3535
- equals(other: TcpConnectionData): boolean;
3536
- /**
3537
- * @param {string} hostname
3538
- * @returns {string|null}
3539
- */
3540
- resolveIpAddress(hostname: string): string | null;
3541
- serializeConnectionData(): 1[];
3542
- #private;
3543
- }
3544
- import { IConnectionData } from "@javonet/core";
3545
- }
3546
- declare module "dist/lib/sdk/ConfigRuntimeFactory" {
3547
- export = ConfigRuntimeFactory;
3548
- /**
3549
- * The ConfigRuntimeFactory class provides methods for creating runtime contexts.
3550
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
3551
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3552
- */
3553
- class ConfigRuntimeFactory {
3554
- constructor(path: any);
3555
- path: any;
3556
- /**
3557
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
3558
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3559
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
3560
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3561
- */
3562
- clr(configName?: string): RuntimeContext;
3563
- /**
3564
- * Creates RuntimeContext instance to interact with the JVM runtime.
3565
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3566
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
3567
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3568
- */
3569
- jvm(configName?: string): RuntimeContext;
3570
- /**
3571
- * Creates RuntimeContext instance to interact with the .NET runtime.
3572
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3573
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
3574
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3575
- */
3576
- netcore(configName?: string): RuntimeContext;
3577
- /**
3578
- * Creates RuntimeContext instance to interact with the Perl runtime.
3579
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3580
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
3581
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3582
- */
3583
- perl(configName?: string): RuntimeContext;
3584
- /**
3585
- * Creates RuntimeContext instance to interact with the Python runtime.
3586
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3587
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
3588
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3589
- */
3590
- python(configName?: string): RuntimeContext;
3591
- /**
3592
- * Creates RuntimeContext instance to interact with the Ruby runtime.
3593
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3594
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
3595
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3596
- */
3597
- ruby(configName?: string): RuntimeContext;
3598
- /**
3599
- * Creates RuntimeContext instance to interact with Node.js runtime.
3600
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
3601
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
3602
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
3603
- */
3604
- nodejs(configName?: string): RuntimeContext;
3605
- #private;
3606
- }
3607
- import { RuntimeContext } from "@javonet/core";
3608
- }
3609
- declare module "dist/lib/sdk/Javonet" {
3610
- /**
3611
- * The Javonet class is a singleton class that serves as the entry point for interacting with Javonet.
3612
- * It provides methods to activate and initialize the Javonet SDK.
3613
- * It supports both in-memory and TCP connections.
3614
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/javonet-static-class)
3615
- */
3616
- export class Javonet {
3617
- /**
3618
- * Initializes Javonet using an in-memory channel on the same machine.
3619
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for an in-memory connection.
3620
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/in-memory-channel)
3621
- */
3622
- static inMemory(): RuntimeFactory;
3623
- /**
3624
- * Initializes Javonet with a TCP connection to a remote machine.
3625
- * @param {TcpConnectionData} tcpConnectionData - The tcp connection data of the remote machine.
3626
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a TCP connection.
3627
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/tcp-channel)
3628
- */
3629
- static tcp(tcpConnectionData: TcpConnectionData): RuntimeFactory;
3630
- /**
3631
- * Initializes Javonet with a WebSocket connection to a remote machine.
3632
- * @param {WsConnectionData} wsConnectionData - The WebSocket connection data of the remote machine.
3633
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a WebSocket connection.
3634
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/websocket-channel)
3635
- */
3636
- static ws(wsConnectionData: WsConnectionData): RuntimeFactory;
3637
- /**
3638
- * Initializes Javonet with a custom configuration file taken from external source.
3639
- * Currentyl supported: Configuration file in JSON format
3640
- * @param {string} configPath - Path to a configuration file.
3641
- * @returns {ConfigRuntimeFactory} A ConfigRuntimeFactory instance with configuration data.
3642
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/configure-channel)
3643
- */
3644
- static withConfig(configPath: string): ConfigRuntimeFactory;
3645
- /**
3646
- * Activates Javonet with the provided license key.
3647
- * @param {string} licenseKey - The license key to activate Javonet.
3648
- * @returns {number} The activation status code.
3649
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/activating-javonet)
3650
- */
3651
- static activate(licenseKey: string): number;
3652
- static getRuntimeInfo(): string;
3653
- /**
3654
- * Sets the configuration source for the Javonet SDK.
3655
- *
3656
- * @param {string} configSource - The configuration source.
3657
- */
3658
- static setConfigSource(configSource: string): void;
3659
- /**
3660
- * Sets the working directory for the Javonet SDK.
3661
- *
3662
- * @param {string} path - The working directory.
3663
- */
3664
- static setJavonetWorkingDirectory(path: string): void;
3665
- }
3666
- import TcpConnectionData = require("@javonet/core/lib/utils/connectionData/TcpConnectionData");
3667
- import { WsConnectionData } from "@javonet/core";
3668
- import { RuntimeFactory } from "@javonet/core";
3669
- import ConfigRuntimeFactory = require("@javonet/core/lib/sdk/ConfigRuntimeFactory");
3670
- export { TcpConnectionData, WsConnectionData };
3671
- }
3672
- declare module "dist/lib/sdk/tools/SdkExceptionHelper" {
3673
- export = sendExceptionToAppInsights;
3674
- /**
3675
- *
3676
- * @param {any} e
3677
- * @param {string} licenseKey
3678
- */
3679
- function sendExceptionToAppInsights(e: any, licenseKey: string): Promise<any>;
3680
- }
3681
- declare module "lib/core/handler/AbstractHandler" {
3682
- export = AbstractHandler;
3683
- class AbstractHandler {
3684
- handlers: any[];
3685
- process(command: any): void;
3686
- handleCommand(command: any): void;
3687
- iterate(cmd: any): void;
3688
- process_stack_trace(error: any, class_name: any): any;
3689
- }
3690
- }
3691
- declare module "lib/core/handler/ArrayGetItemHandler" {
3692
- const _exports: ArrayGetItemHandler;
3693
- export = _exports;
3694
- class ArrayGetItemHandler extends AbstractHandler {
3695
- requiredParametersCount: number;
3696
- process(command: any): any;
3697
- }
3698
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3699
- }
3700
- declare module "lib/core/handler/ArrayGetRankHandler" {
3701
- const _exports: ArrayGetRankHandler;
3702
- export = _exports;
3703
- class ArrayGetRankHandler extends AbstractHandler {
3704
- requiredParametersCount: number;
3705
- process(command: any): number;
3706
- }
3707
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3708
- }
3709
- declare module "lib/core/handler/ArrayGetSizeHandler" {
3710
- const _exports: ArrayGetSizeHandler;
3711
- export = _exports;
3712
- class ArrayGetSizeHandler extends AbstractHandler {
3713
- requiredParametersCount: number;
3714
- process(command: any): number;
3715
- }
3716
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3717
- }
3718
- declare module "lib/core/handler/ArrayHandler" {
3719
- const _exports: ArrayHandler;
3720
- export = _exports;
3721
- class ArrayHandler extends AbstractHandler {
3722
- process(command: any): any;
3723
- }
3724
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3725
- }
3726
- declare module "lib/core/handler/ArraySetItemHandler" {
3727
- const _exports: ArraySetItemHandler;
3728
- export = _exports;
3729
- class ArraySetItemHandler extends AbstractHandler {
3730
- requiredParametersCount: number;
3731
- process(command: any): number;
3732
- }
3733
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3734
- }
3735
- declare module "lib/core/handler/CastingHandler" {
3736
- const _exports: CastingHandler;
3737
- export = _exports;
3738
- class CastingHandler extends AbstractHandler {
3739
- }
3740
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3741
- }
3742
- declare module "lib/utils/TypesConverter" {
3743
- /**
3744
- * ConvertTypeHandler class handles the conversion of JType to Type.
3745
- */
3746
- export class ConvertTypeHandler {
3747
- /**
3748
- * Minimum required parameters count for the command.
3749
- * @type {number}
3750
- */
3751
- requiredParametersCount: number;
3752
- /**
3753
- * Processes the given command to convert JType to Type.
3754
- * @param {Object} command - The command to process.
3755
- * @returns {any} The converted type.
3756
- */
3757
- process(command: Object): any;
3758
- /**
3759
- * Validates the command to ensure it has enough parameters.
3760
- * @param {Object} command - The command to validate.
3761
- */
3762
- validateCommand(command: Object): void;
3763
- }
3764
- /**
3765
- * TypesConverter class provides utilities for converting between types.
3766
- */
3767
- export class TypesConverter {
3768
- /**
3769
- * Converts a JavaScript type to a JType equivalent.
3770
- * @param {Function} type - The JavaScript type.
3771
- * @returns {number} The corresponding JType.
3772
- */
3773
- static convertTypeToJType(type: Function): number;
3774
- /**
3775
- * Converts a JType to a JavaScript type equivalent.
3776
- * @param {number} type - The JType to convert.
3777
- * @returns {Function} The corresponding JavaScript type.
3778
- */
3779
- static convertJTypeToType(type: number): Function;
3780
- }
3781
- /**
3782
- * Enum for JType mappings.
3783
- */
3784
- export type JType = number;
3785
- export namespace JType {
3786
- let Boolean: number;
3787
- let Float: number;
3788
- let String: number;
3789
- let Null: number;
3790
- }
3791
- }
3792
- declare module "lib/core/handler/ConvertTypeHandler" {
3793
- export = ConvertTypeHandler;
3794
- /**
3795
- * ConvertTypeHandler class handles the conversion of JType to Type.
3796
- */
3797
- class ConvertTypeHandler extends AbstractHandler {
3798
- /**
3799
- * Minimum required parameters count for the command.
3800
- * @type {number}
3801
- */
3802
- requiredParametersCount: number;
3803
- /**
3804
- * Processes the given command to convert JType to Type.
3805
- * @param {Object} command - The command to process.
3806
- * @returns {any} The converted type.
3807
- */
3808
- process(command: Object): any;
3809
- /**
3810
- * Validates the command to ensure it has enough parameters.
3811
- * @param {Object} command - The command to validate.
3812
- */
3813
- validateCommand(command: Object): void;
3814
- }
3815
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3816
- }
3817
- declare module "lib/core/handler/CreateClassInstanceHandler" {
3818
- const _exports: CreateClassInstanceHandler;
3819
- export = _exports;
3820
- class CreateClassInstanceHandler extends AbstractHandler {
3821
- requiredParametersCount: number;
3822
- process(command: any): any;
3823
- }
3824
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3825
- }
3826
- declare module "lib/utils/uuid/rng" {
3827
- function _exports(): Uint8Array<ArrayBuffer>;
3828
- export = _exports;
3829
- }
3830
- declare module "lib/utils/uuid/REGEX" {
3831
- const _exports: RegExp;
3832
- export = _exports;
3833
- }
3834
- declare module "lib/utils/uuid/validate" {
3835
- export = validate;
3836
- function validate(uuid: any): boolean;
3837
- }
3838
- declare module "lib/utils/uuid/stringify" {
3839
- export = stringify;
3840
- function stringify(arr: any, offset?: number): string;
3841
- }
3842
- declare module "lib/utils/uuid/v4" {
3843
- export = v4;
3844
- function v4(options: any, buf: any, offset: any): any;
3845
- }
3846
- declare module "lib/core/referenceCache/ReferencesCache" {
3847
- export = ReferencesCache;
3848
- class ReferencesCache {
3849
- static getInstance(): any;
3850
- cacheReference(reference: any): any;
3851
- resolveReference(id: any): any;
3852
- deleteReference(referenceGuid: any): number;
3853
- }
3854
- }
3855
- declare module "lib/core/handler/DestructReferenceHandler" {
3856
- const _exports: DestructReferenceHandler;
3857
- export = _exports;
3858
- class DestructReferenceHandler extends AbstractHandler {
3859
- process(command: any): any;
3860
- }
3861
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3862
- }
3863
- declare module "lib/core/namespaceCache/NamespaceCache" {
3864
- export = NamespaceCache;
3865
- class NamespaceCache {
3866
- static _instance: null;
3867
- namespaceCache: any[];
3868
- cacheNamespace(namespaceRegex: any): void;
3869
- isNamespaceCacheEmpty(): boolean;
3870
- isTypeAllowed(typeToCheck: any): boolean;
3871
- getCachedNamespaces(): any[];
3872
- clearCache(): number;
3873
- }
3874
- }
3875
- declare module "lib/core/handler/EnableNamespaceHandler" {
3876
- const _exports: EnableNamespaceHandler;
3877
- export = _exports;
3878
- class EnableNamespaceHandler extends AbstractHandler {
3879
- requiredParametersCount: number;
3880
- process(command: any): number;
3881
- }
3882
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3883
- }
3884
- declare module "lib/core/typeCache/TypeCache" {
3885
- export = TypeCache;
3886
- class TypeCache {
3887
- static _instance: null;
3888
- typeCache: any[];
3889
- cacheType(typRegex: any): void;
3890
- isTypeCacheEmpty(): boolean;
3891
- isTypeAllowed(typeToCheck: any): boolean;
3892
- getCachedTypes(): any[];
3893
- clearCache(): number;
3894
- }
3895
- }
3896
- declare module "lib/core/handler/EnableTypeHandler" {
3897
- const _exports: EnableTypeHandler;
3898
- export = _exports;
3899
- class EnableTypeHandler extends AbstractHandler {
3900
- requiredParametersCount: number;
3901
- process(command: any): number;
3902
- }
3903
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3904
- }
3905
- declare module "lib/core/handler/GetGlobalStaticFieldHandler" {
3906
- const _exports: GetGlobalStaticFieldHandler;
3907
- export = _exports;
3908
- class GetGlobalStaticFieldHandler extends AbstractHandler {
3909
- requiredParametersCount: number;
3910
- process(command: any): any;
3911
- }
3912
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3913
- }
3914
- declare module "lib/core/handler/GetInstanceFieldHandler" {
3915
- const _exports: GetInstanceFieldHandler;
3916
- export = _exports;
3917
- class GetInstanceFieldHandler extends AbstractHandler {
3918
- requiredParametersCount: number;
3919
- process(command: any): any;
3920
- }
3921
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3922
- }
3923
- declare module "lib/core/handler/GetInstanceMethodAsDelegateHandler" {
3924
- const _exports: GetInstanceMethodAsDelegateHandler;
3925
- export = _exports;
3926
- /**
3927
- * Handles retrieving an instance method as a delegate.
3928
- */
3929
- class GetInstanceMethodAsDelegateHandler extends AbstractHandler {
3930
- /** @type {Function|null} */
3931
- method: Function | null;
3932
- /** @type {number} */
3933
- requiredParametersCount: number;
3934
- /** @type {Array<*>} */
3935
- args: Array<any>;
3936
- /** @type {Object|null} */
3937
- instance: Object | null;
3938
- /**
3939
- * Processes a command to retrieve an instance method as a delegate.
3940
- * @param {Object} command - The command containing payload data.
3941
- * @param {Array<*>} command.payload - The payload containing instance, method name, and arguments.
3942
- * @returns {Function} The delegate for the instance method.
3943
- * @throws {Error} If the parameters mismatch or the method cannot be found.
3944
- */
3945
- process(command: {
3946
- payload: Array<any>;
3947
- }): Function;
3948
- /**
3949
- * Retrieves the method from the type.
3950
- * @param {Object} type - The class or constructor to search for the method.
3951
- * @param {string} methodName - The name of the method.
3952
- * @returns {Function|null} The found method or null if not found.
3953
- */
3954
- getMethod(type: Object, methodName: string): Function | null;
3955
- /**
3956
- * Creates an error message when the method is not found.
3957
- * @param {Object} type - The class or constructor.
3958
- * @param {string} methodName - The method name.
3959
- * @returns {Error} The error with detailed message.
3960
- */
3961
- createMethodNotFoundError(type: Object, methodName: string): Error;
3962
- }
3963
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3964
- }
3965
- declare module "lib/core/handler/GetStaticFieldHandler" {
3966
- const _exports: GetStaticFieldHandler;
3967
- export = _exports;
3968
- class GetStaticFieldHandler extends AbstractHandler {
3969
- requiredParametersCount: number;
3970
- process(command: any): any;
3971
- }
3972
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
3973
- }
3974
- declare module "lib/core/handler/GetStaticMethodAsDelegateHandler" {
3975
- const _exports: GetStaticMethodAsDelegateHandler;
3976
- export = _exports;
3977
- /**
3978
- * Handles retrieving a static method as a delegate.
3979
- */
3980
- class GetStaticMethodAsDelegateHandler extends AbstractHandler {
3981
- /** @type {Array<*>} */
3982
- args: Array<any>;
3983
- /** @type {Function|null} */
3984
- method: Function | null;
3985
- /** @type {number} */
3986
- requiredParametersCount: number;
3987
- /**
3988
- * Processes a command to retrieve a static method as a delegate.
3989
- * @param {Command} command - The command containing payload data.
3990
- * @param {Array<*>} command.payload - The payload containing type, method name, and arguments.
3991
- * @returns {Function} The delegate for the static method.
3992
- * @throws {Error} If the parameters mismatch or the method cannot be found.
3993
- */
3994
- process(command: Command): Function;
3995
- /**
3996
- * Retrieves the method from the type.
3997
- * @param {Object} type - The class or constructor to search for the method.
3998
- * @param {string} methodName - The name of the method.
3999
- * @param {Array<Function>} argsType - The argument types.
4000
- * @param {Object} modifier - Parameter modifier (not used in JS implementation).
4001
- * @returns {Function|null} The found method or null if not found.
4002
- */
4003
- getMethod(type: Object, methodName: string): Function | null;
4004
- /**
4005
- * Creates an error message when the method is not found.
4006
- * @param {Object} type - The class or constructor.
4007
- * @param {string} methodName - The method name.
4008
- * @returns {Error} The error with detailed message.
4009
- */
4010
- createMethodNotFoundError(type: Object, methodName: string): Error;
4011
- }
4012
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4013
- import { Command } from "@javonet/core";
4014
- }
4015
- declare module "lib/core/handler/LoadLibraryHandler" {
4016
- const _exports: LoadLibraryHandler;
4017
- export = _exports;
4018
- class LoadLibraryHandler extends AbstractHandler {
4019
- static loadedLibraries: any[];
4020
- requiredParametersCount: number;
4021
- process(command: any): number;
4022
- getLoadedLibraries(): any[];
4023
- }
4024
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4025
- }
4026
- declare module "lib/core/handler/GetTypeHandler" {
4027
- const _exports: GetTypeHandler;
4028
- export = _exports;
4029
- class GetTypeHandler extends AbstractHandler {
4030
- requiredParametersCount: number;
4031
- namespaceCache: NamespaceCache;
4032
- typeCache: TypeCache;
4033
- process(command: any): any;
4034
- getAvailableTypes(): any[];
4035
- }
4036
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4037
- import NamespaceCache = require("lib/core/namespaceCache/NamespaceCache");
4038
- import TypeCache = require("lib/core/typeCache/TypeCache");
4039
- }
4040
- declare module "lib/core/handler/ValueHandler" {
4041
- const _exports: ValueHandler;
4042
- export = _exports;
4043
- class ValueHandler extends AbstractHandler {
4044
- process(command: any): any;
4045
- }
4046
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4047
- }
4048
- declare module "lib/core/handler/InvokeStaticMethodHandler" {
4049
- const _exports: InvokeStaticMethodHandler;
4050
- export = _exports;
4051
- class InvokeStaticMethodHandler extends AbstractHandler {
4052
- requiredParametersCount: number;
4053
- process(command: any): any;
4054
- }
4055
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4056
- }
4057
- declare module "lib/core/handler/SetStaticFieldHandler" {
4058
- const _exports: SetStaticFieldHandler;
4059
- export = _exports;
4060
- class SetStaticFieldHandler extends AbstractHandler {
4061
- requiredParametersCount: number;
4062
- process(command: any): number;
4063
- }
4064
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4065
- }
4066
- declare module "lib/core/handler/ResolveReferenceHandler" {
4067
- const _exports: ResolveReferenceHandler;
4068
- export = _exports;
4069
- class ResolveReferenceHandler extends AbstractHandler {
4070
- process(command: any): any;
4071
- }
4072
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4073
- }
4074
- declare module "lib/core/handler/SetInstanceFieldHandler" {
4075
- const _exports: SetInstanceFieldHandler;
4076
- export = _exports;
4077
- class SetInstanceFieldHandler extends AbstractHandler {
4078
- requiredParametersCount: number;
4079
- process(command: any): number;
4080
- }
4081
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4082
- }
4083
- declare module "lib/core/handler/InvokeInstanceMethodHandler" {
4084
- const _exports: InvokeInstanceMethodHandler;
4085
- export = _exports;
4086
- class InvokeInstanceMethodHandler extends AbstractHandler {
4087
- requiredParametersCount: number;
4088
- process(command: any): any;
4089
- }
4090
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4091
- }
4092
- declare module "lib/core/handler/PassDelegateHandler" {
4093
- const _exports: PassDelegateHandler;
4094
- export = _exports;
4095
- /**
4096
- * PassDelegateHandler class responsible for processing a command to create a delegate.
4097
- */
4098
- class PassDelegateHandler extends AbstractHandler {
4099
- /**
4100
- * Minimum required parameters count for the command.
4101
- * @type {number}
4102
- */
4103
- requiredParametersCount: number;
4104
- interpreter: Interpreter;
4105
- /**
4106
- * Processes the given command to create and compile a delegate.
4107
- * @param {Command} command - The command to process.
4108
- * @returns {Function} The compiled delegate function.
4109
- */
4110
- process(command: Command): Function;
4111
- /**
4112
- * Validates the command to ensure it has enough parameters.
4113
- * @param {Command} command - The command to validate.
4114
- */
4115
- validateCommand(command: Command): void;
4116
- /**
4117
- * Retrieves the arguments from the command payload.
4118
- * @param {Command} command - The command containing the payload.
4119
- * @returns {Array} The extracted arguments.
4120
- */
4121
- getArguments(command: Command): any[];
4122
- /**
4123
- * Extracts argument types from the arguments array.
4124
- * @param {Array} args - The arguments array.
4125
- * @returns {Array} The argument types.
4126
- */
4127
- getArgumentTypes(args: any[]): any[];
4128
- /**
4129
- * Retrieves the return type from the arguments array.
4130
- * @param {Array} args - The arguments array.
4131
- * @returns {Function} The return type.
4132
- */
4133
- getReturnType(args: any[]): Function;
4134
- /**
4135
- * Creates parameter expressions from argument types.
4136
- * @param {Array} argsTypes - The argument types.
4137
- * @returns {Array} The parameter expressions.
4138
- */
4139
- createParameters(argsTypes: any[]): any[];
4140
- /**
4141
- * Creates an array of arguments for the delegate.
4142
- * @param {string} delegateGuid - The delegate identifier.
4143
- * @param {Array} parameters - The parameter expressions.
4144
- * @returns {Array} The arguments array.
4145
- */
4146
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
4147
- /**
4148
- * Creates a command expression.
4149
- * @param {string} callingRuntimeName - The runtime name.
4150
- * @param {Array} payload - The arguments array.
4151
- * @returns {Object} The command object.
4152
- */
4153
- createCommand(callingRuntimeName: string, payload: any[]): Object;
4154
- /**
4155
- * Creates a method call to execute the command.
4156
- * @param {Command} command - The command object.
4157
- * @returns {Object} The response object.
4158
- */
4159
- createExecuteCall(command: Command): Object;
4160
- /**
4161
- * Retrieves the response payload from the execution call.
4162
- * @param {Object} executeCall - The execution call.
4163
- * @returns {Array} The response payload.
4164
- */
4165
- getResponse(executeCall: Object): any[];
4166
- /**
4167
- * Converts the first element of the response to the return type.
4168
- * @param {Array} response - The response payload.
4169
- * @param {Function} returnType - The return type.
4170
- * @returns {*} The converted first element.
4171
- */
4172
- convertFirstElement(response: any[], returnType: Function): any;
4173
- /**
4174
- * Creates a block of expressions for the delegate.
4175
- * @param {Function} returnType - The return type.
4176
- * @param {*} convertedFirstElement - The converted first element.
4177
- * @returns {Object} The block expression.
4178
- */
4179
- createBlock(returnType: Function, convertedFirstElement: any): Object;
4180
- /**
4181
- * Creates a delegate type.
4182
- * @param {Array} parameters - The parameter expressions.
4183
- * @param {Function} returnType - The return type.
4184
- * @returns {Function} The delegate type.
4185
- */
4186
- createDelegateType(parameters: any[], returnType: Function): Function;
4187
- }
4188
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4189
- import { Interpreter } from "@javonet/core";
4190
- import { Command } from "@javonet/core";
4191
- }
4192
- declare module "lib/core/handler/InvokeDelegateHandler" {
4193
- const _exports: InvokeDelegateHandler;
4194
- export = _exports;
4195
- /**
4196
- * Handles invoking a delegate by GUID.
4197
- */
4198
- class InvokeDelegateHandler extends AbstractHandler {
4199
- /** @type {number} */
4200
- requiredParametersCount: number;
4201
- /**
4202
- * Processes a command to invoke a delegate.
4203
- * @param {Command} command - The command containing payload data.
4204
- * @returns {*} The result of the delegate invocation.
4205
- * @throws {Error} If the parameters mismatch or the delegate cannot be found.
4206
- */
4207
- process(command: Command): any;
4208
- }
4209
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4210
- }
4211
- declare module "lib/core/handler/InvokeGlobalFunctionHandler" {
4212
- const _exports: InvokeGlobalFunctionHandler;
4213
- export = _exports;
4214
- class InvokeGlobalFunctionHandler extends AbstractHandler {
4215
- requiredParametersCount: number;
4216
- process(command: any): any;
4217
- }
4218
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4219
- }
4220
- declare module "lib/core/handler/Handler" {
4221
- export class Handler {
4222
- handleCommand(command: any): Command;
4223
- parseCommand(response: any, runtimeName: any): Command;
4224
- }
4225
- export const handlers: {
4226
- 0: {
4227
- process(command: any): any;
4228
- handlers: any[];
4229
- handleCommand(command: any): void;
4230
- iterate(cmd: any): void;
4231
- process_stack_trace(error: any, class_name: any): any;
4232
- };
4233
- 1: {
4234
- requiredParametersCount: number;
4235
- process(command: any): number;
4236
- getLoadedLibraries(): any[];
4237
- handlers: any[];
4238
- handleCommand(command: any): void;
4239
- iterate(cmd: any): void;
4240
- process_stack_trace(error: any, class_name: any): any;
4241
- };
4242
- 2: {
4243
- requiredParametersCount: number;
4244
- process(command: any): any;
4245
- handlers: any[];
4246
- handleCommand(command: any): void;
4247
- iterate(cmd: any): void;
4248
- process_stack_trace(error: any, class_name: any): any;
4249
- };
4250
- 6: {
4251
- requiredParametersCount: number;
4252
- namespaceCache: import("lib/core/namespaceCache/NamespaceCache");
4253
- typeCache: import("lib/core/typeCache/TypeCache");
4254
- process(command: any): any;
4255
- getAvailableTypes(): any[];
4256
- handlers: any[];
4257
- handleCommand(command: any): void;
4258
- iterate(cmd: any): void;
4259
- process_stack_trace(error: any, class_name: any): any;
4260
- };
4261
- 3: {
4262
- requiredParametersCount: number;
4263
- process(command: any): any;
4264
- handlers: any[];
4265
- handleCommand(command: any): void;
4266
- iterate(cmd: any): void;
4267
- process_stack_trace(error: any, class_name: any): any;
4268
- };
4269
- 4: {
4270
- requiredParametersCount: number;
4271
- process(command: any): number;
4272
- handlers: any[];
4273
- handleCommand(command: any): void;
4274
- iterate(cmd: any): void;
4275
- process_stack_trace(error: any, class_name: any): any;
4276
- };
4277
- 5: {
4278
- requiredParametersCount: number;
4279
- process(command: any): any;
4280
- handlers: any[];
4281
- handleCommand(command: any): void;
4282
- iterate(cmd: any): void;
4283
- process_stack_trace(error: any, class_name: any): any;
4284
- };
4285
- 7: {
4286
- process(command: any): any;
4287
- handlers: any[];
4288
- handleCommand(command: any): void;
4289
- iterate(cmd: any): void;
4290
- process_stack_trace(error: any, class_name: any): any;
4291
- };
4292
- 12: {
4293
- process(command: any): void;
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
- 13: {
4300
- requiredParametersCount: number;
4301
- process(command: any): any;
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
- 25: {
4308
- requiredParametersCount: number;
4309
- process(command: any): number;
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
- 9: {
4316
- requiredParametersCount: number;
4317
- process(command: any): any;
4318
- handlers: any[];
4319
- handleCommand(command: any): void;
4320
- iterate(cmd: any): void;
4321
- process_stack_trace(error: any, class_name: any): any;
4322
- };
4323
- 17: {
4324
- process(command: any): any;
4325
- handlers: any[];
4326
- handleCommand(command: any): void;
4327
- iterate(cmd: any): void;
4328
- process_stack_trace(error: any, class_name: any): any;
4329
- };
4330
- 19: {
4331
- requiredParametersCount: number;
4332
- process(command: any): any;
4333
- handlers: any[];
4334
- handleCommand(command: any): void;
4335
- iterate(cmd: any): void;
4336
- process_stack_trace(error: any, class_name: any): any;
4337
- };
4338
- 20: {
4339
- requiredParametersCount: number;
4340
- process(command: any): number;
4341
- handlers: any[];
4342
- handleCommand(command: any): void;
4343
- iterate(cmd: any): void;
4344
- process_stack_trace(error: any, class_name: any): any;
4345
- };
4346
- 21: {
4347
- requiredParametersCount: number;
4348
- process(command: any): number;
4349
- handlers: any[];
4350
- handleCommand(command: any): void;
4351
- iterate(cmd: any): void;
4352
- process_stack_trace(error: any, class_name: any): any;
4353
- };
4354
- 22: {
4355
- requiredParametersCount: number;
4356
- process(command: any): number;
4357
- handlers: any[];
4358
- handleCommand(command: any): void;
4359
- iterate(cmd: any): void;
4360
- process_stack_trace(error: any, class_name: any): any;
4361
- };
4362
- 23: {
4363
- process(command: any): any;
4364
- handlers: any[];
4365
- handleCommand(command: any): void;
4366
- iterate(cmd: any): void;
4367
- process_stack_trace(error: any, class_name: any): any;
4368
- };
4369
- 34: {
4370
- requiredParametersCount: number;
4371
- process(command: any): number;
4372
- handlers: any[];
4373
- handleCommand(command: any): void;
4374
- iterate(cmd: any): void;
4375
- process_stack_trace(error: any, class_name: any): any;
4376
- };
4377
- 35: {
4378
- requiredParametersCount: number;
4379
- process(command: any): number;
4380
- handlers: any[];
4381
- handleCommand(command: any): void;
4382
- iterate(cmd: any): void;
4383
- process_stack_trace(error: any, class_name: any): any;
4384
- };
4385
- 37: {
4386
- args: Array<any>;
4387
- method: Function | null;
4388
- requiredParametersCount: number;
4389
- process(command: Command): Function;
4390
- getMethod(type: Object, methodName: string): Function | null;
4391
- createMethodNotFoundError(type: Object, methodName: string): Error;
4392
- handlers: any[];
4393
- handleCommand(command: any): void;
4394
- iterate(cmd: any): void;
4395
- process_stack_trace(error: any, class_name: any): any;
4396
- };
4397
- 38: {
4398
- method: Function | null;
4399
- requiredParametersCount: number;
4400
- args: Array<any>;
4401
- instance: Object | null;
4402
- process(command: {
4403
- payload: Array<any>;
4404
- }): Function;
4405
- getMethod(type: Object, methodName: string): Function | null;
4406
- createMethodNotFoundError(type: Object, methodName: string): Error;
4407
- handlers: any[];
4408
- handleCommand(command: any): void;
4409
- iterate(cmd: any): void;
4410
- process_stack_trace(error: any, class_name: any): any;
4411
- };
4412
- 39: {
4413
- requiredParametersCount: number;
4414
- interpreter: import("@javonet/core").Interpreter;
4415
- process(command: Command): Function;
4416
- validateCommand(command: Command): void;
4417
- getArguments(command: Command): any[];
4418
- getArgumentTypes(args: any[]): any[];
4419
- getReturnType(args: any[]): Function;
4420
- createParameters(argsTypes: any[]): any[];
4421
- createArgsArray(delegateGuid: string, parameters: any[]): any[];
4422
- createCommand(callingRuntimeName: string, payload: any[]): Object;
4423
- createExecuteCall(command: Command): Object;
4424
- getResponse(executeCall: Object): any[];
4425
- convertFirstElement(response: any[], returnType: Function): any;
4426
- createBlock(returnType: Function, convertedFirstElement: any): Object;
4427
- createDelegateType(parameters: any[], returnType: Function): Function;
4428
- handlers: any[];
4429
- handleCommand(command: any): void;
4430
- iterate(cmd: any): void;
4431
- process_stack_trace(error: any, class_name: any): any;
4432
- };
4433
- 40: {
4434
- requiredParametersCount: number;
4435
- process(command: Command): any;
4436
- handlers: any[];
4437
- handleCommand(command: any): void;
4438
- iterate(cmd: any): void;
4439
- process_stack_trace(error: any, class_name: any): any;
4440
- };
4441
- 16: {
4442
- requiredParametersCount: number;
4443
- process(command: any): any;
4444
- handlers: any[];
4445
- handleCommand(command: any): void;
4446
- iterate(cmd: any): void;
4447
- process_stack_trace(error: any, class_name: any): any;
4448
- };
4449
- };
4450
- import { Command } from "@javonet/core";
4451
- }
4452
- declare module "lib/core/handler/SetGlobalStaticFieldHandler" {
4453
- const _exports: SetGlobalStaticFieldHandler;
4454
- export = _exports;
4455
- class SetGlobalStaticFieldHandler extends AbstractHandler {
4456
- requiredParametersCount: number;
4457
- }
4458
- import AbstractHandler = require("lib/core/handler/AbstractHandler");
4459
- }
4460
- declare module "lib/utils/RuntimeLogger" {
4461
- export = RuntimeLogger;
4462
- class RuntimeLogger {
4463
- static notLoggedYet: boolean;
4464
- static getRuntimeInfo(): string;
4465
- static printRuntimeInfo(): void;
4466
- }
4467
- }
4468
- declare module "lib/core/receiver/Receiver" {
4469
- export = Receiver;
4470
- class Receiver {
4471
- static connectionData: InMemoryConnectionData;
4472
- /**
4473
- * @param {number[]} messageByteArray
4474
- */
4475
- static sendCommand(messageByteArray: number[]): Uint8Array<any>;
4476
- static heartBeat(messageByteArray: any): Int8Array<ArrayBuffer>;
4477
- Receiver(): void;
4478
- }
4479
- import { InMemoryConnectionData } from "@javonet/core";
4480
- }
4481
- declare module "lib/core/receiver/ReceiverNative" {
4482
- export {};
4483
- }
4484
- declare module "lib/core/transmitter/TransmitterWrapper" {
4485
- export = TransmitterWrapper;
4486
- class TransmitterWrapper {
4487
- static isNativeLibraryLoaded(): boolean;
4488
- static loadNativeLibrary(): void;
4489
- static activate(licenseKey: any): any;
4490
- static sendCommand(messageArray: any): any;
4491
- static setConfigSource(configSource: any): any;
4492
- static setJavonetWorkingDirectory(path: any): void;
4493
- }
4494
- }
4495
- declare module "lib/core/transmitter/Transmitter" {
4496
- export = Transmitter;
4497
- class Transmitter {
4498
- static sendCommand(messageArray: any): any;
4499
- static activate: (licenseKey: any) => any;
4500
- static setConfigSource(configSource: any): any;
4501
- static setJavonetWorkingDirectory(workingDirectory: any): void;
4502
- }
4503
- }
4504
- declare module "lib/core/webSocketClient/WebSocketClient" {
4505
- export = WebSocketClient;
4506
- /**
4507
- * WebSocketClient class that handles WebSocket connection, message sending, and automatic disconnection.
4508
- */
4509
- class WebSocketClient {
4510
- /**
4511
- * @param {string} url
4512
- * @param {object} options
4513
- */
4514
- constructor(url: string, options: object);
4515
- /**
4516
- * @type {string}
4517
- */
4518
- url: string;
4519
- /**
4520
- * @type {WebSocket | null}
4521
- */
4522
- instance: WebSocket | null;
4523
- /**
4524
- * @type {boolean} isConnected indicates whether the WebSocket is connected.
4525
- */
4526
- isConnected: boolean;
4527
- /**
4528
- * @type {boolean}
4529
- */
4530
- isDisconnectedAfterMessage: boolean;
4531
- /**
4532
- * Connects to the WebSocket server.
4533
- * @async
4534
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
4535
- */
4536
- connect(): Promise<WebSocket>;
4537
- /**
4538
- * Sends messageArray through websocket connection
4539
- * @async
4540
- * @param {Buffer|ArrayBuffer|Buffer[]} messageArray
4541
- * @returns {Promise<Buffer|ArrayBuffer|Buffer[]>}
4542
- */
4543
- send(messageArray: Buffer | ArrayBuffer | Buffer[]): Promise<Buffer | ArrayBuffer | Buffer[]>;
4544
- /**
4545
- * Disconnects the WebSocket by terminating the connection.
4546
- */
4547
- disconnect(): void;
4548
- /**
4549
- * Connects to the WebSocket server.
4550
- * @private
4551
- * @async
4552
- * @returns {Promise<WebSocket>} - A promise that resolves when the connection is established.
4553
- */
4554
- private _connect;
4555
- }
4556
- }
4557
- declare module "lib/core/transmitter/TransmitterWebsocket" {
4558
- export = TransmitterWebsocket;
4559
- /** @typedef {import('../../../../core/lib/declarations').WsConnectionData} WsConnectionData */
4560
- class TransmitterWebsocket {
4561
- /**
4562
- * @returns {void}
4563
- */
4564
- static initialize(): void;
4565
- /**
4566
- * @returns {void}
4567
- */
4568
- static setConfigSource(): void;
4569
- /**
4570
- * @returns {void}
4571
- */
4572
- static activate(): void;
4573
- /**
4574
- * @async
4575
- * @param {number[]} messageByteArray
4576
- * @param {WsConnectionData} connectionData
4577
- * @returns {Promise<number[]>} responseByteArray
4578
- */
4579
- static sendCommand(messageByteArray: number[], connectionData: WsConnectionData): Promise<number[]>;
4580
- }
4581
- namespace TransmitterWebsocket {
4582
- export { WsConnectionData };
4583
- }
4584
- type WsConnectionData = any;
4585
- }
4586
- declare module "lib/sdk/tools/JsonFileResolver" {
4587
- export = JsonFileResolver;
4588
- class JsonFileResolver {
4589
- constructor(path: any);
4590
- path: any;
4591
- jsonObject: any;
4592
- getLicenseKey(): any;
4593
- getRuntimes(): any;
4594
- getRuntime(runtimeName: any, configName: any): any;
4595
- getChannel(runtimeName: any, configName: any): any;
4596
- getChannelType(runtimeName: any, configName: any): any;
4597
- getChannelHost(runtimeName: any, configName: any): any;
4598
- getChannelPort(runtimeName: any, configName: any): any;
4599
- getModules(runtimeName: any, configName: any): any;
4600
- }
4601
- }
4602
- declare module "lib/utils/connectionData/TcpConnectionData" {
4603
- export = TcpConnectionData;
4604
- /**
4605
- * @extends IConnectionData
4606
- */
4607
- class TcpConnectionData extends IConnectionData {
4608
- constructor(hostname: any, port: any);
4609
- _port: any;
4610
- _hostname: any;
4611
- _connectionType: 1;
4612
- ipAddress: string | null;
4613
- get connectionType(): 1;
4614
- get hostname(): any;
4615
- /**
4616
- * @param {TcpConnectionData} other
4617
- * @returns {boolean}
4618
- */
4619
- equals(other: TcpConnectionData): boolean;
4620
- /**
4621
- * @param {string} hostname
4622
- * @returns {string|null}
4623
- */
4624
- resolveIpAddress(hostname: string): string | null;
4625
- serializeConnectionData(): 1[];
4626
- #private;
4627
- }
4628
- import { IConnectionData } from "@javonet/core";
4629
- }
4630
- declare module "lib/sdk/ConfigRuntimeFactory" {
4631
- export = ConfigRuntimeFactory;
4632
- /**
4633
- * The ConfigRuntimeFactory class provides methods for creating runtime contexts.
4634
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
4635
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4636
- */
4637
- class ConfigRuntimeFactory {
4638
- constructor(path: any);
4639
- path: any;
4640
- /**
4641
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
4642
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4643
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
4644
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4645
- */
4646
- clr(configName?: string): RuntimeContext;
4647
- /**
4648
- * Creates RuntimeContext instance to interact with the JVM runtime.
4649
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4650
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
4651
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4652
- */
4653
- jvm(configName?: string): RuntimeContext;
4654
- /**
4655
- * Creates RuntimeContext instance to interact with the .NET runtime.
4656
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4657
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
4658
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4659
- */
4660
- netcore(configName?: string): RuntimeContext;
4661
- /**
4662
- * Creates RuntimeContext instance to interact with the Perl runtime.
4663
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4664
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
4665
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4666
- */
4667
- perl(configName?: string): RuntimeContext;
4668
- /**
4669
- * Creates RuntimeContext instance to interact with the Python runtime.
4670
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4671
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
4672
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4673
- */
4674
- python(configName?: string): RuntimeContext;
4675
- /**
4676
- * Creates RuntimeContext instance to interact with the Ruby runtime.
4677
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4678
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
4679
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4680
- */
4681
- ruby(configName?: string): RuntimeContext;
4682
- /**
4683
- * Creates RuntimeContext instance to interact with Node.js runtime.
4684
- * @param {string} [configName="default"] - The name of the configuration to use (optional).
4685
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
4686
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4687
- */
4688
- nodejs(configName?: string): RuntimeContext;
4689
- #private;
4690
- }
4691
- import { RuntimeContext } from "@javonet/core";
4692
- }
4693
- declare module "lib/sdk/Javonet" {
4694
- /**
4695
- * The Javonet class is a singleton class that serves as the entry point for interacting with Javonet.
4696
- * It provides methods to activate and initialize the Javonet SDK.
4697
- * It supports both in-memory and TCP connections.
4698
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/javonet-static-class)
4699
- */
4700
- export class Javonet {
4701
- /**
4702
- * Initializes Javonet using an in-memory channel on the same machine.
4703
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for an in-memory connection.
4704
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/in-memory-channel)
4705
- */
4706
- static inMemory(): RuntimeFactory;
4707
- /**
4708
- * Initializes Javonet with a TCP connection to a remote machine.
4709
- * @param {TcpConnectionData} tcpConnectionData - The tcp connection data of the remote machine.
4710
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a TCP connection.
4711
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/tcp-channel)
4712
- */
4713
- static tcp(tcpConnectionData: TcpConnectionData): RuntimeFactory;
4714
- /**
4715
- * Initializes Javonet with a WebSocket connection to a remote machine.
4716
- * @param {WsConnectionData} wsConnectionData - The WebSocket connection data of the remote machine.
4717
- * @returns {RuntimeFactory} A RuntimeFactory instance configured for a WebSocket connection.
4718
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/websocket-channel)
4719
- */
4720
- static ws(wsConnectionData: WsConnectionData): RuntimeFactory;
4721
- /**
4722
- * Initializes Javonet with a custom configuration file taken from external source.
4723
- * Currentyl supported: Configuration file in JSON format
4724
- * @param {string} configPath - Path to a configuration file.
4725
- * @returns {ConfigRuntimeFactory} A ConfigRuntimeFactory instance with configuration data.
4726
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/configure-channel)
4727
- */
4728
- static withConfig(configPath: string): ConfigRuntimeFactory;
4729
- /**
4730
- * Activates Javonet with the provided license key.
4731
- * @param {string} licenseKey - The license key to activate Javonet.
4732
- * @returns {number} The activation status code.
4733
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/getting-started/activating-javonet)
4734
- */
4735
- static activate(licenseKey: string): number;
4736
- static getRuntimeInfo(): string;
4737
- /**
4738
- * Sets the configuration source for the Javonet SDK.
4739
- *
4740
- * @param {string} configSource - The configuration source.
4741
- */
4742
- static setConfigSource(configSource: string): void;
4743
- /**
4744
- * Sets the working directory for the Javonet SDK.
4745
- *
4746
- * @param {string} path - The working directory.
4747
- */
4748
- static setJavonetWorkingDirectory(path: string): void;
4749
- }
4750
- import TcpConnectionData = require("lib/utils/connectionData/TcpConnectionData");
4751
- import { WsConnectionData } from "@javonet/core";
4752
- import { RuntimeFactory } from "@javonet/core";
4753
- import ConfigRuntimeFactory = require("lib/sdk/ConfigRuntimeFactory");
4754
- export { TcpConnectionData, WsConnectionData };
4755
- }
4756
- declare module "lib/sdk/RuntimeFactory" {
4757
- export = RuntimeFactory;
4758
- /**
4759
- * The RuntimeFactory class provides methods for creating runtime contexts.
4760
- * Each method corresponds to a specific runtime (CLR, JVM, .NET Core, Perl, Ruby, Node.js, Python) and returns a RuntimeContext instance for that runtime.
4761
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4762
- */
4763
- class RuntimeFactory {
4764
- constructor(connectionData: any);
4765
- connectionData: any;
4766
- /**
4767
- * Creates RuntimeContext instance to interact with the .NET Framework runtime.
4768
- * @return {RuntimeContext} a RuntimeContext instance for the .NET Framework runtime
4769
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4770
- */
4771
- clr(): RuntimeContext;
4772
- /**
4773
- * Creates RuntimeContext instance to interact with the JVM runtime.
4774
- * @return {RuntimeContext} a RuntimeContext instance for the JVM runtime
4775
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4776
- */
4777
- jvm(): RuntimeContext;
4778
- /**
4779
- * Creates RuntimeContext instance to interact with the .NET runtime.
4780
- * @return {RuntimeContext} a RuntimeContext instance for the .NET runtime
4781
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4782
- */
4783
- netcore(): RuntimeContext;
4784
- /**
4785
- * Creates RuntimeContext instance to interact with the Perl runtime.
4786
- * @return {RuntimeContext} a RuntimeContext instance for the Perl runtime
4787
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4788
- */
4789
- perl(): RuntimeContext;
4790
- /**
4791
- * Creates RuntimeContext instance to interact with the Python runtime.
4792
- * @return {RuntimeContext} a RuntimeContext instance for the Python runtime
4793
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4794
- */
4795
- python(): RuntimeContext;
4796
- /**
4797
- * Creates RuntimeContext instance to interact with the Ruby runtime.
4798
- * @return {RuntimeContext} a RuntimeContext instance for the Ruby runtime
4799
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4800
- */
4801
- ruby(): RuntimeContext;
4802
- /**
4803
- * Creates RuntimeContext instance to interact with Node.js runtime.
4804
- * @return {RuntimeContext} a RuntimeContext instance for the Node.js runtime
4805
- * @see [Javonet Guides](https://www.javonet.com/guides/v2/javascript/foundations/runtime-context)
4806
- */
4807
- nodejs(): RuntimeContext;
4808
- }
4809
- }
4810
- declare module "lib/sdk/tools/SdkExceptionHelper" {
4811
- export = sendExceptionToAppInsights;
4812
- /**
4813
- *
4814
- * @param {any} e
4815
- * @param {string} licenseKey
4816
- */
4817
- function sendExceptionToAppInsights(e: any, licenseKey: string): Promise<any>;
4818
- }
4819
- declare module "scripts/copy-files" {
4820
- export {};
4821
- }