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
@@ -1,1097 +0,0 @@
1
- package Module::Build;
2
-
3
- # This module doesn't do much of anything itself, it inherits from the
4
- # modules that do the real work. The only real thing it has to do is
5
- # figure out which OS-specific module to pull in. Many of the
6
- # OS-specific modules don't do anything either - most of the work is
7
- # done in Module::Build::Base.
8
-
9
- use 5.006;
10
- use strict;
11
- use warnings;
12
- use File::Spec ();
13
- use File::Path ();
14
- use File::Basename ();
15
- use Perl::OSType ();
16
-
17
- use Module::Build::Base;
18
-
19
- our @ISA = qw(Module::Build::Base);
20
- our $VERSION = '0.4234';
21
- $VERSION = eval $VERSION;
22
-
23
- # Inserts the given module into the @ISA hierarchy between
24
- # Module::Build and its immediate parent
25
- sub _interpose_module {
26
- my ($self, $mod) = @_;
27
- eval "use $mod";
28
- die $@ if $@;
29
-
30
- no strict 'refs';
31
- my $top_class = $mod;
32
- while (@{"${top_class}::ISA"}) {
33
- last if ${"${top_class}::ISA"}[0] eq $ISA[0];
34
- $top_class = ${"${top_class}::ISA"}[0];
35
- }
36
-
37
- @{"${top_class}::ISA"} = @ISA;
38
- @ISA = ($mod);
39
- }
40
-
41
- if (grep {-e File::Spec->catfile($_, qw(Module Build Platform), $^O) . '.pm'} @INC) {
42
- __PACKAGE__->_interpose_module("Module::Build::Platform::$^O");
43
-
44
- } elsif ( my $ostype = os_type() ) {
45
- __PACKAGE__->_interpose_module("Module::Build::Platform::$ostype");
46
-
47
- } else {
48
- warn "Unknown OS type '$^O' - using default settings\n";
49
- }
50
-
51
- sub os_type { return Perl::OSType::os_type() }
52
-
53
- sub is_vmsish { return Perl::OSType::is_os_type('VMS') }
54
- sub is_windowsish { return Perl::OSType::is_os_type('Windows') }
55
- sub is_unixish { return Perl::OSType::is_os_type('Unix') }
56
-
57
- 1;
58
-
59
- __END__
60
-
61
- =for :stopwords
62
- bindoc binhtml destdir distcheck distclean distdir distmeta distsign disttest
63
- fakeinstall html installdirs installsitebin installsitescript installvendorbin
64
- installvendorscript libdoc libhtml pardist ppd ppmdist realclean skipcheck
65
- testall testcover testdb testpod testpodcoverage versioninstall
66
-
67
- =head1 NAME
68
-
69
- Module::Build - Build and install Perl modules
70
-
71
- =head1 SYNOPSIS
72
-
73
- Standard process for building & installing modules:
74
-
75
- perl Build.PL
76
- ./Build
77
- ./Build test
78
- ./Build install
79
-
80
- Or, if you're on a platform (like DOS or Windows) that doesn't require
81
- the "./" notation, you can do this:
82
-
83
- perl Build.PL
84
- Build
85
- Build test
86
- Build install
87
-
88
-
89
- =head1 DESCRIPTION
90
-
91
- C<Module::Build> is a system for building, testing, and installing
92
- Perl modules. It is meant to be an alternative to
93
- C<ExtUtils::MakeMaker>. Developers may alter the behavior of the
94
- module through subclassing. It also does not require a C<make> on your
95
- system - most of the C<Module::Build> code is pure-perl and written in a
96
- very cross-platform way.
97
-
98
- See L</"COMPARISON"> for more comparisons between C<Module::Build> and
99
- other installer tools.
100
-
101
- To install C<Module::Build>, and any other module that uses
102
- C<Module::Build> for its installation process, do the following:
103
-
104
- perl Build.PL # 'Build.PL' script creates the 'Build' script
105
- ./Build # Need ./ to ensure we're using this "Build" script
106
- ./Build test # and not another one that happens to be in the PATH
107
- ./Build install
108
-
109
- This illustrates initial configuration and the running of three
110
- 'actions'. In this case the actions run are 'build' (the default
111
- action), 'test', and 'install'. Other actions defined so far include:
112
-
113
- build manifest
114
- clean manifest_skip
115
- code manpages
116
- config_data pardist
117
- diff ppd
118
- dist ppmdist
119
- distcheck prereq_data
120
- distclean prereq_report
121
- distdir pure_install
122
- distinstall realclean
123
- distmeta retest
124
- distsign skipcheck
125
- disttest test
126
- docs testall
127
- fakeinstall testcover
128
- help testdb
129
- html testpod
130
- install testpodcoverage
131
- installdeps versioninstall
132
-
133
- You can run the 'help' action for a complete list of actions.
134
-
135
-
136
- =head1 GUIDE TO DOCUMENTATION
137
-
138
- The documentation for C<Module::Build> is broken up into sections:
139
-
140
- =over
141
-
142
- =item General Usage (L<Module::Build>)
143
-
144
- This is the document you are currently reading. It describes basic
145
- usage and background information. Its main purpose is to assist the
146
- user who wants to learn how to invoke and control C<Module::Build>
147
- scripts at the command line.
148
-
149
- =item Authoring Reference (L<Module::Build::Authoring>)
150
-
151
- This document describes the structure and organization of
152
- C<Module::Build>, and the relevant concepts needed by authors who are
153
- writing F<Build.PL> scripts for a distribution or controlling
154
- C<Module::Build> processes programmatically.
155
-
156
- =item API Reference (L<Module::Build::API>)
157
-
158
- This is a reference to the C<Module::Build> API.
159
-
160
- =item Cookbook (L<Module::Build::Cookbook>)
161
-
162
- This document demonstrates how to accomplish many common tasks. It
163
- covers general command line usage and authoring of F<Build.PL>
164
- scripts. Includes working examples.
165
-
166
- =back
167
-
168
-
169
- =head1 ACTIONS
170
-
171
- There are some general principles at work here. First, each task when
172
- building a module is called an "action". These actions are listed
173
- above; they correspond to the building, testing, installing,
174
- packaging, etc., tasks.
175
-
176
- Second, arguments are processed in a very systematic way. Arguments
177
- are always key=value pairs. They may be specified at C<perl Build.PL>
178
- time (i.e. C<perl Build.PL destdir=/my/secret/place>), in which case
179
- their values last for the lifetime of the C<Build> script. They may
180
- also be specified when executing a particular action (i.e.
181
- C<Build test verbose=1>), in which case their values last only for the
182
- lifetime of that command. Per-action command line parameters take
183
- precedence over parameters specified at C<perl Build.PL> time.
184
-
185
- The build process also relies heavily on the C<Config.pm> module.
186
- If the user wishes to override any of the
187
- values in C<Config.pm>, she may specify them like so:
188
-
189
- perl Build.PL --config cc=gcc --config ld=gcc
190
-
191
- The following build actions are provided by default.
192
-
193
- =over 4
194
-
195
- =item build
196
-
197
- [version 0.01]
198
-
199
- If you run the C<Build> script without any arguments, it runs the
200
- C<build> action, which in turn runs the C<code> and C<docs> actions.
201
-
202
- This is analogous to the C<MakeMaker> I<make all> target.
203
-
204
- =item clean
205
-
206
- [version 0.01]
207
-
208
- This action will clean up any files that the build process may have
209
- created, including the C<blib/> directory (but not including the
210
- C<_build/> directory and the C<Build> script itself).
211
-
212
- =item code
213
-
214
- [version 0.20]
215
-
216
- This action builds your code base.
217
-
218
- By default it just creates a C<blib/> directory and copies any C<.pm>
219
- and C<.pod> files from your C<lib/> directory into the C<blib/>
220
- directory. It also compiles any C<.xs> files from C<lib/> and places
221
- them in C<blib/>. Of course, you need a working C compiler (probably
222
- the same one that built perl itself) for the compilation to work
223
- properly.
224
-
225
- The C<code> action also runs any C<.PL> files in your F<lib/>
226
- directory. Typically these create other files, named the same but
227
- without the C<.PL> ending. For example, a file F<lib/Foo/Bar.pm.PL>
228
- could create the file F<lib/Foo/Bar.pm>. The C<.PL> files are
229
- processed first, so any C<.pm> files (or other kinds that we deal
230
- with) will get copied correctly.
231
-
232
- =item config_data
233
-
234
- [version 0.26]
235
-
236
- ...
237
-
238
- =item diff
239
-
240
- [version 0.14]
241
-
242
- This action will compare the files about to be installed with their
243
- installed counterparts. For .pm and .pod files, a diff will be shown
244
- (this currently requires a 'diff' program to be in your PATH). For
245
- other files like compiled binary files, we simply report whether they
246
- differ.
247
-
248
- A C<flags> parameter may be passed to the action, which will be passed
249
- to the 'diff' program. Consult your 'diff' documentation for the
250
- parameters it will accept - a good one is C<-u>:
251
-
252
- ./Build diff flags=-u
253
-
254
- =item dist
255
-
256
- [version 0.02]
257
-
258
- This action is helpful for module authors who want to package up their
259
- module for source distribution through a medium like CPAN. It will create a
260
- tarball of the files listed in F<MANIFEST> and compress the tarball using
261
- GZIP compression.
262
-
263
- By default, this action will use the C<Archive::Tar> module. However, you can
264
- force it to use binary "tar" and "gzip" executables by supplying an explicit
265
- C<tar> (and optional C<gzip>) parameter:
266
-
267
- ./Build dist --tar C:\path\to\tar.exe --gzip C:\path\to\zip.exe
268
-
269
- =item distcheck
270
-
271
- [version 0.05]
272
-
273
- Reports which files are in the build directory but not in the
274
- F<MANIFEST> file, and vice versa. (See L</manifest> for details.)
275
-
276
- =item distclean
277
-
278
- [version 0.05]
279
-
280
- Performs the 'realclean' action and then the 'distcheck' action.
281
-
282
- =item distdir
283
-
284
- [version 0.05]
285
-
286
- Creates a "distribution directory" named C<$dist_name-$dist_version>
287
- (if that directory already exists, it will be removed first), then
288
- copies all the files listed in the F<MANIFEST> file to that directory.
289
- This directory is what the distribution tarball is created from.
290
-
291
- =item distinstall
292
-
293
- [version 0.37]
294
-
295
- Performs the 'distdir' action, then switches into that directory and runs a
296
- C<perl Build.PL>, followed by the 'build' and 'install' actions in that
297
- directory. Use PERL_MB_OPT or F<.modulebuildrc> to set options that should be
298
- applied during subprocesses
299
-
300
- =item distmeta
301
-
302
- [version 0.21]
303
-
304
- Creates the F<META.yml> file that describes the distribution.
305
-
306
- F<META.yml> is a file containing various bits of I<metadata> about the
307
- distribution. The metadata includes the distribution name, version,
308
- abstract, prerequisites, license, and various other data about the
309
- distribution. This file is created as F<META.yml> in a simplified YAML format.
310
-
311
- F<META.yml> file must also be listed in F<MANIFEST> - if it's not, a
312
- warning will be issued.
313
-
314
- The current version of the F<META.yml> specification can be found
315
- on CPAN as L<CPAN::Meta::Spec>.
316
-
317
- =item distsign
318
-
319
- [version 0.16]
320
-
321
- Uses C<Module::Signature> to create a SIGNATURE file for your
322
- distribution, and adds the SIGNATURE file to the distribution's
323
- MANIFEST.
324
-
325
- =item disttest
326
-
327
- [version 0.05]
328
-
329
- Performs the 'distdir' action, then switches into that directory and runs a
330
- C<perl Build.PL>, followed by the 'build' and 'test' actions in that directory.
331
- Use PERL_MB_OPT or F<.modulebuildrc> to set options that should be applied
332
- during subprocesses
333
-
334
-
335
- =item docs
336
-
337
- [version 0.20]
338
-
339
- This will generate documentation (e.g. Unix man pages and HTML
340
- documents) for any installable items under B<blib/> that
341
- contain POD. If there are no C<bindoc> or C<libdoc> installation
342
- targets defined (as will be the case on systems that don't support
343
- Unix manpages) no action is taken for manpages. If there are no
344
- C<binhtml> or C<libhtml> installation targets defined no action is
345
- taken for HTML documents.
346
-
347
- =item fakeinstall
348
-
349
- [version 0.02]
350
-
351
- This is just like the C<install> action, but it won't actually do
352
- anything, it will just report what it I<would> have done if you had
353
- actually run the C<install> action.
354
-
355
- =item help
356
-
357
- [version 0.03]
358
-
359
- This action will simply print out a message that is meant to help you
360
- use the build process. It will show you a list of available build
361
- actions too.
362
-
363
- With an optional argument specifying an action name (e.g. C<Build help
364
- test>), the 'help' action will show you any POD documentation it can
365
- find for that action.
366
-
367
- =item html
368
-
369
- [version 0.26]
370
-
371
- This will generate HTML documentation for any binary or library files
372
- under B<blib/> that contain POD. The HTML documentation will only be
373
- installed if the install paths can be determined from values in
374
- C<Config.pm>. You can also supply or override install paths on the
375
- command line by specifying C<install_path> values for the C<binhtml>
376
- and/or C<libhtml> installation targets.
377
-
378
- With an optional C<html_links> argument set to a false value, you can
379
- skip the search for other documentation to link to, because that can
380
- waste a lot of time if there aren't any links to generate anyway:
381
-
382
- ./Build html --html_links 0
383
-
384
- =item install
385
-
386
- [version 0.01]
387
-
388
- This action will use C<ExtUtils::Install> to install the files from
389
- C<blib/> into the system. See L</"INSTALL PATHS">
390
- for details about how Module::Build determines where to install
391
- things, and how to influence this process.
392
-
393
- If you want the installation process to look around in C<@INC> for
394
- other versions of the stuff you're installing and try to delete it,
395
- you can use the C<uninst> parameter, which tells C<ExtUtils::Install> to
396
- do so:
397
-
398
- ./Build install uninst=1
399
-
400
- This can be a good idea, as it helps prevent multiple versions of a
401
- module from being present on your system, which can be a confusing
402
- situation indeed.
403
-
404
- =item installdeps
405
-
406
- [version 0.36]
407
-
408
- This action will use the C<cpan_client> parameter as a command to install
409
- missing prerequisites. You will be prompted whether to install
410
- optional dependencies.
411
-
412
- The C<cpan_client> option defaults to 'cpan' but can be set as an option or in
413
- F<.modulebuildrc>. It must be a shell command that takes a list of modules to
414
- install as arguments (e.g. 'cpanp -i' for CPANPLUS). If the program part is a
415
- relative path (e.g. 'cpan' or 'cpanp'), it will be located relative to the perl
416
- program that executed Build.PL.
417
-
418
- /opt/perl/5.8.9/bin/perl Build.PL
419
- ./Build installdeps --cpan_client 'cpanp -i'
420
- # installs to 5.8.9
421
-
422
- =item manifest
423
-
424
- [version 0.05]
425
-
426
- This is an action intended for use by module authors, not people
427
- installing modules. It will bring the F<MANIFEST> up to date with the
428
- files currently present in the distribution. You may use a
429
- F<MANIFEST.SKIP> file to exclude certain files or directories from
430
- inclusion in the F<MANIFEST>. F<MANIFEST.SKIP> should contain a bunch
431
- of regular expressions, one per line. If a file in the distribution
432
- directory matches any of the regular expressions, it won't be included
433
- in the F<MANIFEST>.
434
-
435
- The following is a reasonable F<MANIFEST.SKIP> starting point, you can
436
- add your own stuff to it:
437
-
438
- ^_build
439
- ^Build$
440
- ^blib
441
- ~$
442
- \.bak$
443
- ^MANIFEST\.SKIP$
444
- CVS
445
-
446
- See the L</distcheck> and L</skipcheck> actions if you want to find out
447
- what the C<manifest> action would do, without actually doing anything.
448
-
449
- =item manifest_skip
450
-
451
- [version 0.3608]
452
-
453
- This is an action intended for use by module authors, not people
454
- installing modules. It will generate a boilerplate MANIFEST.SKIP file
455
- if one does not already exist.
456
-
457
- =item manpages
458
-
459
- [version 0.28]
460
-
461
- This will generate man pages for any binary or library files under
462
- B<blib/> that contain POD. The man pages will only be installed if the
463
- install paths can be determined from values in C<Config.pm>. You can
464
- also supply or override install paths by specifying there values on
465
- the command line with the C<bindoc> and C<libdoc> installation
466
- targets.
467
-
468
- =item pardist
469
-
470
- [version 0.2806]
471
-
472
- Generates a PAR binary distribution for use with L<PAR> or L<PAR::Dist>.
473
-
474
- It requires that the PAR::Dist module (version 0.17 and up) is
475
- installed on your system.
476
-
477
- =item ppd
478
-
479
- [version 0.20]
480
-
481
- Build a PPD file for your distribution.
482
-
483
- This action takes an optional argument C<codebase> which is used in
484
- the generated PPD file to specify the (usually relative) URL of the
485
- distribution. By default, this value is the distribution name without
486
- any path information.
487
-
488
- Example:
489
-
490
- ./Build ppd --codebase "MSWin32-x86-multi-thread/Module-Build-0.21.tar.gz"
491
-
492
- =item ppmdist
493
-
494
- [version 0.23]
495
-
496
- Generates a PPM binary distribution and a PPD description file. This
497
- action also invokes the C<ppd> action, so it can accept the same
498
- C<codebase> argument described under that action.
499
-
500
- This uses the same mechanism as the C<dist> action to tar & zip its
501
- output, so you can supply C<tar> and/or C<gzip> parameters to affect
502
- the result.
503
-
504
- =item prereq_data
505
-
506
- [version 0.32]
507
-
508
- This action prints out a Perl data structure of all prerequisites and the versions
509
- required. The output can be loaded again using C<eval()>. This can be useful for
510
- external tools that wish to query a Build script for prerequisites.
511
-
512
- =item prereq_report
513
-
514
- [version 0.28]
515
-
516
- This action prints out a list of all prerequisites, the versions required, and
517
- the versions actually installed. This can be useful for reviewing the
518
- configuration of your system prior to a build, or when compiling data to send
519
- for a bug report.
520
-
521
- =item pure_install
522
-
523
- [version 0.28]
524
-
525
- This action is identical to the C<install> action. In the future,
526
- though, when C<install> starts writing to the file
527
- F<$(INSTALLARCHLIB)/perllocal.pod>, C<pure_install> won't, and that
528
- will be the only difference between them.
529
-
530
- =item realclean
531
-
532
- [version 0.01]
533
-
534
- This action is just like the C<clean> action, but also removes the
535
- C<_build> directory and the C<Build> script. If you run the
536
- C<realclean> action, you are essentially starting over, so you will
537
- have to re-create the C<Build> script again.
538
-
539
- =item retest
540
-
541
- [version 0.2806]
542
-
543
- This is just like the C<test> action, but doesn't actually build the
544
- distribution first, and doesn't add F<blib/> to the load path, and
545
- therefore will test against a I<previously> installed version of the
546
- distribution. This can be used to verify that a certain installed
547
- distribution still works, or to see whether newer versions of a
548
- distribution still pass the old regression tests, and so on.
549
-
550
- =item skipcheck
551
-
552
- [version 0.05]
553
-
554
- Reports which files are skipped due to the entries in the
555
- F<MANIFEST.SKIP> file (See L</manifest> for details)
556
-
557
- =item test
558
-
559
- [version 0.01]
560
-
561
- This will use C<Test::Harness> or C<TAP::Harness> to run any regression
562
- tests and report their results. Tests can be defined in the standard
563
- places: a file called C<test.pl> in the top-level directory, or several
564
- files ending with C<.t> in a C<t/> directory.
565
-
566
- If you want tests to be 'verbose', i.e. show details of test execution
567
- rather than just summary information, pass the argument C<verbose=1>.
568
-
569
- If you want to run tests under the perl debugger, pass the argument
570
- C<debugger=1>.
571
-
572
- If you want to have Module::Build find test files with different file
573
- name extensions, pass the C<test_file_exts> argument with an array
574
- of extensions, such as C<[qw( .t .s .z )]>.
575
-
576
- If you want test to be run by C<TAP::Harness>, rather than C<Test::Harness>,
577
- pass the argument C<tap_harness_args> as an array reference of arguments to
578
- pass to the TAP::Harness constructor.
579
-
580
- In addition, if a file called C<visual.pl> exists in the top-level
581
- directory, this file will be executed as a Perl script and its output
582
- will be shown to the user. This is a good place to put speed tests or
583
- other tests that don't use the C<Test::Harness> format for output.
584
-
585
- To override the choice of tests to run, you may pass a C<test_files>
586
- argument whose value is a whitespace-separated list of test scripts to
587
- run. This is especially useful in development, when you only want to
588
- run a single test to see whether you've squashed a certain bug yet:
589
-
590
- ./Build test --test_files t/something_failing.t
591
-
592
- You may also pass several C<test_files> arguments separately:
593
-
594
- ./Build test --test_files t/one.t --test_files t/two.t
595
-
596
- or use a C<glob()>-style pattern:
597
-
598
- ./Build test --test_files 't/01-*.t'
599
-
600
- =item testall
601
-
602
- [version 0.2807]
603
-
604
- [Note: the 'testall' action and the code snippets below are currently
605
- in alpha stage, see
606
- L<http://www.nntp.perl.org/group/perl.module.build/2007/03/msg584.html> ]
607
-
608
- Runs the C<test> action plus each of the C<test$type> actions defined by
609
- the keys of the C<test_types> parameter.
610
-
611
- Currently, you need to define the ACTION_test$type method yourself and
612
- enumerate them in the test_types parameter.
613
-
614
- my $mb = Module::Build->subclass(
615
- code => q(
616
- sub ACTION_testspecial { shift->generic_test(type => 'special'); }
617
- sub ACTION_testauthor { shift->generic_test(type => 'author'); }
618
- )
619
- )->new(
620
- ...
621
- test_types => {
622
- special => '.st',
623
- author => ['.at', '.pt' ],
624
- },
625
- ...
626
-
627
- =item testcover
628
-
629
- [version 0.26]
630
-
631
- Runs the C<test> action using C<Devel::Cover>, generating a
632
- code-coverage report showing which parts of the code were actually
633
- exercised during the tests.
634
-
635
- To pass options to C<Devel::Cover>, set the C<$DEVEL_COVER_OPTIONS>
636
- environment variable:
637
-
638
- DEVEL_COVER_OPTIONS=-ignore,Build ./Build testcover
639
-
640
- =item testdb
641
-
642
- [version 0.05]
643
-
644
- This is a synonym for the 'test' action with the C<debugger=1>
645
- argument.
646
-
647
- =item testpod
648
-
649
- [version 0.25]
650
-
651
- This checks all the files described in the C<docs> action and
652
- produces C<Test::Harness>-style output. If you are a module author,
653
- this is useful to run before creating a new release.
654
-
655
- =item testpodcoverage
656
-
657
- [version 0.28]
658
-
659
- This checks the pod coverage of the distribution and
660
- produces C<Test::Harness>-style output. If you are a module author,
661
- this is useful to run before creating a new release.
662
-
663
- =item versioninstall
664
-
665
- [version 0.16]
666
-
667
- ** Note: since C<only.pm> is so new, and since we just recently added
668
- support for it here too, this feature is to be considered
669
- experimental. **
670
-
671
- If you have the C<only.pm> module installed on your system, you can
672
- use this action to install a module into the version-specific library
673
- trees. This means that you can have several versions of the same
674
- module installed and C<use> a specific one like this:
675
-
676
- use only MyModule => 0.55;
677
-
678
- To override the default installation libraries in C<only::config>,
679
- specify the C<versionlib> parameter when you run the C<Build.PL> script:
680
-
681
- perl Build.PL --versionlib /my/version/place/
682
-
683
- To override which version the module is installed as, specify the
684
- C<version> parameter when you run the C<Build.PL> script:
685
-
686
- perl Build.PL --version 0.50
687
-
688
- See the C<only.pm> documentation for more information on
689
- version-specific installs.
690
-
691
- =back
692
-
693
-
694
- =head1 OPTIONS
695
-
696
- =head2 Command Line Options
697
-
698
- The following options can be used during any invocation of C<Build.PL>
699
- or the Build script, during any action. For information on other
700
- options specific to an action, see the documentation for the
701
- respective action.
702
-
703
- NOTE: There is some preliminary support for options to use the more
704
- familiar long option style. Most options can be preceded with the
705
- C<--> long option prefix, and the underscores changed to dashes
706
- (e.g. C<--use-rcfile>). Additionally, the argument to boolean options is
707
- optional, and boolean options can be negated by prefixing them with
708
- C<no> or C<no-> (e.g. C<--noverbose> or C<--no-verbose>).
709
-
710
- =over 4
711
-
712
- =item quiet
713
-
714
- Suppress informative messages on output.
715
-
716
- =item verbose
717
-
718
- Display extra information about the Build on output. C<verbose> will
719
- turn off C<quiet>
720
-
721
- =item cpan_client
722
-
723
- Sets the C<cpan_client> command for use with the C<installdeps> action.
724
- See C<installdeps> for more details.
725
-
726
- =item use_rcfile
727
-
728
- Load the F<~/.modulebuildrc> option file. This option can be set to
729
- false to prevent the custom resource file from being loaded.
730
-
731
- =item allow_mb_mismatch
732
-
733
- Suppresses the check upon startup that the version of Module::Build
734
- we're now running under is the same version that was initially invoked
735
- when building the distribution (i.e. when the C<Build.PL> script was
736
- first run). As of 0.3601, a mismatch results in a warning instead of
737
- a fatal error, so this option effectively just suppresses the warning.
738
-
739
- =item debug
740
-
741
- Prints Module::Build debugging information to STDOUT, such as a trace of
742
- executed build actions.
743
-
744
- =back
745
-
746
- =head2 Default Options File (F<.modulebuildrc>)
747
-
748
- [version 0.28]
749
-
750
- When Module::Build starts up, it will look first for a file,
751
- F<$ENV{HOME}/.modulebuildrc>. If it's not found there, it will look
752
- in the F<.modulebuildrc> file in the directories referred to by
753
- the environment variables C<HOMEDRIVE> + C<HOMEDIR>, C<USERPROFILE>,
754
- C<APPDATA>, C<WINDIR>, C<SYS$LOGIN>. If the file exists, the options
755
- specified there will be used as defaults, as if they were typed on the
756
- command line. The defaults can be overridden by specifying new values
757
- on the command line.
758
-
759
- The action name must come at the beginning of the line, followed by any
760
- amount of whitespace and then the options. Options are given the same
761
- as they would be on the command line. They can be separated by any
762
- amount of whitespace, including newlines, as long there is whitespace at
763
- the beginning of each continued line. Anything following a hash mark (C<#>)
764
- is considered a comment, and is stripped before parsing. If more than
765
- one line begins with the same action name, those lines are merged into
766
- one set of options.
767
-
768
- Besides the regular actions, there are two special pseudo-actions: the
769
- key C<*> (asterisk) denotes any global options that should be applied
770
- to all actions, and the key 'Build_PL' specifies options to be applied
771
- when you invoke C<perl Build.PL>.
772
-
773
- * verbose=1 # global options
774
- diff flags=-u
775
- install --install_base /home/ken
776
- --install_path html=/home/ken/docs/html
777
- installdeps --cpan_client 'cpanp -i'
778
-
779
- If you wish to locate your resource file in a different location, you
780
- can set the environment variable C<MODULEBUILDRC> to the complete
781
- absolute path of the file containing your options.
782
-
783
- =head2 Environment variables
784
-
785
- =over
786
-
787
- =item MODULEBUILDRC
788
-
789
- [version 0.28]
790
-
791
- Specifies an alternate location for a default options file as described above.
792
-
793
- =item PERL_MB_OPT
794
-
795
- [version 0.36]
796
-
797
- Command line options that are applied to Build.PL or any Build action. The
798
- string is split as the shell would (e.g. whitespace) and the result is
799
- prepended to any actual command-line arguments.
800
-
801
- =back
802
-
803
- =head1 INSTALL PATHS
804
-
805
- [version 0.19]
806
-
807
- When you invoke Module::Build's C<build> action, it needs to figure
808
- out where to install things. The nutshell version of how this works
809
- is that default installation locations are determined from
810
- F<Config.pm>, and they may be overridden by using the C<install_path>
811
- parameter. An C<install_base> parameter lets you specify an
812
- alternative installation root like F</home/foo>, and a C<destdir> lets
813
- you specify a temporary installation directory like F</tmp/install> in
814
- case you want to create bundled-up installable packages.
815
-
816
- Natively, Module::Build provides default installation locations for
817
- the following types of installable items:
818
-
819
- =over 4
820
-
821
- =item lib
822
-
823
- Usually pure-Perl module files ending in F<.pm>.
824
-
825
- =item arch
826
-
827
- "Architecture-dependent" module files, usually produced by compiling
828
- XS, L<Inline>, or similar code.
829
-
830
- =item script
831
-
832
- Programs written in pure Perl. In order to improve reuse, try to make
833
- these as small as possible - put the code into modules whenever
834
- possible.
835
-
836
- =item bin
837
-
838
- "Architecture-dependent" executable programs, i.e. compiled C code or
839
- something. Pretty rare to see this in a perl distribution, but it
840
- happens.
841
-
842
- =item bindoc
843
-
844
- Documentation for the stuff in C<script> and C<bin>. Usually
845
- generated from the POD in those files. Under Unix, these are manual
846
- pages belonging to the 'man1' category.
847
-
848
- =item libdoc
849
-
850
- Documentation for the stuff in C<lib> and C<arch>. This is usually
851
- generated from the POD in F<.pm> files. Under Unix, these are manual
852
- pages belonging to the 'man3' category.
853
-
854
- =item binhtml
855
-
856
- This is the same as C<bindoc> above, but applies to HTML documents.
857
-
858
- =item libhtml
859
-
860
- This is the same as C<libdoc> above, but applies to HTML documents.
861
-
862
- =back
863
-
864
- Four other parameters let you control various aspects of how
865
- installation paths are determined:
866
-
867
- =over 4
868
-
869
- =item installdirs
870
-
871
- The default destinations for these installable things come from
872
- entries in your system's C<Config.pm>. You can select from three
873
- different sets of default locations by setting the C<installdirs>
874
- parameter as follows:
875
-
876
- 'installdirs' set to:
877
- core site vendor
878
-
879
- uses the following defaults from Config.pm:
880
-
881
- lib => installprivlib installsitelib installvendorlib
882
- arch => installarchlib installsitearch installvendorarch
883
- script => installscript installsitescript installvendorscript
884
- bin => installbin installsitebin installvendorbin
885
- bindoc => installman1dir installsiteman1dir installvendorman1dir
886
- libdoc => installman3dir installsiteman3dir installvendorman3dir
887
- binhtml => installhtml1dir installsitehtml1dir installvendorhtml1dir [*]
888
- libhtml => installhtml3dir installsitehtml3dir installvendorhtml3dir [*]
889
-
890
- * Under some OS (eg. MSWin32) the destination for HTML documents is
891
- determined by the C<Config.pm> entry C<installhtmldir>.
892
-
893
- The default value of C<installdirs> is "site". If you're creating
894
- vendor distributions of module packages, you may want to do something
895
- like this:
896
-
897
- perl Build.PL --installdirs vendor
898
-
899
- or
900
-
901
- ./Build install --installdirs vendor
902
-
903
- If you're installing an updated version of a module that was included
904
- with perl itself (i.e. a "core module"), then you may set
905
- C<installdirs> to "core" to overwrite the module in its present
906
- location.
907
-
908
- (Note that the 'script' line is different from C<MakeMaker> -
909
- unfortunately there's no such thing as "installsitescript" or
910
- "installvendorscript" entry in C<Config.pm>, so we use the
911
- "installsitebin" and "installvendorbin" entries to at least get the
912
- general location right. In the future, if C<Config.pm> adds some more
913
- appropriate entries, we'll start using those.)
914
-
915
- =item install_path
916
-
917
- Once the defaults have been set, you can override them.
918
-
919
- On the command line, that would look like this:
920
-
921
- perl Build.PL --install_path lib=/foo/lib --install_path arch=/foo/lib/arch
922
-
923
- or this:
924
-
925
- ./Build install --install_path lib=/foo/lib --install_path arch=/foo/lib/arch
926
-
927
- =item install_base
928
-
929
- You can also set the whole bunch of installation paths by supplying the
930
- C<install_base> parameter to point to a directory on your system. For
931
- instance, if you set C<install_base> to "/home/ken" on a Linux
932
- system, you'll install as follows:
933
-
934
- lib => /home/ken/lib/perl5
935
- arch => /home/ken/lib/perl5/i386-linux
936
- script => /home/ken/bin
937
- bin => /home/ken/bin
938
- bindoc => /home/ken/man/man1
939
- libdoc => /home/ken/man/man3
940
- binhtml => /home/ken/html
941
- libhtml => /home/ken/html
942
-
943
- Note that this is I<different> from how C<MakeMaker>'s C<PREFIX>
944
- parameter works. C<install_base> just gives you a default layout under the
945
- directory you specify, which may have little to do with the
946
- C<installdirs=site> layout.
947
-
948
- The exact layout under the directory you specify may vary by system -
949
- we try to do the "sensible" thing on each platform.
950
-
951
- =item destdir
952
-
953
- If you want to install everything into a temporary directory first
954
- (for instance, if you want to create a directory tree that a package
955
- manager like C<rpm> or C<dpkg> could create a package from), you can
956
- use the C<destdir> parameter:
957
-
958
- perl Build.PL --destdir /tmp/foo
959
-
960
- or
961
-
962
- ./Build install --destdir /tmp/foo
963
-
964
- This will effectively install to "/tmp/foo/$sitelib",
965
- "/tmp/foo/$sitearch", and the like, except that it will use
966
- C<File::Spec> to make the pathnames work correctly on whatever
967
- platform you're installing on.
968
-
969
- =item prefix
970
-
971
- Provided for compatibility with C<ExtUtils::MakeMaker>'s PREFIX argument.
972
- C<prefix> should be used when you want Module::Build to install your
973
- modules, documentation, and scripts in the same place as
974
- C<ExtUtils::MakeMaker>'s PREFIX mechanism.
975
-
976
- The following are equivalent.
977
-
978
- perl Build.PL --prefix /tmp/foo
979
- perl Makefile.PL PREFIX=/tmp/foo
980
-
981
- Because of the complex nature of the prefixification logic, the
982
- behavior of PREFIX in C<MakeMaker> has changed subtly over time.
983
- Module::Build's --prefix logic is equivalent to the PREFIX logic found
984
- in C<ExtUtils::MakeMaker> 6.30.
985
-
986
- The maintainers of C<MakeMaker> do understand the troubles with the
987
- PREFIX mechanism, and added INSTALL_BASE support in version 6.31 of
988
- C<MakeMaker>, which was released in 2006.
989
-
990
- If you don't need to retain compatibility with old versions (pre-6.31) of C<ExtUtils::MakeMaker> or
991
- are starting a fresh Perl installation we recommend you use
992
- C<install_base> instead (and C<INSTALL_BASE> in C<ExtUtils::MakeMaker>).
993
- See L<Module::Build::Cookbook/Installing in the same location as
994
- ExtUtils::MakeMaker> for further information.
995
-
996
-
997
- =back
998
-
999
-
1000
- =head1 COMPARISON
1001
-
1002
- A comparison between C<Module::Build> and other CPAN distribution installers.
1003
-
1004
- =over
1005
-
1006
- =item *
1007
-
1008
- L<ExtUtils::MakeMaker> requires C<make> and use of a F<Makefile>.
1009
- C<Module::Build> does not, nor do other pure-perl installers following the
1010
- F<Build.PL> spec such as L<Module::Build::Tiny>. In practice, this is usually
1011
- not an issue for the end user, as C<make> is already required to install most
1012
- CPAN modules, even on Windows.
1013
-
1014
- =item *
1015
-
1016
- L<ExtUtils::MakeMaker> has been a core module in every version of Perl 5, and
1017
- must maintain compatibility to install the majority of CPAN modules.
1018
- C<Module::Build> was added to core in Perl 5.10 and removed from core in Perl
1019
- 5.20, and (like L<ExtUtils::MakeMaker>) is only updated to fix critical issues
1020
- and maintain compatibility. C<Module::Build> and other non-core installers like
1021
- L<Module::Build::Tiny> are installed from CPAN by declaring themselves as a
1022
- C<configure> phase prerequisite, and in this way any installer can be used in
1023
- place of L<ExtUtils::MakeMaker>.
1024
-
1025
- =item *
1026
-
1027
- Customizing the build process with L<ExtUtils::MakeMaker> involves overriding
1028
- certain methods that form the F<Makefile> by defining the subs in the C<MY::>
1029
- namespace, requiring in-depth knowledge of F<Makefile>, but allowing targeted
1030
- customization of the entire build. Customizing C<Module::Build> involves
1031
- subclassing C<Module::Build> itself, adding or overriding pure-perl methods
1032
- that represent build actions, which are invoked as arguments passed to the
1033
- generated C<./Build> script. This is a simpler concept but requires redefining
1034
- the standard build actions to invoke your customizations.
1035
- L<Module::Build::Tiny> does not allow for customization.
1036
-
1037
- =item *
1038
-
1039
- C<Module::Build> provides more features and a better experience for distribution
1040
- authors than L<ExtUtils::MakeMaker>. However, tools designed specifically for
1041
- authoring, such as L<Dist::Zilla> and its spinoffs L<Dist::Milla> and
1042
- L<Minilla>, provide these features and more, and generate a configure script
1043
- (F<Makefile.PL>/F<Build.PL>) that will use any of the various installers
1044
- separately on the end user side. L<App::ModuleBuildTiny> is an alternative
1045
- standalone authoring tool for distributions using L<Module::Build::Tiny>, which
1046
- requires only a simple two-line F<Build.PL>.
1047
-
1048
- =back
1049
-
1050
-
1051
- =head1 TO DO
1052
-
1053
- The current method of relying on time stamps to determine whether a
1054
- derived file is out of date isn't likely to scale well, since it
1055
- requires tracing all dependencies backward, it runs into problems on
1056
- NFS, and it's just generally flimsy. It would be better to use an MD5
1057
- signature or the like, if available. See C<cons> for an example.
1058
-
1059
- - append to perllocal.pod
1060
- - add a 'plugin' functionality
1061
-
1062
-
1063
- =head1 AUTHOR
1064
-
1065
- Ken Williams <kwilliams@cpan.org>
1066
-
1067
- Development questions, bug reports, and patches should be sent to the
1068
- Module-Build mailing list at <module-build@perl.org>.
1069
-
1070
- Bug reports are also welcome at
1071
- <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build>.
1072
-
1073
- The latest development version is available from the Git
1074
- repository at <https://github.com/Perl-Toolchain-Gang/Module-Build>
1075
-
1076
-
1077
- =head1 COPYRIGHT
1078
-
1079
- Copyright (c) 2001-2006 Ken Williams. All rights reserved.
1080
-
1081
- This library is free software; you can redistribute it and/or
1082
- modify it under the same terms as Perl itself.
1083
-
1084
-
1085
- =head1 SEE ALSO
1086
-
1087
- perl(1), L<Module::Build::Cookbook>, L<Module::Build::Authoring>,
1088
- L<Module::Build::API>, L<ExtUtils::MakeMaker>
1089
-
1090
- F<META.yml> Specification:
1091
- L<CPAN::Meta::Spec>
1092
-
1093
- L<http://www.dsmit.com/cons/>
1094
-
1095
- L<http://search.cpan.org/dist/PerlBuildSystem/>
1096
-
1097
- =cut