javonet-nodejs-sdk 2.5.15 → 2.5.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2047) hide show
  1. package/dist/core/delegatesCache/DelegatesCache.cjs +55 -0
  2. package/dist/core/handler/AbstractHandler.cjs +60 -0
  3. package/dist/core/handler/ArrayGetItemHandler.cjs +59 -0
  4. package/dist/core/handler/ArrayGetRankHandler.cjs +50 -0
  5. package/dist/core/handler/ArrayGetSizeHandler.cjs +50 -0
  6. package/dist/core/handler/ArrayHandler.cjs +41 -0
  7. package/dist/core/handler/ArraySetItemHandler.cjs +60 -0
  8. package/dist/core/handler/CastingHandler.cjs +34 -0
  9. package/dist/core/handler/ConvertTypeHandler.cjs +53 -0
  10. package/dist/core/handler/CreateClassInstanceHandler.cjs +60 -0
  11. package/dist/core/handler/DestructReferenceHandler.cjs +42 -0
  12. package/dist/core/handler/EnableNamespaceHandler.cjs +56 -0
  13. package/dist/core/handler/EnableTypeHandler.cjs +56 -0
  14. package/dist/core/handler/GetGlobalStaticFieldHandler.cjs +60 -0
  15. package/dist/core/handler/GetInstanceFieldHandler.cjs +59 -0
  16. package/dist/core/handler/GetInstanceMethodAsDelegateHandler.cjs +83 -0
  17. package/dist/core/handler/GetStaticFieldHandler.cjs +59 -0
  18. package/dist/core/handler/GetStaticMethodAsDelegateHandler.cjs +83 -0
  19. package/dist/core/handler/GetTypeHandler.cjs +87 -0
  20. package/dist/core/handler/Handler.cjs +136 -0
  21. package/dist/core/handler/InvokeDelegateHandler.cjs +53 -0
  22. package/dist/core/handler/InvokeGlobalFunctionHandler.cjs +60 -0
  23. package/dist/core/handler/InvokeInstanceMethodHandler.cjs +62 -0
  24. package/dist/core/handler/InvokeStaticMethodHandler.cjs +62 -0
  25. package/dist/core/handler/LoadLibraryHandler.cjs +68 -0
  26. package/dist/core/handler/PassDelegateHandler.cjs +162 -0
  27. package/dist/core/handler/ResolveReferenceHandler.cjs +41 -0
  28. package/dist/core/handler/SetGlobalStaticFieldHandler.cjs +61 -0
  29. package/dist/core/handler/SetInstanceFieldHandler.cjs +59 -0
  30. package/dist/core/handler/SetStaticFieldHandler.cjs +57 -0
  31. package/dist/core/handler/ValueHandler.cjs +37 -0
  32. package/dist/core/interpreter/Interpreter.cjs +159 -0
  33. package/dist/core/namespaceCache/NamespaceCache.cjs +58 -0
  34. package/dist/core/protocol/CommandDeserializer.cjs +188 -0
  35. package/dist/core/protocol/CommandSerializer.cjs +64 -0
  36. package/dist/core/protocol/TypeDeserializer.cjs +91 -0
  37. package/dist/core/protocol/TypeSerializer.cjs +153 -0
  38. package/dist/core/receiver/Receiver.cjs +63 -0
  39. package/dist/core/receiver/ReceiverNative.cjs +37 -0
  40. package/dist/core/referenceCache/ReferencesCache.cjs +65 -0
  41. package/dist/core/transmitter/Transmitter.cjs +42 -0
  42. package/dist/core/transmitter/TransmitterWebsocket.cjs +55 -0
  43. package/dist/core/transmitter/TransmitterWebsocketBrowser.cjs +59 -0
  44. package/dist/core/transmitter/TransmitterWrapper.cjs +75 -0
  45. package/dist/core/typeCache/TypeCache.cjs +58 -0
  46. package/dist/core/webSocketClient/WebSocketClient.cjs +150 -0
  47. package/dist/core/webSocketClient/WebSocketClientBrowser.cjs +153 -0
  48. package/dist/sdk/ConfigRuntimeFactory.cjs +198 -0
  49. package/dist/sdk/InvocationContext.cjs +463 -0
  50. package/dist/sdk/Javonet.cjs +150 -0
  51. package/dist/sdk/RuntimeContext.cjs +288 -0
  52. package/dist/sdk/RuntimeFactory.cjs +98 -0
  53. package/dist/sdk/tools/browser/ConfigSourceResolver.cjs +153 -0
  54. package/dist/sdk/tools/browser/SdkExceptionHelper.cjs +37 -0
  55. package/dist/sdk/tools/nodejs/JsonFileResolver.cjs +120 -0
  56. package/dist/sdk/tools/nodejs/SdkExceptionHelper.cjs +100 -0
  57. package/dist/types/core/delegatesCache/DelegatesCache.d.ts +21 -0
  58. package/dist/types/core/handler/AbstractHandler.d.ts +7 -0
  59. package/dist/types/core/handler/ArrayGetItemHandler.d.ts +5 -0
  60. package/dist/types/core/handler/ArrayGetRankHandler.d.ts +5 -0
  61. package/dist/types/core/handler/ArrayGetSizeHandler.d.ts +5 -0
  62. package/dist/types/core/handler/ArrayHandler.d.ts +4 -0
  63. package/dist/types/core/handler/ArraySetItemHandler.d.ts +5 -0
  64. package/dist/types/core/handler/CastingHandler.d.ts +3 -0
  65. package/dist/types/core/handler/ConvertTypeHandler.d.ts +22 -0
  66. package/dist/types/core/handler/CreateClassInstanceHandler.d.ts +5 -0
  67. package/dist/types/core/handler/DestructReferenceHandler.d.ts +4 -0
  68. package/dist/types/core/handler/EnableNamespaceHandler.d.ts +5 -0
  69. package/dist/types/core/handler/EnableTypeHandler.d.ts +5 -0
  70. package/dist/types/core/handler/GetGlobalStaticFieldHandler.d.ts +5 -0
  71. package/dist/types/core/handler/GetInstanceFieldHandler.d.ts +5 -0
  72. package/dist/types/core/handler/GetInstanceMethodAsDelegateHandler.d.ts +38 -0
  73. package/dist/types/core/handler/GetStaticFieldHandler.d.ts +5 -0
  74. package/dist/types/core/handler/GetStaticMethodAsDelegateHandler.d.ts +36 -0
  75. package/dist/types/core/handler/GetTypeHandler.d.ts +16 -0
  76. package/dist/types/core/handler/Handler.d.ts +27 -0
  77. package/dist/types/core/handler/InvokeDelegateHandler.d.ts +15 -0
  78. package/dist/types/core/handler/InvokeGlobalFunctionHandler.d.ts +5 -0
  79. package/dist/types/core/handler/InvokeInstanceMethodHandler.d.ts +5 -0
  80. package/dist/types/core/handler/InvokeStaticMethodHandler.d.ts +5 -0
  81. package/dist/types/core/handler/LoadLibraryHandler.d.ts +7 -0
  82. package/dist/types/core/handler/PassDelegateHandler.d.ts +104 -0
  83. package/dist/types/core/handler/ResolveReferenceHandler.d.ts +12 -0
  84. package/dist/types/core/handler/SetGlobalStaticFieldHandler.d.ts +4 -0
  85. package/dist/types/core/handler/SetInstanceFieldHandler.d.ts +5 -0
  86. package/dist/types/core/handler/SetStaticFieldHandler.d.ts +5 -0
  87. package/dist/types/core/handler/ValueHandler.d.ts +4 -0
  88. package/dist/types/core/interpreter/Interpreter.d.ts +27 -0
  89. package/dist/types/core/namespaceCache/NamespaceCache.d.ts +9 -0
  90. package/dist/types/core/protocol/CommandDeserializer.d.ts +25 -0
  91. package/dist/types/core/protocol/CommandSerializer.d.ts +4 -0
  92. package/dist/types/core/protocol/TypeDeserializer.d.ts +15 -0
  93. package/dist/types/core/protocol/TypeSerializer.d.ts +17 -0
  94. package/dist/types/core/receiver/Receiver.d.ts +14 -0
  95. package/dist/types/core/receiver/ReceiverNative.d.ts +4 -0
  96. package/dist/types/core/referenceCache/ReferencesCache.d.ts +24 -0
  97. package/dist/types/core/transmitter/Transmitter.d.ts +6 -0
  98. package/dist/types/core/transmitter/TransmitterWebsocket.d.ts +21 -0
  99. package/dist/types/core/transmitter/TransmitterWebsocketBrowser.d.ts +30 -0
  100. package/dist/types/core/transmitter/TransmitterWrapper.d.ts +11 -0
  101. package/dist/types/core/typeCache/TypeCache.d.ts +9 -0
  102. package/dist/types/core/webSocketClient/WebSocketClient.d.ts +50 -0
  103. package/dist/types/core/webSocketClient/WebSocketClientBrowser.d.ts +63 -0
  104. package/dist/types/sdk/ConfigRuntimeFactory.d.ts +73 -0
  105. package/dist/types/sdk/InvocationContext.d.ts +207 -0
  106. package/dist/types/sdk/Javonet.d.ts +63 -0
  107. package/dist/types/sdk/RuntimeContext.d.ts +103 -0
  108. package/dist/types/sdk/RuntimeFactory.d.ts +58 -0
  109. package/dist/types/sdk/tools/browser/ConfigSourceResolver.d.ts +46 -0
  110. package/dist/types/sdk/tools/browser/SdkExceptionHelper.d.ts +7 -0
  111. package/dist/types/sdk/tools/nodejs/JsonFileResolver.d.ts +13 -0
  112. package/dist/types/sdk/tools/nodejs/SdkExceptionHelper.d.ts +6 -0
  113. package/dist/types/utils/Command.d.ts +42 -0
  114. package/dist/types/utils/CommandType.d.ts +44 -0
  115. package/dist/types/utils/ConnectionType.d.ts +5 -0
  116. package/dist/types/utils/CreateRequire.browser.d.ts +1 -0
  117. package/dist/types/utils/CreateRequire.node.d.ts +2 -0
  118. package/dist/types/utils/CustomError.d.ts +3 -0
  119. package/dist/types/utils/ExceptionType.d.ts +10 -0
  120. package/dist/types/utils/Runtime.d.ts +24 -0
  121. package/dist/types/utils/RuntimeLogger.d.ts +5 -0
  122. package/dist/types/utils/RuntimeLoggerBrowser.d.ts +15 -0
  123. package/dist/types/utils/RuntimeName.d.ts +13 -0
  124. package/dist/types/utils/RuntimeNameHandler.d.ts +7 -0
  125. package/dist/types/utils/StringEncodingMode.d.ts +6 -0
  126. package/dist/types/utils/Type.d.ts +14 -0
  127. package/dist/types/utils/connectionData/IConnectionData.d.ts +5 -0
  128. package/dist/types/utils/connectionData/InMemoryConnectionData.d.ts +16 -0
  129. package/dist/types/utils/connectionData/WsConnectionData.d.ts +31 -0
  130. package/dist/types/utils/exception/ExceptionSerializer.d.ts +6 -0
  131. package/dist/types/utils/exception/ExceptionThrower.d.ts +4 -0
  132. package/dist/types/utils/guid/generateGuid.d.ts +1 -0
  133. package/dist/types/utils/nodejs/TypesConverter.d.ts +48 -0
  134. package/dist/types/utils/nodejs/connectionData/TcpConnectionData.d.ts +25 -0
  135. package/dist/types/utils/nodejs/uuid/REGEX.d.ts +1 -0
  136. package/dist/types/utils/nodejs/uuid/rng.d.ts +1 -0
  137. package/dist/types/utils/nodejs/uuid/stringify.d.ts +1 -0
  138. package/dist/types/utils/nodejs/uuid/v4.d.ts +1 -0
  139. package/dist/types/utils/nodejs/uuid/validate.d.ts +1 -0
  140. package/dist/utils/Command.cjs +87 -0
  141. package/dist/utils/CommandType.cjs +74 -0
  142. package/dist/utils/ConnectionType.cjs +35 -0
  143. package/dist/utils/CreateRequire.browser.cjs +30 -0
  144. package/dist/utils/CreateRequire.node.cjs +28 -0
  145. package/dist/utils/CustomError.cjs +33 -0
  146. package/dist/utils/ExceptionType.cjs +40 -0
  147. package/dist/utils/Runtime.cjs +109 -0
  148. package/dist/utils/RuntimeLogger.cjs +61 -0
  149. package/dist/utils/RuntimeLoggerBrowser.cjs +56 -0
  150. package/dist/utils/RuntimeName.cjs +43 -0
  151. package/dist/utils/RuntimeNameHandler.cjs +62 -0
  152. package/dist/utils/StringEncodingMode.cjs +36 -0
  153. package/dist/utils/Type.cjs +44 -0
  154. package/dist/utils/connectionData/IConnectionData.cjs +38 -0
  155. package/dist/utils/connectionData/InMemoryConnectionData.cjs +52 -0
  156. package/dist/utils/connectionData/WsConnectionData.cjs +61 -0
  157. package/dist/utils/exception/ExceptionSerializer.cjs +82 -0
  158. package/dist/utils/exception/ExceptionThrower.cjs +111 -0
  159. package/dist/utils/guid/generateGuid.cjs +34 -0
  160. package/dist/utils/nodejs/TypesConverter.cjs +102 -0
  161. package/dist/utils/nodejs/connectionData/TcpConnectionData.cjs +101 -0
  162. package/dist/utils/nodejs/uuid/REGEX.cjs +28 -0
  163. package/dist/utils/nodejs/uuid/rng.cjs +47 -0
  164. package/dist/utils/nodejs/uuid/stringify.cjs +39 -0
  165. package/dist/utils/nodejs/uuid/v4.cjs +43 -0
  166. package/dist/utils/nodejs/uuid/validate.cjs +31 -0
  167. package/lib/core/delegatesCache/DelegatesCache.js +37 -0
  168. package/lib/core/handler/AbstractHandler.js +2 -2
  169. package/lib/core/handler/ArrayGetItemHandler.js +2 -2
  170. package/lib/core/handler/ArrayGetRankHandler.js +2 -2
  171. package/lib/core/handler/ArrayGetSizeHandler.js +2 -2
  172. package/lib/core/handler/ArrayHandler.js +2 -2
  173. package/lib/core/handler/ArraySetItemHandler.js +2 -2
  174. package/lib/core/handler/CastingHandler.js +2 -2
  175. package/lib/core/handler/ConvertTypeHandler.js +3 -3
  176. package/lib/core/handler/CreateClassInstanceHandler.js +4 -2
  177. package/lib/core/handler/DestructReferenceHandler.js +3 -3
  178. package/lib/core/handler/EnableNamespaceHandler.js +3 -3
  179. package/lib/core/handler/EnableTypeHandler.js +3 -3
  180. package/lib/core/handler/GetGlobalStaticFieldHandler.js +2 -2
  181. package/lib/core/handler/GetInstanceFieldHandler.js +2 -2
  182. package/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +2 -2
  183. package/lib/core/handler/GetStaticFieldHandler.js +3 -2
  184. package/lib/core/handler/GetStaticMethodAsDelegateHandler.js +2 -3
  185. package/lib/core/handler/GetTypeHandler.js +16 -7
  186. package/lib/core/handler/Handler.js +91 -60
  187. package/lib/core/handler/InvokeDelegateHandler.js +4 -4
  188. package/lib/core/handler/InvokeGlobalFunctionHandler.js +3 -5
  189. package/lib/core/handler/InvokeInstanceMethodHandler.js +2 -2
  190. package/lib/core/handler/InvokeStaticMethodHandler.js +2 -2
  191. package/lib/core/handler/LoadLibraryHandler.js +7 -4
  192. package/lib/core/handler/PassDelegateHandler.js +38 -24
  193. package/lib/core/handler/ResolveReferenceHandler.js +13 -3
  194. package/lib/core/handler/SetGlobalStaticFieldHandler.js +2 -2
  195. package/lib/core/handler/SetInstanceFieldHandler.js +2 -2
  196. package/lib/core/handler/SetStaticFieldHandler.js +2 -2
  197. package/lib/core/handler/ValueHandler.js +2 -2
  198. package/lib/core/interpreter/Interpreter.js +164 -0
  199. package/lib/core/namespaceCache/NamespaceCache.js +1 -1
  200. package/lib/core/protocol/CommandDeserializer.js +180 -0
  201. package/lib/core/protocol/CommandSerializer.js +48 -0
  202. package/lib/core/protocol/TypeDeserializer.js +81 -0
  203. package/lib/core/protocol/TypeSerializer.js +143 -0
  204. package/lib/core/receiver/Receiver.js +17 -8
  205. package/lib/core/receiver/ReceiverNative.js +2 -2
  206. package/lib/core/referenceCache/ReferencesCache.js +27 -4
  207. package/lib/core/transmitter/Transmitter.js +6 -8
  208. package/lib/core/transmitter/TransmitterWebsocket.js +2 -6
  209. package/lib/core/transmitter/TransmitterWebsocketBrowser.js +39 -0
  210. package/lib/core/transmitter/TransmitterWrapper.js +26 -13
  211. package/lib/core/typeCache/TypeCache.js +1 -1
  212. package/lib/core/webSocketClient/WebSocketClient.js +56 -24
  213. package/lib/core/webSocketClient/WebSocketClientBrowser.js +174 -0
  214. package/lib/declarations.d.ts +35 -0
  215. package/lib/sdk/ConfigRuntimeFactory.js +108 -58
  216. package/lib/sdk/InvocationContext.js +487 -0
  217. package/lib/sdk/Javonet.js +63 -29
  218. package/lib/sdk/RuntimeContext.js +289 -0
  219. package/lib/sdk/RuntimeFactory.js +12 -5
  220. package/lib/sdk/tools/browser/ConfigSourceResolver.js +146 -0
  221. package/lib/sdk/tools/browser/SdkExceptionHelper.js +20 -0
  222. package/lib/sdk/tools/nodejs/JsonFileResolver.js +106 -0
  223. package/lib/sdk/tools/nodejs/SdkExceptionHelper.js +89 -0
  224. package/lib/utils/Command.js +67 -0
  225. package/lib/utils/CommandType.js +45 -0
  226. package/lib/utils/ConnectionType.js +6 -0
  227. package/lib/utils/CreateRequire.browser.js +5 -0
  228. package/lib/utils/CreateRequire.node.js +3 -0
  229. package/lib/utils/CustomError.js +6 -0
  230. package/lib/utils/ExceptionType.js +13 -0
  231. package/lib/utils/Runtime.js +113 -0
  232. package/lib/utils/RuntimeLogger.js +19 -9
  233. package/lib/utils/RuntimeLoggerBrowser.js +35 -0
  234. package/lib/utils/RuntimeName.js +14 -0
  235. package/lib/utils/RuntimeNameHandler.js +38 -0
  236. package/lib/utils/StringEncodingMode.js +7 -0
  237. package/lib/utils/Type.js +15 -0
  238. package/lib/utils/connectionData/IConnectionData.js +13 -0
  239. package/lib/utils/connectionData/InMemoryConnectionData.js +35 -0
  240. package/lib/utils/connectionData/WsConnectionData.js +48 -0
  241. package/lib/utils/exception/ExceptionSerializer.js +64 -0
  242. package/lib/utils/exception/ExceptionThrower.js +96 -0
  243. package/lib/utils/guid/generateGuid.js +9 -0
  244. package/lib/utils/nodejs/TypesConverter.js +91 -0
  245. package/lib/utils/nodejs/connectionData/TcpConnectionData.js +89 -0
  246. package/lib/utils/nodejs/uuid/REGEX.js +2 -0
  247. package/lib/utils/nodejs/uuid/rng.js +23 -0
  248. package/lib/utils/nodejs/uuid/stringify.js +51 -0
  249. package/lib/utils/nodejs/uuid/v4.js +26 -0
  250. package/lib/utils/nodejs/uuid/validate.js +7 -0
  251. package/package.json +68 -47
  252. package/Binaries/Clr/Javonet.Clr.Utils.dll +0 -0
  253. package/Binaries/Clr/JavonetClrRuntime.dll +0 -0
  254. package/Binaries/Jvm/JavonetJvmRuntime.jar +0 -0
  255. package/Binaries/Native/Linux/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  256. package/Binaries/Native/Linux/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  257. package/Binaries/Native/Linux/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  258. package/Binaries/Native/Linux/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  259. package/Binaries/Native/Linux/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  260. package/Binaries/Native/Linux/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  261. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  262. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  263. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  264. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  265. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  266. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  267. package/Binaries/Native/Linux/ARM64/libJavonetActivationService.so +0 -0
  268. package/Binaries/Native/Linux/ARM64/libJavonetCppRuntimeNative.so +0 -0
  269. package/Binaries/Native/Linux/ARM64/libJavonetGoRuntimeNative.so +0 -0
  270. package/Binaries/Native/Linux/ARM64/libJavonetJvmRuntimeNative.so +0 -0
  271. package/Binaries/Native/Linux/ARM64/libJavonetNetcoreRuntimeNative.so +0 -0
  272. package/Binaries/Native/Linux/ARM64/libJavonetPhpRuntimeNative.so +0 -0
  273. package/Binaries/Native/Linux/ARM64/libJavonetPythonRuntimeNative.so +0 -0
  274. package/Binaries/Native/Linux/ARM64/libJavonetRuby342RuntimeNative.so +0 -0
  275. package/Binaries/Native/Linux/ARM64/libJavonetRubyRuntimeNative.so +0 -0
  276. package/Binaries/Native/Linux/ARM64/libJavonetTcpClient.so +0 -0
  277. package/Binaries/Native/Linux/ARM64/libJavonetTcpTlsClient.so +0 -0
  278. package/Binaries/Native/Linux/ARM64/libUtils.so +0 -0
  279. package/Binaries/Native/Linux/ARM64/libnethost.so +0 -0
  280. package/Binaries/Native/Linux/ARM64/version.txt +0 -1
  281. package/Binaries/Native/Linux/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  282. package/Binaries/Native/Linux/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  283. package/Binaries/Native/Linux/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  284. package/Binaries/Native/Linux/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  285. package/Binaries/Native/Linux/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  286. package/Binaries/Native/Linux/X64/NetVersionLatest.runtimeconfig.json +0 -10
  287. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  288. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  289. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  290. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  291. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  292. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  293. package/Binaries/Native/Linux/X64/libJavonetActivationService.so +0 -0
  294. package/Binaries/Native/Linux/X64/libJavonetCppRuntimeNative.so +0 -0
  295. package/Binaries/Native/Linux/X64/libJavonetGoRuntimeNative.so +0 -0
  296. package/Binaries/Native/Linux/X64/libJavonetJvmRuntimeNative.so +0 -0
  297. package/Binaries/Native/Linux/X64/libJavonetNetcoreRuntimeNative.so +0 -0
  298. package/Binaries/Native/Linux/X64/libJavonetNodejs1816RuntimeNative.so +0 -0
  299. package/Binaries/Native/Linux/X64/libJavonetNodejsRuntimeNative.so +0 -0
  300. package/Binaries/Native/Linux/X64/libJavonetPerlRuntimeNative.so +0 -0
  301. package/Binaries/Native/Linux/X64/libJavonetPhpRuntimeNative.so +0 -0
  302. package/Binaries/Native/Linux/X64/libJavonetPython2RuntimeNative.so +0 -0
  303. package/Binaries/Native/Linux/X64/libJavonetPythonRuntimeNative.so +0 -0
  304. package/Binaries/Native/Linux/X64/libJavonetRuby278RuntimeNative.so +0 -0
  305. package/Binaries/Native/Linux/X64/libJavonetRuby342RuntimeNative.so +0 -0
  306. package/Binaries/Native/Linux/X64/libJavonetRubyRuntimeNative.so +0 -0
  307. package/Binaries/Native/Linux/X64/libJavonetTcpClient.so +0 -0
  308. package/Binaries/Native/Linux/X64/libJavonetTcpTlsClient.so +0 -0
  309. package/Binaries/Native/Linux/X64/libUtils.so +0 -0
  310. package/Binaries/Native/Linux/X64/libnethost.so +0 -0
  311. package/Binaries/Native/Linux/X64/libnode.so.108 +0 -0
  312. package/Binaries/Native/Linux/X64/libperl.so.5.34.0 +0 -0
  313. package/Binaries/Native/Linux/X64/libpython2.7.so.1.0 +0 -0
  314. package/Binaries/Native/Linux/X64/libruby.so.2.7.8 +0 -0
  315. package/Binaries/Native/Linux/X64/libruby.so.3.4.2 +0 -0
  316. package/Binaries/Native/Linux/X64/version.txt +0 -1
  317. package/Binaries/Native/MacOs/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  318. package/Binaries/Native/MacOs/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  319. package/Binaries/Native/MacOs/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  320. package/Binaries/Native/MacOs/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  321. package/Binaries/Native/MacOs/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  322. package/Binaries/Native/MacOs/X64/NetVersionLatest.runtimeconfig.json +0 -10
  323. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  324. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  325. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  326. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  327. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  328. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  329. package/Binaries/Native/MacOs/X64/libJavonetActivationService.dylib +0 -0
  330. package/Binaries/Native/MacOs/X64/libJavonetCppRuntimeNative.dylib +0 -0
  331. package/Binaries/Native/MacOs/X64/libJavonetGoRuntimeNative.dylib +0 -0
  332. package/Binaries/Native/MacOs/X64/libJavonetJvmRuntimeNative.dylib +0 -0
  333. package/Binaries/Native/MacOs/X64/libJavonetNetcoreRuntimeNative.dylib +0 -0
  334. package/Binaries/Native/MacOs/X64/libJavonetNodejs1816RuntimeNative.dylib +0 -0
  335. package/Binaries/Native/MacOs/X64/libJavonetNodejsRuntimeNative.dylib +0 -0
  336. package/Binaries/Native/MacOs/X64/libJavonetPhpRuntimeNative.dylib +0 -0
  337. package/Binaries/Native/MacOs/X64/libJavonetPythonRuntimeNative.dylib +0 -0
  338. package/Binaries/Native/MacOs/X64/libJavonetRuby278RuntimeNative.dylib +0 -0
  339. package/Binaries/Native/MacOs/X64/libJavonetRuby342RuntimeNative.dylib +0 -0
  340. package/Binaries/Native/MacOs/X64/libJavonetRubyRuntimeNative.dylib +0 -0
  341. package/Binaries/Native/MacOs/X64/libJavonetTcpClient.dylib +0 -0
  342. package/Binaries/Native/MacOs/X64/libJavonetTcpTlsClient.dylib +0 -0
  343. package/Binaries/Native/MacOs/X64/libUtils.dylib +0 -0
  344. package/Binaries/Native/MacOs/X64/libnethost.dylib +0 -0
  345. package/Binaries/Native/MacOs/X64/libnode.108.dylib +0 -0
  346. package/Binaries/Native/MacOs/X64/libruby.2.7.dylib +0 -0
  347. package/Binaries/Native/MacOs/X64/libruby.3.4.dylib +0 -0
  348. package/Binaries/Native/MacOs/X64/version.txt +0 -1
  349. package/Binaries/Native/Windows/ARM64/JavonetActivationService.dll +0 -0
  350. package/Binaries/Native/Windows/ARM64/JavonetCppRuntimeNative.dll +0 -0
  351. package/Binaries/Native/Windows/ARM64/JavonetGoRuntimeNative.dll +0 -0
  352. package/Binaries/Native/Windows/ARM64/JavonetJvmRuntimeNative.dll +0 -0
  353. package/Binaries/Native/Windows/ARM64/JavonetNetcoreRuntimeNative.dll +0 -0
  354. package/Binaries/Native/Windows/ARM64/JavonetPhpRuntimeNative.dll +0 -0
  355. package/Binaries/Native/Windows/ARM64/JavonetPythonRuntimeNative.dll +0 -0
  356. package/Binaries/Native/Windows/ARM64/JavonetRuby278RuntimeNative.dll +0 -0
  357. package/Binaries/Native/Windows/ARM64/JavonetRubyRuntimeNative.dll +0 -0
  358. package/Binaries/Native/Windows/ARM64/JavonetTcpClient.dll +0 -0
  359. package/Binaries/Native/Windows/ARM64/JavonetTcpTlsClient.dll +0 -0
  360. package/Binaries/Native/Windows/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  361. package/Binaries/Native/Windows/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  362. package/Binaries/Native/Windows/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  363. package/Binaries/Native/Windows/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  364. package/Binaries/Native/Windows/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  365. package/Binaries/Native/Windows/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  366. package/Binaries/Native/Windows/ARM64/Utils.dll +0 -0
  367. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  368. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  369. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  370. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  371. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  372. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  373. package/Binaries/Native/Windows/ARM64/libcrypto-3-arm64.dll +0 -0
  374. package/Binaries/Native/Windows/ARM64/libssl-3-arm64.dll +0 -0
  375. package/Binaries/Native/Windows/ARM64/libxml2.dll +0 -0
  376. package/Binaries/Native/Windows/ARM64/libxmlsec-openssl.dll +0 -0
  377. package/Binaries/Native/Windows/ARM64/libxmlsec.dll +0 -0
  378. package/Binaries/Native/Windows/ARM64/libxslt.dll +0 -0
  379. package/Binaries/Native/Windows/ARM64/nethost.dll +0 -0
  380. package/Binaries/Native/Windows/ARM64/version.txt +0 -0
  381. package/Binaries/Native/Windows/X64/JavonetActivationService.dll +0 -0
  382. package/Binaries/Native/Windows/X64/JavonetClrRuntimeNative.dll +0 -0
  383. package/Binaries/Native/Windows/X64/JavonetCppRuntimeNative.dll +0 -0
  384. package/Binaries/Native/Windows/X64/JavonetGoRuntimeNative.dll +0 -0
  385. package/Binaries/Native/Windows/X64/JavonetJvmRuntimeNative.dll +0 -0
  386. package/Binaries/Native/Windows/X64/JavonetNetcoreRuntimeNative.dll +0 -0
  387. package/Binaries/Native/Windows/X64/JavonetNodejs1816RuntimeNative.dll +0 -0
  388. package/Binaries/Native/Windows/X64/JavonetNodejsRuntimeNative.dll +0 -0
  389. package/Binaries/Native/Windows/X64/JavonetPerl532RuntimeNativeAuxiliary.dll +0 -0
  390. package/Binaries/Native/Windows/X64/JavonetPerl540RuntimeNativeAuxiliary.dll +0 -0
  391. package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNative.dll +0 -0
  392. package/Binaries/Native/Windows/X64/JavonetPhpRuntimeNative.dll +0 -0
  393. package/Binaries/Native/Windows/X64/JavonetPython2RuntimeNative.dll +0 -0
  394. package/Binaries/Native/Windows/X64/JavonetPythonRuntimeNative.dll +0 -0
  395. package/Binaries/Native/Windows/X64/JavonetRuby278RuntimeNative.dll +0 -0
  396. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNative.dll +0 -0
  397. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNativeAuxiliary.dll +0 -0
  398. package/Binaries/Native/Windows/X64/JavonetTcpClient.dll +0 -0
  399. package/Binaries/Native/Windows/X64/JavonetTcpTlsClient.dll +0 -0
  400. package/Binaries/Native/Windows/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  401. package/Binaries/Native/Windows/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  402. package/Binaries/Native/Windows/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  403. package/Binaries/Native/Windows/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  404. package/Binaries/Native/Windows/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  405. package/Binaries/Native/Windows/X64/NetVersionLatest.runtimeconfig.json +0 -10
  406. package/Binaries/Native/Windows/X64/Utils.dll +0 -0
  407. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  408. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  409. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  410. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  411. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  412. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  413. package/Binaries/Native/Windows/X64/libcrypto-3-x64.dll +0 -0
  414. package/Binaries/Native/Windows/X64/libnode.dll +0 -0
  415. package/Binaries/Native/Windows/X64/libssl-3-x64.dll +0 -0
  416. package/Binaries/Native/Windows/X64/libxml2.dll +0 -0
  417. package/Binaries/Native/Windows/X64/libxmlsec-openssl.dll +0 -0
  418. package/Binaries/Native/Windows/X64/libxmlsec.dll +0 -0
  419. package/Binaries/Native/Windows/X64/libxslt.dll +0 -0
  420. package/Binaries/Native/Windows/X64/nethost.dll +0 -0
  421. package/Binaries/Native/Windows/X64/python27.dll +0 -0
  422. package/Binaries/Native/Windows/X64/version.txt +0 -1
  423. package/Binaries/Native/Windows/X64/x64-msvcrt-ruby270.dll +0 -0
  424. package/Binaries/Native/Windows/X64/x64-ucrt-ruby340.dll +0 -0
  425. package/Binaries/Native/Windows/X86/JavonetActivationService.dll +0 -0
  426. package/Binaries/Native/Windows/X86/JavonetClrRuntimeNative.dll +0 -0
  427. package/Binaries/Native/Windows/X86/JavonetCppRuntimeNative.dll +0 -0
  428. package/Binaries/Native/Windows/X86/JavonetGoRuntimeNative.dll +0 -0
  429. package/Binaries/Native/Windows/X86/JavonetJvmRuntimeNative.dll +0 -0
  430. package/Binaries/Native/Windows/X86/JavonetNetcoreRuntimeNative.dll +0 -0
  431. package/Binaries/Native/Windows/X86/JavonetPhpRuntimeNative.dll +0 -0
  432. package/Binaries/Native/Windows/X86/JavonetPython2RuntimeNative.dll +0 -0
  433. package/Binaries/Native/Windows/X86/JavonetPythonRuntimeNative.dll +0 -0
  434. package/Binaries/Native/Windows/X86/JavonetTcpClient.dll +0 -0
  435. package/Binaries/Native/Windows/X86/JavonetTcpTlsClient.dll +0 -0
  436. package/Binaries/Native/Windows/X86/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  437. package/Binaries/Native/Windows/X86/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  438. package/Binaries/Native/Windows/X86/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  439. package/Binaries/Native/Windows/X86/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  440. package/Binaries/Native/Windows/X86/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  441. package/Binaries/Native/Windows/X86/NetVersionLatest.runtimeconfig.json +0 -10
  442. package/Binaries/Native/Windows/X86/Utils.dll +0 -0
  443. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  444. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  445. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  446. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  447. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  448. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  449. package/Binaries/Native/Windows/X86/libcrypto-3.dll +0 -0
  450. package/Binaries/Native/Windows/X86/libssl-3.dll +0 -0
  451. package/Binaries/Native/Windows/X86/libxml2.dll +0 -0
  452. package/Binaries/Native/Windows/X86/libxmlsec-openssl.dll +0 -0
  453. package/Binaries/Native/Windows/X86/libxmlsec.dll +0 -0
  454. package/Binaries/Native/Windows/X86/libxslt.dll +0 -0
  455. package/Binaries/Native/Windows/X86/nethost.dll +0 -0
  456. package/Binaries/Native/Windows/X86/version.txt +0 -1
  457. package/Binaries/Netcore/Javonet.Netcore.Core.dll +0 -0
  458. package/Binaries/Netcore/Javonet.Netcore.Utils.dll +0 -0
  459. package/Binaries/Nodejs/index.js +0 -66
  460. package/Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache.js +0 -35
  461. package/Binaries/Nodejs/lib/core/handler/AbstractHandler.js +0 -41
  462. package/Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler.js +0 -38
  463. package/Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler.js +0 -28
  464. package/Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  465. package/Binaries/Nodejs/lib/core/handler/ArrayHandler.js +0 -18
  466. package/Binaries/Nodejs/lib/core/handler/ArraySetItemHandler.js +0 -43
  467. package/Binaries/Nodejs/lib/core/handler/CastingHandler.js +0 -10
  468. package/Binaries/Nodejs/lib/core/handler/ConvertTypeHandler.js +0 -38
  469. package/Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  470. package/Binaries/Nodejs/lib/core/handler/DestructReferenceHandler.js +0 -19
  471. package/Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler.js +0 -34
  472. package/Binaries/Nodejs/lib/core/handler/EnableTypeHandler.js +0 -35
  473. package/Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  474. package/Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  475. package/Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  476. package/Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler.js +0 -36
  477. package/Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  478. package/Binaries/Nodejs/lib/core/handler/GetTypeHandler.js +0 -63
  479. package/Binaries/Nodejs/lib/core/handler/Handler.js +0 -98
  480. package/Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler.js +0 -36
  481. package/Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  482. package/Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  483. package/Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  484. package/Binaries/Nodejs/lib/core/handler/LoadLibraryHandler.js +0 -48
  485. package/Binaries/Nodejs/lib/core/handler/PassDelegateHandler.js +0 -157
  486. package/Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler.js +0 -13
  487. package/Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  488. package/Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  489. package/Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler.js +0 -33
  490. package/Binaries/Nodejs/lib/core/handler/ValueHandler.js +0 -13
  491. package/Binaries/Nodejs/lib/core/interpreter/Interpreter.js +0 -142
  492. package/Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache.js +0 -39
  493. package/Binaries/Nodejs/lib/core/protocol/CommandDeserializer.js +0 -181
  494. package/Binaries/Nodejs/lib/core/protocol/CommandSerializer.js +0 -50
  495. package/Binaries/Nodejs/lib/core/protocol/TypeDeserializer.js +0 -83
  496. package/Binaries/Nodejs/lib/core/protocol/TypeSerializer.js +0 -143
  497. package/Binaries/Nodejs/lib/core/receiver/Receiver.js +0 -32
  498. package/Binaries/Nodejs/lib/core/receiver/ReceiverNative.js +0 -13
  499. package/Binaries/Nodejs/lib/core/referenceCache/ReferencesCache.js +0 -30
  500. package/Binaries/Nodejs/lib/core/transmitter/Transmitter.js +0 -21
  501. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  502. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper.js +0 -47
  503. package/Binaries/Nodejs/lib/core/typeCache/TypeCache.js +0 -39
  504. package/Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient.js +0 -136
  505. package/Binaries/Nodejs/lib/declarations.d.ts +0 -64
  506. package/Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory.js +0 -155
  507. package/Binaries/Nodejs/lib/sdk/InvocationContext.js +0 -485
  508. package/Binaries/Nodejs/lib/sdk/Javonet.js +0 -105
  509. package/Binaries/Nodejs/lib/sdk/RuntimeContext.js +0 -300
  510. package/Binaries/Nodejs/lib/sdk/RuntimeFactory.js +0 -87
  511. package/Binaries/Nodejs/lib/sdk/tools/JsonFileResolver.js +0 -101
  512. package/Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  513. package/Binaries/Nodejs/lib/utils/Command.js +0 -69
  514. package/Binaries/Nodejs/lib/utils/CommandType.js +0 -47
  515. package/Binaries/Nodejs/lib/utils/ConnectionType.js +0 -8
  516. package/Binaries/Nodejs/lib/utils/CustomError.js +0 -8
  517. package/Binaries/Nodejs/lib/utils/ExceptionType.js +0 -13
  518. package/Binaries/Nodejs/lib/utils/RuntimeLogger.js +0 -30
  519. package/Binaries/Nodejs/lib/utils/RuntimeName.js +0 -16
  520. package/Binaries/Nodejs/lib/utils/RuntimeNameHandler.js +0 -38
  521. package/Binaries/Nodejs/lib/utils/StringEncodingMode.js +0 -9
  522. package/Binaries/Nodejs/lib/utils/Type.js +0 -17
  523. package/Binaries/Nodejs/lib/utils/TypesConverter.js +0 -91
  524. package/Binaries/Nodejs/lib/utils/connectionData/IConnectionData.js +0 -15
  525. package/Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  526. package/Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData.js +0 -77
  527. package/Binaries/Nodejs/lib/utils/connectionData/WsConnectionData.js +0 -50
  528. package/Binaries/Nodejs/lib/utils/exception/ExceptionSerializer.js +0 -64
  529. package/Binaries/Nodejs/lib/utils/exception/ExceptionThrower.js +0 -95
  530. package/Binaries/Nodejs/lib/utils/guid/generateGuid.js +0 -9
  531. package/Binaries/Nodejs/lib/utils/uuid/REGEX.js +0 -2
  532. package/Binaries/Nodejs/lib/utils/uuid/rng.js +0 -12
  533. package/Binaries/Nodejs/lib/utils/uuid/stringify.js +0 -51
  534. package/Binaries/Nodejs/lib/utils/uuid/v4.js +0 -27
  535. package/Binaries/Nodejs/lib/utils/uuid/validate.js +0 -6
  536. package/Binaries/Perl/Linux/X64/deps/bin/moose-outdated +0 -22
  537. package/Binaries/Perl/Linux/X64/deps/bin/package-stash-conflicts +0 -22
  538. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-events +0 -62
  539. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-highlight +0 -54
  540. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load +0 -155
  541. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load-dump +0 -314
  542. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-parse-emit +0 -123
  543. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  544. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  545. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  546. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  547. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  548. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  549. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Capture/Tiny.pm +0 -917
  550. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load/PP.pm +0 -59
  551. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load.pm +0 -420
  552. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  553. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  554. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  555. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/OptList.pm +0 -416
  556. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/GlobalDestruction.pm +0 -110
  557. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/OverloadInfo.pm +0 -309
  558. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace/Frame.pm +0 -272
  559. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace.pm +0 -624
  560. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Eval/Closure.pm +0 -379
  561. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config/MakeMaker.pm +0 -141
  562. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config.pm +0 -152
  563. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Unix.pm +0 -97
  564. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/VMS.pm +0 -118
  565. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Windows.pm +0 -125
  566. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers.pm +0 -122
  567. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/InstallPaths.pm +0 -627
  568. package/Binaries/Perl/Linux/X64/deps/lib/perl5/FFI/CheckLib.pm +0 -856
  569. package/Binaries/Perl/Linux/X64/deps/lib/perl5/File/Which.pm +0 -398
  570. package/Binaries/Perl/Linux/X64/deps/lib/perl5/IPC/System/Simple.pm +0 -1115
  571. package/Binaries/Perl/Linux/X64/deps/lib/perl5/MRO/Compat.pm +0 -407
  572. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Implementation.pm +0 -290
  573. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime/Conflicts.pm +0 -105
  574. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime.pm +0 -520
  575. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  576. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  577. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  578. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  579. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  580. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  581. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  582. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  583. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  584. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  585. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  586. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  587. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  588. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  589. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  590. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  591. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  592. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  593. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  594. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  595. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  596. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  597. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  598. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  599. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  600. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  601. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  602. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  603. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  604. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  605. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  606. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  607. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  608. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  609. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  610. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  611. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  612. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  613. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  614. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  615. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  616. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  617. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  618. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  619. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  620. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  621. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  622. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  623. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  624. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  625. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  626. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  627. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  628. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  629. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  630. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  631. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  632. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  633. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  634. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  635. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  636. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  637. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  638. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  639. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  640. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  641. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  642. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  643. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  644. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  645. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  646. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  647. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  648. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  649. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  650. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  651. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  652. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  653. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  654. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  655. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  656. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  657. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  658. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  659. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  660. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  661. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  662. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  663. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  664. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  665. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  666. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  667. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  668. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  669. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  670. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI.pm +0 -822
  671. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/DeprecationManager.pm +0 -368
  672. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/Conflicts.pm +0 -35
  673. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/PP.pm +0 -503
  674. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash.pm +0 -308
  675. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Path/Tiny.pm +0 -3946
  676. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  677. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Scope/Guard.pm +0 -183
  678. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Cookbook.pod +0 -602
  679. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Progressive.pm +0 -174
  680. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Tutorial.pod +0 -539
  681. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Util.pm +0 -488
  682. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter.pm +0 -1769
  683. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Install.pm +0 -486
  684. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Task/Weaken.pm +0 -95
  685. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  686. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Try/Tiny.pm +0 -820
  687. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  688. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  689. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  690. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  691. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  692. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  693. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  694. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  695. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  696. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  697. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  698. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  699. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  700. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  701. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  702. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  703. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  704. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  705. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  706. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  707. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  708. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  709. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  710. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  711. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  712. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  713. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  714. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  715. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  716. package/Binaries/Perl/Linux/X64/deps/lib/perl5/aliased.pm +0 -371
  717. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  718. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/install.json +0 -1
  719. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/MYMETA.json +0 -124
  720. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/install.json +0 -1
  721. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/MYMETA.json +0 -1290
  722. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/install.json +0 -1
  723. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/MYMETA.json +0 -1222
  724. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/install.json +0 -1
  725. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  726. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/install.json +0 -1
  727. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/MYMETA.json +0 -570
  728. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/install.json +0 -1
  729. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  730. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/install.json +0 -1
  731. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/MYMETA.json +0 -65
  732. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/install.json +0 -1
  733. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/MYMETA.json +0 -73
  734. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/install.json +0 -1
  735. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/MYMETA.json +0 -1081
  736. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/install.json +0 -1
  737. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/MYMETA.json +0 -463
  738. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/install.json +0 -1
  739. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/MYMETA.json +0 -599
  740. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/install.json +0 -1
  741. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/MYMETA.json +0 -79
  742. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/install.json +0 -1
  743. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/MYMETA.json +0 -89
  744. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/install.json +0 -1
  745. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/MYMETA.json +0 -76
  746. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/install.json +0 -1
  747. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/MYMETA.json +0 -156
  748. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/install.json +0 -1
  749. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/MYMETA.json +0 -198
  750. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/install.json +0 -1
  751. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/MYMETA.json +0 -81
  752. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/install.json +0 -1
  753. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/MYMETA.json +0 -69
  754. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/install.json +0 -1
  755. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/MYMETA.json +0 -66
  756. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/install.json +0 -1
  757. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/MYMETA.json +0 -122
  758. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/install.json +0 -1
  759. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/MYMETA.json +0 -625
  760. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/install.json +0 -1
  761. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/MYMETA.json +0 -83
  762. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/install.json +0 -1
  763. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/MYMETA.json +0 -1162
  764. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/install.json +0 -1
  765. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/MYMETA.json +0 -3189
  766. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/install.json +0 -1
  767. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  768. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/install.json +0 -1
  769. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/MYMETA.json +0 -1115
  770. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/install.json +0 -1
  771. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  772. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/install.json +0 -1
  773. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/MYMETA.json +0 -1069
  774. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/install.json +0 -1
  775. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/MYMETA.json +0 -1371
  776. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/install.json +0 -1
  777. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/MYMETA.json +0 -1331
  778. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/install.json +0 -1
  779. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/MYMETA.json +0 -89
  780. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/install.json +0 -1
  781. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/MYMETA.json +0 -186
  782. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/install.json +0 -1
  783. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  784. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/install.json +0 -1
  785. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  786. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  787. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/MYMETA.json +0 -53
  788. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/install.json +0 -1
  789. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/MYMETA.json +0 -595
  790. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/install.json +0 -1
  791. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/MYMETA.json +0 -55
  792. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/install.json +0 -1
  793. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/MYMETA.json +0 -572
  794. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/install.json +0 -1
  795. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/MYMETA.json +0 -1092
  796. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/install.json +0 -1
  797. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  798. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/install.json +0 -1
  799. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/MYMETA.json +0 -1344
  800. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/install.json +0 -1
  801. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/MYMETA.json +0 -40
  802. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/install.json +0 -1
  803. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  804. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/install.json +0 -1
  805. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/MYMETA.json +0 -1035
  806. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/install.json +0 -1
  807. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  808. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/install.json +0 -1
  809. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/Load/XS.pm +0 -89
  810. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Attribute.pm +0 -1100
  811. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class/Immutable/Trait.pm +0 -172
  812. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class.pm +0 -2312
  813. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Deprecated.pm +0 -95
  814. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Instance.pm +0 -533
  815. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Accessor.pm +0 -404
  816. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Constructor.pm +0 -251
  817. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Generated.pm +0 -142
  818. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Inlined.pm +0 -191
  819. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Meta.pm +0 -169
  820. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Wrapped.pm +0 -333
  821. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method.pm +0 -356
  822. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/MiniTrait.pm +0 -113
  823. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/AttributeCore.pm +0 -125
  824. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasAttributes.pm +0 -171
  825. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasMethods.pm +0 -304
  826. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasOverloads.pm +0 -243
  827. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin.pm +0 -107
  828. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Module.pm +0 -209
  829. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Object.pm +0 -196
  830. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Overload.pm +0 -340
  831. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Package.pm +0 -460
  832. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP.pm +0 -1222
  833. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Data/UUID.pm +0 -158
  834. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Build.pm +0 -634
  835. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/API.pm +0 -293
  836. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Buffer.pm +0 -366
  837. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Bundle.pm +0 -795
  838. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Closure.pm +0 -199
  839. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Constant.pm +0 -246
  840. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/DL.pm +0 -231
  841. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Function.pm +0 -229
  842. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Internal.pm +0 -96
  843. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/ASM.pm +0 -126
  844. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/C.pm +0 -123
  845. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/Win32.pm +0 -457
  846. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang.pm +0 -141
  847. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Legacy.pm +0 -140
  848. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Memory.pm +0 -268
  849. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/Meta.pm +0 -148
  850. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/TieArray.pm +0 -174
  851. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record.pm +0 -575
  852. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/ShareConfig.pm +0 -122
  853. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/PointerSizeBuffer.pm +0 -162
  854. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringArray.pm +0 -272
  855. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringPointer.pm +0 -190
  856. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/WideString.pm +0 -529
  857. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type.pm +0 -1399
  858. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version0.pm +0 -285
  859. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version1.pm +0 -390
  860. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version2.pm +0 -115
  861. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser.pm +0 -183
  862. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus.pm +0 -3302
  863. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Builder.pm +0 -538
  864. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Result.pm +0 -134
  865. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner.pm +0 -204
  866. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe.pm +0 -715
  867. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Temp.pm +0 -147
  868. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/typemap +0 -46
  869. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Conflicts.pm +0 -132
  870. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod +0 -384
  871. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod +0 -397
  872. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod +0 -176
  873. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Company_Subtypes.pod +0 -615
  874. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod +0 -127
  875. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Document_AugmentAndInner.pod +0 -197
  876. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod +0 -318
  877. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod +0 -345
  878. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Immutable.pod +0 -99
  879. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod +0 -180
  880. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod +0 -489
  881. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod +0 -153
  882. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/ExtensionOverview.pod +0 -404
  883. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod +0 -160
  884. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod +0 -172
  885. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod +0 -337
  886. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod +0 -132
  887. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod +0 -304
  888. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod +0 -325
  889. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod +0 -224
  890. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Table_MetaclassTrait.pod +0 -157
  891. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/WhyMeta.pod +0 -117
  892. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/ApplicationToInstance.pod +0 -191
  893. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Comparable_CodeReuse.pod +0 -379
  894. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod +0 -230
  895. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Keywords.pod +0 -240
  896. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Types.pod +0 -130
  897. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Style.pod +0 -77
  898. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook.pod +0 -289
  899. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Deprecated.pm +0 -98
  900. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AccessorMustReadWrite.pm +0 -14
  901. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +0 -19
  902. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +0 -19
  903. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +0 -19
  904. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ApplyTakesABlessedInstance.pm +0 -19
  905. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +0 -19
  906. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInRoles.pm +0 -32
  907. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInSummation.pm +0 -28
  908. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +0 -19
  909. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeIsRequired.pm +0 -45
  910. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +0 -19
  911. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeNamesDoNotMatch.pm +0 -25
  912. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotAnObject.pm +0 -28
  913. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotDefined.pm +0 -22
  914. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +0 -14
  915. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BadOptionFormat.pm +0 -25
  916. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +0 -19
  917. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderDoesNotExist.pm +0 -14
  918. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +0 -14
  919. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +0 -26
  920. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMustBeAMethodName.pm +0 -19
  921. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +0 -19
  922. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +0 -19
  923. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanExtendOnlyClasses.pm +0 -15
  924. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyConsumeRole.pm +0 -18
  925. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyWrapBlessedCode.pm +0 -25
  926. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASubclass.pm +0 -15
  927. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +0 -14
  928. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +0 -18
  929. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAsAnAttributeToARole.pm +0 -20
  930. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +0 -13
  931. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +0 -20
  932. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +0 -13
  933. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentNoSuperMethod.pm +0 -26
  934. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDerefWithoutIsa.pm +0 -14
  935. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +0 -14
  936. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCalculateNativeType.pm +0 -14
  937. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +0 -19
  938. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractMethod.pm +0 -12
  939. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAWeakRef.pm +0 -14
  940. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +0 -17
  941. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +0 -13
  942. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +0 -25
  943. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +0 -19
  944. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +0 -14
  945. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateWithoutIsa.pm +0 -13
  946. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindDelegateMetaclass.pm +0 -14
  947. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindType.pm +0 -19
  948. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +0 -33
  949. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFixMetaclassCompatibility.pm +0 -26
  950. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotGenerateInlineConstraint.pm +0 -30
  951. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +0 -30
  952. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInlineTypeConstraintCheck.pm +0 -14
  953. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotLocatePackageInINC.pm +0 -41
  954. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotMakeMetaclassCompatible.pm +0 -23
  955. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideALocalMethod.pm +0 -20
  956. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +0 -19
  957. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +0 -13
  958. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideNoSuperMethod.pm +0 -26
  959. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +0 -12
  960. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +0 -14
  961. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CircularReferenceInAlso.pm +0 -31
  962. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesNotHaveInitMeta.pm +0 -22
  963. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesTheExcludedRole.pm +0 -22
  964. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassNamesDoNotMatch.pm +0 -25
  965. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +0 -20
  966. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CodeBlockMustBeACodeRef.pm +0 -13
  967. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercingWithoutCoercions.pm +0 -12
  968. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionAlreadyExists.pm +0 -20
  969. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionNeedsTypeConstraint.pm +0 -14
  970. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +0 -22
  971. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +0 -16
  972. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +0 -12
  973. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateMethod.pm +0 -32
  974. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateWriter.pm +0 -24
  975. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalConstructor.pm +0 -34
  976. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalDestructor.pm +0 -34
  977. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +0 -20
  978. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +0 -26
  979. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +0 -14
  980. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotParseType.pm +0 -30
  981. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +0 -13
  982. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +0 -13
  983. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +0 -13
  984. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesArrayRefOfRoles.pm +0 -13
  985. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfAttributes.pm +0 -13
  986. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfMethods.pm +0 -13
  987. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +0 -33
  988. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +0 -20
  989. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +0 -20
  990. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +0 -14
  991. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DoesRequiresRoleName.pm +0 -13
  992. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  993. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumValuesMustBeString.pm +0 -26
  994. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ExtendsMissingArgs.pm +0 -13
  995. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/HandlesMustBeAHashRef.pm +0 -20
  996. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalInheritedOptions.pm +0 -23
  997. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +0 -31
  998. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +0 -27
  999. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm +0 -13
  1000. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +0 -18
  1001. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceBlessedIntoWrongClass.pm +0 -14
  1002. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceMustBeABlessedReference.pm +0 -20
  1003. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +0 -41
  1004. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentToMethod.pm +0 -45
  1005. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentsToTraitAliases.pm +0 -32
  1006. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1007. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHandleValue.pm +0 -20
  1008. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHasProvidedInARole.pm +0 -19
  1009. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidNameForType.pm +0 -17
  1010. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidOverloadOperator.pm +0 -21
  1011. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidRoleApplication.pm +0 -19
  1012. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeConstraint.pm +0 -24
  1013. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1014. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidValueForIs.pm +0 -14
  1015. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaDoesNotDoTheRole.pm +0 -14
  1016. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaLacksDoesMethod.pm +0 -14
  1017. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/LazyAttributeNeedsADefault.pm +0 -14
  1018. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Legacy.pm +0 -8
  1019. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +0 -19
  1020. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MatchActionMustBeACodeRef.pm +0 -28
  1021. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MessageParameterMustBeCodeRef.pm +0 -19
  1022. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +0 -24
  1023. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +0 -26
  1024. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +0 -23
  1025. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +0 -14
  1026. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +0 -14
  1027. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +0 -19
  1028. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassNotLoaded.pm +0 -14
  1029. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassTypeIncompatible.pm +0 -39
  1030. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectedAMetaclassObject.pm +0 -24
  1031. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsFewerArgs.pm +0 -27
  1032. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsMoreArgs.pm +0 -25
  1033. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodModifierNeedsMethodName.pm +0 -13
  1034. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameConflictInRoles.pm +0 -47
  1035. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +0 -20
  1036. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotGiven.pm +0 -13
  1037. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAMethodName.pm +0 -13
  1038. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnAttributeName.pm +0 -13
  1039. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnOverloadOperator.pm +0 -13
  1040. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +0 -19
  1041. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAHashOfOptions.pm +0 -19
  1042. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +0 -24
  1043. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +0 -19
  1044. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfArguments.pm +0 -25
  1045. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +0 -24
  1046. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustProvideANameForTheAttribute.pm +0 -19
  1047. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneMethod.pm +0 -13
  1048. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRole.pm +0 -13
  1049. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +0 -19
  1050. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +0 -19
  1051. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyADelegateToMethod.pm +0 -19
  1052. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMetaclass.pm +0 -20
  1053. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +0 -19
  1054. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +0 -19
  1055. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +0 -19
  1056. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +0 -13
  1057. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyPackageNameAndName.pm +0 -20
  1058. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +0 -25
  1059. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +0 -12
  1060. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +0 -12
  1061. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +0 -12
  1062. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +0 -12
  1063. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoAttributeFoundInSuperClass.pm +0 -14
  1064. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +0 -19
  1065. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoCasesMatched.pm +0 -27
  1066. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +0 -14
  1067. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoDestructorClassSpecified.pm +0 -13
  1068. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +0 -17
  1069. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoParentGivenToSubtype.pm +0 -18
  1070. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OnlyInstancesCanBeCloned.pm +0 -20
  1071. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OperatorIsRequired.pm +0 -19
  1072. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadConflictInSummation.pm +0 -62
  1073. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaClass.pm +0 -13
  1074. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaMethod.pm +0 -13
  1075. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaOverload.pm +0 -13
  1076. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm +0 -13
  1077. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAnOperator.pm +0 -13
  1078. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresNamesForCoderef.pm +0 -13
  1079. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInComposition.pm +0 -43
  1080. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInSummation.pm +0 -66
  1081. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageDoesNotUseMooseExporter.pm +0 -28
  1082. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +0 -25
  1083. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackagesAndModulesAreNotCachable.pm +0 -26
  1084. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +0 -26
  1085. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +0 -27
  1086. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeLacksInitialization.pm +0 -19
  1087. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeNeedsADefault.pm +0 -14
  1088. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsImportedByClass.pm +0 -46
  1089. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +0 -31
  1090. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Attribute.pm +0 -12
  1091. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/AttributeName.pm +0 -12
  1092. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Class.pm +0 -14
  1093. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +0 -49
  1094. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Instance.pm +0 -12
  1095. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InstanceClass.pm +0 -12
  1096. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InvalidAttributeOptions.pm +0 -13
  1097. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Method.pm +0 -12
  1098. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/ParamsHash.pm +0 -12
  1099. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Role.pm +0 -16
  1100. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreate.pm +0 -13
  1101. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreateMOPClass.pm +0 -13
  1102. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/TypeConstraint.pm +0 -14
  1103. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleDoesTheExcludedRole.pm +0 -28
  1104. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleExclusionConflict.pm +0 -27
  1105. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequired.pm +0 -13
  1106. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +0 -13
  1107. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportAugment.pm +0 -12
  1108. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportExtends.pm +0 -12
  1109. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportInner.pm +0 -12
  1110. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +0 -20
  1111. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +0 -14
  1112. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +0 -26
  1113. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +0 -12
  1114. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TriggerMustBeACodeRef.pm +0 -14
  1115. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +0 -25
  1116. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +0 -26
  1117. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +0 -13
  1118. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeHandles.pm +0 -20
  1119. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +0 -20
  1120. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +0 -22
  1121. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +0 -25
  1122. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  1123. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +0 -12
  1124. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +0 -49
  1125. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForTypeConstraint.pm +0 -33
  1126. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrapTakesACodeRefToBless.pm +0 -26
  1127. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrongTypeConstraintGiven.pm +0 -21
  1128. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception.pm +0 -211
  1129. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exporter.pm +0 -1048
  1130. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Intro.pod +0 -77
  1131. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Attributes.pod +0 -709
  1132. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/BestPractices.pod +0 -292
  1133. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Classes.pod +0 -218
  1134. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Concepts.pod +0 -439
  1135. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Construction.pod +0 -228
  1136. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Contributing.pod +0 -545
  1137. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delegation.pod +0 -313
  1138. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delta.pod +0 -1275
  1139. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions/Manifest.pod +0 -4124
  1140. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions.pod +0 -239
  1141. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/FAQ.pod +0 -470
  1142. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MOP.pod +0 -214
  1143. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MethodModifiers.pod +0 -449
  1144. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MooseX.pod +0 -326
  1145. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Resources.pod +0 -526
  1146. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Roles.pod +0 -557
  1147. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Support.pod +0 -204
  1148. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Types.pod +0 -501
  1149. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Unsweetened.pod +0 -386
  1150. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual.pod +0 -334
  1151. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Array.pm +0 -387
  1152. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Bool.pm +0 -146
  1153. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Code.pm +0 -129
  1154. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Counter.pm +0 -157
  1155. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Hash.pm +0 -227
  1156. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Number.pm +0 -155
  1157. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/String.pm +0 -187
  1158. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait.pm +0 -244
  1159. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native.pm +0 -299
  1160. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute.pm +0 -1810
  1161. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class/Immutable/Trait.pm +0 -123
  1162. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class.pm +0 -1014
  1163. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Instance.pm +0 -109
  1164. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/Writer.pm +0 -27
  1165. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/accessor.pm +0 -56
  1166. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/clear.pm +0 -28
  1167. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/count.pm +0 -22
  1168. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/delete.pm +0 -50
  1169. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/elements.pm +0 -22
  1170. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first.pm +0 -42
  1171. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first_index.pm +0 -51
  1172. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/get.pm +0 -31
  1173. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/grep.pm +0 -41
  1174. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/insert.pm +0 -58
  1175. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm +0 -22
  1176. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/join.pm +0 -41
  1177. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/map.pm +0 -41
  1178. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/natatime.pm +0 -66
  1179. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/pop.pm +0 -47
  1180. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/push.pm +0 -36
  1181. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/reduce.pm +0 -42
  1182. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/set.pm +0 -64
  1183. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm +0 -26
  1184. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shift.pm +0 -47
  1185. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm +0 -24
  1186. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort.pm +0 -44
  1187. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm +0 -45
  1188. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/splice.pm +0 -72
  1189. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/uniq.pm +0 -24
  1190. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/unshift.pm +0 -36
  1191. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array.pm +0 -28
  1192. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/not.pm +0 -20
  1193. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/set.pm +0 -24
  1194. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm +0 -29
  1195. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/unset.pm +0 -24
  1196. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute.pm +0 -20
  1197. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm +0 -20
  1198. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Collection.pm +0 -167
  1199. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm +0 -24
  1200. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/dec.pm +0 -30
  1201. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/inc.pm +0 -30
  1202. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/reset.pm +0 -36
  1203. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/set.pm +0 -25
  1204. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm +0 -41
  1205. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm +0 -61
  1206. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +0 -37
  1207. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/count.pm +0 -22
  1208. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/defined.pm +0 -31
  1209. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/delete.pm +0 -46
  1210. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/elements.pm +0 -23
  1211. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/exists.pm +0 -31
  1212. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/get.pm +0 -35
  1213. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm +0 -22
  1214. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/keys.pm +0 -22
  1215. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/kv.pm +0 -23
  1216. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/set.pm +0 -99
  1217. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm +0 -26
  1218. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/values.pm +0 -22
  1219. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash.pm +0 -28
  1220. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/abs.pm +0 -29
  1221. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/add.pm +0 -31
  1222. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/div.pm +0 -31
  1223. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mod.pm +0 -31
  1224. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mul.pm +0 -31
  1225. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/set.pm +0 -25
  1226. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/sub.pm +0 -31
  1227. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Reader.pm +0 -47
  1228. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/append.pm +0 -31
  1229. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chomp.pm +0 -40
  1230. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chop.pm +0 -40
  1231. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/clear.pm +0 -24
  1232. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/inc.pm +0 -33
  1233. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/length.pm +0 -22
  1234. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/match.pm +0 -42
  1235. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/prepend.pm +0 -31
  1236. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/replace.pm +0 -69
  1237. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/substr.pm +0 -123
  1238. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Writer.pm +0 -174
  1239. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native.pm +0 -157
  1240. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor.pm +0 -208
  1241. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Augmented.pm +0 -171
  1242. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Constructor.pm +0 -145
  1243. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Delegation.pm +0 -307
  1244. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Destructor.pm +0 -251
  1245. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Meta.pm +0 -112
  1246. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Overridden.pm +0 -160
  1247. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method.pm +0 -100
  1248. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Mixin/AttributeCore.pm +0 -185
  1249. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Object/Trait.pm +0 -107
  1250. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/RoleSummation.pm +0 -440
  1251. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToClass.pm +0 -314
  1252. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToInstance.pm +0 -142
  1253. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToRole.pm +0 -283
  1254. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application.pm +0 -225
  1255. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Attribute.pm +0 -259
  1256. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Composite.pm +0 -320
  1257. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Conflicting.pm +0 -135
  1258. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Required.pm +0 -127
  1259. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method.pm +0 -101
  1260. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role.pm +0 -1059
  1261. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion/Union.pm +0 -141
  1262. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion.pm +0 -239
  1263. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Class.pm +0 -261
  1264. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/DuckType.pm +0 -217
  1265. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Enum.pm +0 -235
  1266. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterizable.pm +0 -200
  1267. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterized.pm +0 -188
  1268. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Registry.pm +0 -206
  1269. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Role.pm +0 -235
  1270. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Union.pm +0 -346
  1271. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint.pm +0 -607
  1272. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Object.pm +0 -271
  1273. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Role.pm +0 -377
  1274. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Spec/Role.pod +0 -397
  1275. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Unsweetened.pod +0 -77
  1276. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/MetaRole.pm +0 -329
  1277. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints/Builtins.pm +0 -305
  1278. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints.pm +0 -1443
  1279. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util.pm +0 -725
  1280. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose.pm +0 -1268
  1281. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/PPI/XS.pm +0 -137
  1282. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Package/Stash/XS.pm +0 -110
  1283. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util/PP.pm +0 -276
  1284. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util.pm +0 -486
  1285. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/Util/Numeric.pm +0 -137
  1286. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Test/Moose.pm +0 -228
  1287. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Want.pm +0 -742
  1288. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Attribute/Util/.packlist +0 -12
  1289. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Capture/Tiny/.packlist +0 -2
  1290. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/.packlist +0 -3
  1291. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/.packlist +0 -3
  1292. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/XS.so +0 -0
  1293. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/Cmp/.packlist +0 -6
  1294. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/OptList/.packlist +0 -2
  1295. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/.packlist +0 -3
  1296. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/UUID.so +0 -0
  1297. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/GlobalDestruction/.packlist +0 -2
  1298. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/OverloadInfo/.packlist +0 -2
  1299. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/StackTrace/.packlist +0 -4
  1300. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Eval/Closure/.packlist +0 -2
  1301. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Config/.packlist +0 -4
  1302. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Helpers/.packlist +0 -8
  1303. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/InstallPaths/.packlist +0 -2
  1304. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/CheckLib/.packlist +0 -2
  1305. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/.packlist +0 -98
  1306. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Constant/Constant.txt +0 -1
  1307. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Memory/Memory.txt +0 -1
  1308. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Platypus.so +0 -0
  1309. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Record/Meta/Meta.txt +0 -1
  1310. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/File/Which/.packlist +0 -2
  1311. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/IPC/System/Simple/.packlist +0 -2
  1312. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MRO/Compat/.packlist +0 -2
  1313. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Implementation/.packlist +0 -2
  1314. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/.packlist +0 -2
  1315. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/Conflicts/.packlist +0 -2
  1316. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/.packlist +0 -574
  1317. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/Moose.so +0 -0
  1318. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Nice/Try/.packlist +0 -2
  1319. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/.packlist +0 -186
  1320. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/.packlist +0 -3
  1321. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/XS.so +0 -0
  1322. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/DeprecationManager/.packlist +0 -2
  1323. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/.packlist +0 -6
  1324. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/.packlist +0 -3
  1325. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/XS.so +0 -0
  1326. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/.packlist +0 -5
  1327. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/Util.so +0 -0
  1328. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Path/Tiny/.packlist +0 -2
  1329. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Safe/Isa/.packlist +0 -2
  1330. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/.packlist +0 -3
  1331. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/Numeric.so +0 -0
  1332. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scope/Guard/.packlist +0 -2
  1333. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/.packlist +0 -8
  1334. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/Progressive/.packlist +0 -2
  1335. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Install/.packlist +0 -2
  1336. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Task/Weaken/.packlist +0 -2
  1337. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Fatal/.packlist +0 -2
  1338. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Try/Tiny/.packlist +0 -2
  1339. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/.packlist +0 -3
  1340. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/Want.so +0 -0
  1341. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/YAML/PP/.packlist +0 -55
  1342. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/aliased/.packlist +0 -2
  1343. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/.packlist +0 -5
  1344. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/autobox.so +0 -0
  1345. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox/universal.pm +0 -13
  1346. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pm +0 -404
  1347. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pod +0 -709
  1348. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/metaclass.pm +0 -155
  1349. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/oose.pm +0 -137
  1350. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod +0 -968
  1351. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1352. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1353. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1354. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1355. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1356. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1357. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1358. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1359. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1360. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1361. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1362. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1363. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1364. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1365. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1366. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1367. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1368. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1369. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1370. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1371. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1372. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1373. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1374. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1375. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1376. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1377. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1378. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1379. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1380. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1381. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1382. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1383. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1384. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1385. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1386. package/Binaries/Perl/Linux/X64/lib/Javonet/Javonet.pm +0 -82
  1387. package/Binaries/Perl/Linux/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1388. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1389. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1390. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1391. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1392. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1393. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1394. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1395. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1396. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1397. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1398. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1399. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1400. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1401. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1402. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1403. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1404. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1405. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events +0 -62
  1406. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events.bat +0 -79
  1407. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight +0 -54
  1408. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight.bat +0 -71
  1409. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load +0 -155
  1410. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump +0 -314
  1411. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump.bat +0 -331
  1412. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load.bat +0 -172
  1413. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit +0 -123
  1414. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit.bat +0 -140
  1415. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  1416. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  1417. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  1418. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  1419. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  1420. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  1421. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  1422. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  1423. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  1424. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  1425. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/install.json +0 -1
  1426. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  1427. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/install.json +0 -1
  1428. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  1429. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/install.json +0 -1
  1430. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  1431. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/install.json +0 -1
  1432. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/MYMETA.json +0 -1115
  1433. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/install.json +0 -1
  1434. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  1435. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/install.json +0 -1
  1436. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  1437. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/install.json +0 -1
  1438. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  1439. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  1440. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  1441. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/install.json +0 -1
  1442. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/MYMETA.json +0 -40
  1443. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/install.json +0 -1
  1444. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  1445. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/install.json +0 -1
  1446. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  1447. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/install.json +0 -1
  1448. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Data/UUID.pm +0 -158
  1449. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/PPI/XS.pm +0 -137
  1450. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Scalar/Util/Numeric.pm +0 -137
  1451. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Want.pm +0 -742
  1452. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Attribute/Util/.packlist +0 -6
  1453. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/Cmp/.packlist +0 -3
  1454. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/.packlist +0 -2
  1455. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/UUID.xs.dll +0 -0
  1456. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Nice/Try/.packlist +0 -1
  1457. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/.packlist +0 -95
  1458. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/.packlist +0 -2
  1459. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/XS.xs.dll +0 -0
  1460. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Safe/Isa/.packlist +0 -1
  1461. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/.packlist +0 -2
  1462. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/Numeric.xs.dll +0 -0
  1463. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Test/Fatal/.packlist +0 -1
  1464. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/.packlist +0 -2
  1465. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/Want.xs.dll +0 -0
  1466. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/YAML/PP/.packlist +0 -39
  1467. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/.packlist +0 -4
  1468. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/autobox.xs.dll +0 -0
  1469. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox/universal.pm +0 -13
  1470. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pm +0 -404
  1471. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pod +0 -709
  1472. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/perllocal.pod +0 -264
  1473. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  1474. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  1475. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  1476. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  1477. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  1478. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  1479. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  1480. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  1481. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  1482. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  1483. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  1484. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  1485. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  1486. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  1487. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  1488. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  1489. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  1490. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  1491. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  1492. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  1493. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  1494. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  1495. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  1496. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  1497. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  1498. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  1499. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  1500. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  1501. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  1502. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  1503. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  1504. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  1505. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  1506. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  1507. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  1508. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  1509. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  1510. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  1511. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  1512. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  1513. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  1514. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  1515. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  1516. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  1517. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  1518. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  1519. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  1520. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  1521. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  1522. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  1523. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  1524. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  1525. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  1526. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  1527. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  1528. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  1529. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  1530. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  1531. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  1532. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  1533. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  1534. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  1535. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  1536. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  1537. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  1538. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  1539. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  1540. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  1541. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  1542. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  1543. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  1544. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  1545. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  1546. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  1547. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  1548. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  1549. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  1550. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  1551. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  1552. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  1553. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  1554. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  1555. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  1556. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  1557. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  1558. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  1559. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  1560. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  1561. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  1562. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  1563. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  1564. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  1565. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  1566. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  1567. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  1568. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI.pm +0 -822
  1569. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  1570. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  1571. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  1572. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  1573. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  1574. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  1575. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  1576. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  1577. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  1578. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  1579. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  1580. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  1581. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  1582. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  1583. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  1584. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  1585. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  1586. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  1587. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  1588. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  1589. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  1590. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  1591. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  1592. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  1593. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  1594. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  1595. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  1596. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  1597. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  1598. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  1599. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  1600. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1601. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1602. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1603. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1604. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1605. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1606. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1607. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1608. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1609. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1610. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1611. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1612. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1613. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1614. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1615. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1616. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1617. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1618. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1619. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1620. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1621. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1622. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1623. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1624. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1625. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1626. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1627. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1628. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1629. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1630. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1631. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1632. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1633. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1634. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1635. package/Binaries/Perl/Windows/X64/lib/Javonet/Javonet.pm +0 -82
  1636. package/Binaries/Perl/Windows/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1637. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1638. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1639. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1640. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1641. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1642. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1643. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1644. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1645. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1646. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1647. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1648. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1649. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1650. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1651. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1652. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1653. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1654. package/Binaries/Python/javonet/core/__init__.py +0 -0
  1655. package/Binaries/Python/javonet/core/callback/__init__.py +0 -0
  1656. package/Binaries/Python/javonet/core/callback/callbackFunc.py +0 -7
  1657. package/Binaries/Python/javonet/core/delegateCache/DelegatesCache.py +0 -39
  1658. package/Binaries/Python/javonet/core/delegateCache/__init__.py +0 -0
  1659. package/Binaries/Python/javonet/core/handler/AbstractCommandHandler.py +0 -20
  1660. package/Binaries/Python/javonet/core/handler/AbstractHandler.py +0 -3
  1661. package/Binaries/Python/javonet/core/handler/ArrayGetItemHandler.py +0 -27
  1662. package/Binaries/Python/javonet/core/handler/ArrayGetRankHandler.py +0 -25
  1663. package/Binaries/Python/javonet/core/handler/ArrayGetSizeHandler.py +0 -24
  1664. package/Binaries/Python/javonet/core/handler/ArrayHandler.py +0 -13
  1665. package/Binaries/Python/javonet/core/handler/ArraySetItemHandler.py +0 -39
  1666. package/Binaries/Python/javonet/core/handler/CastingHandler.py +0 -6
  1667. package/Binaries/Python/javonet/core/handler/CreateClassInstanceHandler.py +0 -22
  1668. package/Binaries/Python/javonet/core/handler/DestructReferenceHandler.py +0 -13
  1669. package/Binaries/Python/javonet/core/handler/EnableNamespaceHandler.py +0 -28
  1670. package/Binaries/Python/javonet/core/handler/EnableTypeHandler.py +0 -28
  1671. package/Binaries/Python/javonet/core/handler/GetEnumItemHandler.py +0 -29
  1672. package/Binaries/Python/javonet/core/handler/GetEnumNameHandler.py +0 -22
  1673. package/Binaries/Python/javonet/core/handler/GetEnumValueHandler.py +0 -22
  1674. package/Binaries/Python/javonet/core/handler/GetInstanceFieldHandler.py +0 -27
  1675. package/Binaries/Python/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -29
  1676. package/Binaries/Python/javonet/core/handler/GetStaticFieldHandler.py +0 -27
  1677. package/Binaries/Python/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -31
  1678. package/Binaries/Python/javonet/core/handler/GetTypeHandler.py +0 -85
  1679. package/Binaries/Python/javonet/core/handler/Handler.py +0 -100
  1680. package/Binaries/Python/javonet/core/handler/HandlerDictionary.py +0 -8
  1681. package/Binaries/Python/javonet/core/handler/InvokeDelegateHandler.py +0 -27
  1682. package/Binaries/Python/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -46
  1683. package/Binaries/Python/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -31
  1684. package/Binaries/Python/javonet/core/handler/InvokeStaticMethodHandler.py +0 -33
  1685. package/Binaries/Python/javonet/core/handler/LoadLibraryHandler.py +0 -40
  1686. package/Binaries/Python/javonet/core/handler/PassDelegateHandler.py +0 -21
  1687. package/Binaries/Python/javonet/core/handler/ResolveInstanceHandler.py +0 -19
  1688. package/Binaries/Python/javonet/core/handler/SetInstanceFieldHandler.py +0 -29
  1689. package/Binaries/Python/javonet/core/handler/SetStaticFieldHandler.py +0 -29
  1690. package/Binaries/Python/javonet/core/handler/ValueHandler.py +0 -6
  1691. package/Binaries/Python/javonet/core/handler/__init__.py +0 -0
  1692. package/Binaries/Python/javonet/core/interpreter/Interpreter.py +0 -55
  1693. package/Binaries/Python/javonet/core/interpreter/__init__.py +0 -0
  1694. package/Binaries/Python/javonet/core/namespaceCache/NamespaceCache.py +0 -44
  1695. package/Binaries/Python/javonet/core/namespaceCache/__init__.py +0 -0
  1696. package/Binaries/Python/javonet/core/protocol/CommandDeserializer.py +0 -164
  1697. package/Binaries/Python/javonet/core/protocol/CommandSerializer.py +0 -29
  1698. package/Binaries/Python/javonet/core/protocol/TypeDeserializer.py +0 -64
  1699. package/Binaries/Python/javonet/core/protocol/TypeSerializer.py +0 -96
  1700. package/Binaries/Python/javonet/core/protocol/__init__.py +0 -0
  1701. package/Binaries/Python/javonet/core/receiver/Receiver.py +0 -42
  1702. package/Binaries/Python/javonet/core/receiver/__init__.py +0 -0
  1703. package/Binaries/Python/javonet/core/referenceCache/ReferencesCache.py +0 -39
  1704. package/Binaries/Python/javonet/core/referenceCache/__init__.py +0 -0
  1705. package/Binaries/Python/javonet/core/transmitter/Transmitter.py +0 -20
  1706. package/Binaries/Python/javonet/core/transmitter/TransmitterWrapper.py +0 -110
  1707. package/Binaries/Python/javonet/core/transmitter/__init__.py +0 -0
  1708. package/Binaries/Python/javonet/core/typeCache/TypeCache.py +0 -44
  1709. package/Binaries/Python/javonet/core/typeCache/__init__.py +0 -0
  1710. package/Binaries/Python/javonet/core/webSocketClient/WebSocketClient.py +0 -32
  1711. package/Binaries/Python/javonet/utils/Command.py +0 -90
  1712. package/Binaries/Python/javonet/utils/CommandType.py +0 -46
  1713. package/Binaries/Python/javonet/utils/ConnectionType.py +0 -7
  1714. package/Binaries/Python/javonet/utils/ExceptionType.py +0 -55
  1715. package/Binaries/Python/javonet/utils/RuntimeLogger.py +0 -30
  1716. package/Binaries/Python/javonet/utils/RuntimeName.py +0 -18
  1717. package/Binaries/Python/javonet/utils/RuntimeNameHandler.py +0 -30
  1718. package/Binaries/Python/javonet/utils/StringEncodingMode.py +0 -8
  1719. package/Binaries/Python/javonet/utils/Type.py +0 -16
  1720. package/Binaries/Python/javonet/utils/UtilsConst.py +0 -42
  1721. package/Binaries/Python/javonet/utils/__init__.py +0 -0
  1722. package/Binaries/Python/javonet/utils/connectionData/IConnectionData.py +0 -18
  1723. package/Binaries/Python/javonet/utils/connectionData/InMemoryConnectionData.py +0 -23
  1724. package/Binaries/Python/javonet/utils/connectionData/TcpConnectionData.py +0 -67
  1725. package/Binaries/Python/javonet/utils/connectionData/WsConnectionData.py +0 -30
  1726. package/Binaries/Python/javonet/utils/connectionData/__init__.py +0 -0
  1727. package/Binaries/Python/javonet/utils/exception/ExceptionSerializer.py +0 -66
  1728. package/Binaries/Python/javonet/utils/exception/ExceptionThrower.py +0 -81
  1729. package/Binaries/Python/javonet/utils/exception/JavonetException.py +0 -10
  1730. package/Binaries/Python/javonet/utils/exception/__init__.py +0 -0
  1731. package/Binaries/Python/javonet/utils/messageHelper/MessageHelper.py +0 -86
  1732. package/Binaries/Python/javonet/utils/messageHelper/__init__.py +0 -0
  1733. package/Binaries/Python2/javonet/__init__.py +0 -32
  1734. package/Binaries/Python2/javonet/core/__init__.py +0 -1
  1735. package/Binaries/Python2/javonet/core/callback/__init__.py +0 -4
  1736. package/Binaries/Python2/javonet/core/callback/callbackFunc.py +0 -20
  1737. package/Binaries/Python2/javonet/core/delegateCache/DelegatesCache.py +0 -73
  1738. package/Binaries/Python2/javonet/core/delegateCache/__init__.py +0 -4
  1739. package/Binaries/Python2/javonet/core/handler/AbstractCommandHandler.py +0 -45
  1740. package/Binaries/Python2/javonet/core/handler/AbstractHandler.py +0 -9
  1741. package/Binaries/Python2/javonet/core/handler/ArrayGetItemHandler.py +0 -51
  1742. package/Binaries/Python2/javonet/core/handler/ArrayGetRankHandler.py +0 -41
  1743. package/Binaries/Python2/javonet/core/handler/ArrayGetSizeHandler.py +0 -45
  1744. package/Binaries/Python2/javonet/core/handler/ArrayHandler.py +0 -25
  1745. package/Binaries/Python2/javonet/core/handler/ArraySetItemHandler.py +0 -60
  1746. package/Binaries/Python2/javonet/core/handler/CastingHandler.py +0 -11
  1747. package/Binaries/Python2/javonet/core/handler/CreateClassInstanceHandler.py +0 -39
  1748. package/Binaries/Python2/javonet/core/handler/DestructReferenceHandler.py +0 -25
  1749. package/Binaries/Python2/javonet/core/handler/EnableNamespaceHandler.py +0 -43
  1750. package/Binaries/Python2/javonet/core/handler/EnableTypeHandler.py +0 -43
  1751. package/Binaries/Python2/javonet/core/handler/GetEnumItemHandler.py +0 -54
  1752. package/Binaries/Python2/javonet/core/handler/GetEnumNameHandler.py +0 -44
  1753. package/Binaries/Python2/javonet/core/handler/GetEnumValueHandler.py +0 -36
  1754. package/Binaries/Python2/javonet/core/handler/GetInstanceFieldHandler.py +0 -40
  1755. package/Binaries/Python2/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -43
  1756. package/Binaries/Python2/javonet/core/handler/GetStaticFieldHandler.py +0 -41
  1757. package/Binaries/Python2/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -43
  1758. package/Binaries/Python2/javonet/core/handler/GetTypeHandler.py +0 -115
  1759. package/Binaries/Python2/javonet/core/handler/Handler.py +0 -152
  1760. package/Binaries/Python2/javonet/core/handler/HandlerDictionary.py +0 -23
  1761. package/Binaries/Python2/javonet/core/handler/InvokeDelegateHandler.py +0 -56
  1762. package/Binaries/Python2/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -78
  1763. package/Binaries/Python2/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -45
  1764. package/Binaries/Python2/javonet/core/handler/InvokeStaticMethodHandler.py +0 -45
  1765. package/Binaries/Python2/javonet/core/handler/LoadLibraryHandler.py +0 -62
  1766. package/Binaries/Python2/javonet/core/handler/PassDelegateHandler.py +0 -36
  1767. package/Binaries/Python2/javonet/core/handler/ResolveInstanceHandler.py +0 -33
  1768. package/Binaries/Python2/javonet/core/handler/SetInstanceFieldHandler.py +0 -42
  1769. package/Binaries/Python2/javonet/core/handler/SetStaticFieldHandler.py +0 -43
  1770. package/Binaries/Python2/javonet/core/handler/ValueHandler.py +0 -27
  1771. package/Binaries/Python2/javonet/core/handler/__init__.py +0 -1
  1772. package/Binaries/Python2/javonet/core/interpreter/Interpreter.py +0 -36
  1773. package/Binaries/Python2/javonet/core/interpreter/__init__.py +0 -0
  1774. package/Binaries/Python2/javonet/core/namespaceCache/NamespaceCache.py +0 -69
  1775. package/Binaries/Python2/javonet/core/namespaceCache/__init__.py +0 -4
  1776. package/Binaries/Python2/javonet/core/protocol/CommandDeserializer.py +0 -237
  1777. package/Binaries/Python2/javonet/core/protocol/CommandSerializer.py +0 -56
  1778. package/Binaries/Python2/javonet/core/protocol/TypeDeserializer.py +0 -154
  1779. package/Binaries/Python2/javonet/core/protocol/TypeSerializer.py +0 -187
  1780. package/Binaries/Python2/javonet/core/protocol/__init__.py +0 -0
  1781. package/Binaries/Python2/javonet/core/receiver/Receiver.py +0 -35
  1782. package/Binaries/Python2/javonet/core/receiver/__init__.py +0 -1
  1783. package/Binaries/Python2/javonet/core/referenceCache/ReferencesCache.py +0 -57
  1784. package/Binaries/Python2/javonet/core/referenceCache/__init__.py +0 -0
  1785. package/Binaries/Python2/javonet/core/transmitter/Transmitter.py +0 -59
  1786. package/Binaries/Python2/javonet/core/transmitter/TransmitterWrapper.py +0 -102
  1787. package/Binaries/Python2/javonet/core/transmitter/__init__.py +0 -0
  1788. package/Binaries/Python2/javonet/core/typeCache/TypeCache.py +0 -69
  1789. package/Binaries/Python2/javonet/core/typeCache/__init__.py +0 -4
  1790. package/Binaries/Python2/javonet/core/webSocketClient/WebSocketClient.py +0 -39
  1791. package/Binaries/Python2/javonet/core/webSocketClient/__init__.py +0 -0
  1792. package/Binaries/Python2/javonet/utils/Command.py +0 -170
  1793. package/Binaries/Python2/javonet/utils/CommandType.py +0 -154
  1794. package/Binaries/Python2/javonet/utils/ConnectionType.py +0 -36
  1795. package/Binaries/Python2/javonet/utils/ExceptionType.py +0 -95
  1796. package/Binaries/Python2/javonet/utils/PythonStringBuilder.py +0 -38
  1797. package/Binaries/Python2/javonet/utils/RuntimeLogger.py +0 -50
  1798. package/Binaries/Python2/javonet/utils/RuntimeName.py +0 -120
  1799. package/Binaries/Python2/javonet/utils/RuntimeNameHandler.py +0 -47
  1800. package/Binaries/Python2/javonet/utils/StringEncodingMode.py +0 -38
  1801. package/Binaries/Python2/javonet/utils/Type.py +0 -68
  1802. package/Binaries/Python2/javonet/utils/UtilsConst.py +0 -38
  1803. package/Binaries/Python2/javonet/utils/__init__.py +0 -4
  1804. package/Binaries/Python2/javonet/utils/connectionData/IConnectionData.py +0 -45
  1805. package/Binaries/Python2/javonet/utils/connectionData/InMemoryConnectionData.py +0 -32
  1806. package/Binaries/Python2/javonet/utils/connectionData/TcpConnectionData.py +0 -142
  1807. package/Binaries/Python2/javonet/utils/connectionData/WsConnectionData.py +0 -75
  1808. package/Binaries/Python2/javonet/utils/connectionData/__init__.py +0 -4
  1809. package/Binaries/Python2/javonet/utils/exception/ExceptionSerializer.py +0 -94
  1810. package/Binaries/Python2/javonet/utils/exception/ExceptionThrower.py +0 -85
  1811. package/Binaries/Python2/javonet/utils/exception/JavonetException.py +0 -31
  1812. package/Binaries/Python2/javonet/utils/exception/__init__.py +0 -4
  1813. package/Binaries/Ruby/Linux/X64/core/handler/abstract_command_handler.rb +0 -24
  1814. package/Binaries/Ruby/Linux/X64/core/handler/abstract_handler.rb +0 -5
  1815. package/Binaries/Ruby/Linux/X64/core/handler/array_get_item_handler.rb +0 -47
  1816. package/Binaries/Ruby/Linux/X64/core/handler/array_get_rank_handler.rb +0 -23
  1817. package/Binaries/Ruby/Linux/X64/core/handler/array_get_size_handler.rb +0 -37
  1818. package/Binaries/Ruby/Linux/X64/core/handler/array_handler.rb +0 -12
  1819. package/Binaries/Ruby/Linux/X64/core/handler/array_set_item_handler.rb +0 -47
  1820. package/Binaries/Ruby/Linux/X64/core/handler/casting_handler.rb +0 -11
  1821. package/Binaries/Ruby/Linux/X64/core/handler/create_class_instance_handler.rb +0 -34
  1822. package/Binaries/Ruby/Linux/X64/core/handler/destruct_reference_handler.rb +0 -21
  1823. package/Binaries/Ruby/Linux/X64/core/handler/enable_namespace_handler.rb +0 -31
  1824. package/Binaries/Ruby/Linux/X64/core/handler/enable_type_handler.rb +0 -32
  1825. package/Binaries/Ruby/Linux/X64/core/handler/get_instance_field_handler.rb +0 -34
  1826. package/Binaries/Ruby/Linux/X64/core/handler/get_static_field_handler.rb +0 -34
  1827. package/Binaries/Ruby/Linux/X64/core/handler/get_type_handler.rb +0 -71
  1828. package/Binaries/Ruby/Linux/X64/core/handler/handler.rb +0 -111
  1829. package/Binaries/Ruby/Linux/X64/core/handler/handler_dictionary.rb +0 -8
  1830. package/Binaries/Ruby/Linux/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1831. package/Binaries/Ruby/Linux/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1832. package/Binaries/Ruby/Linux/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1833. package/Binaries/Ruby/Linux/X64/core/handler/load_library_handler.rb +0 -33
  1834. package/Binaries/Ruby/Linux/X64/core/handler/resolve_instance_handler.rb +0 -24
  1835. package/Binaries/Ruby/Linux/X64/core/handler/set_instance_field_handler.rb +0 -35
  1836. package/Binaries/Ruby/Linux/X64/core/handler/set_static_field_handler.rb +0 -31
  1837. package/Binaries/Ruby/Linux/X64/core/handler/value_handler.rb +0 -7
  1838. package/Binaries/Ruby/Linux/X64/core/interpreter/interpreter.rb +0 -25
  1839. package/Binaries/Ruby/Linux/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1840. package/Binaries/Ruby/Linux/X64/core/protocol/command_deserializer.rb +0 -182
  1841. package/Binaries/Ruby/Linux/X64/core/protocol/command_serializer.rb +0 -35
  1842. package/Binaries/Ruby/Linux/X64/core/protocol/type_deserializer.rb +0 -126
  1843. package/Binaries/Ruby/Linux/X64/core/protocol/type_serializer.rb +0 -259
  1844. package/Binaries/Ruby/Linux/X64/core/receiver/receiver.rb +0 -22
  1845. package/Binaries/Ruby/Linux/X64/core/reference_cache/references_cache.rb +0 -39
  1846. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter.rb +0 -58
  1847. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1848. package/Binaries/Ruby/Linux/X64/core/type_cache/type_cache.rb +0 -42
  1849. package/Binaries/Ruby/Linux/X64/utils/command.rb +0 -93
  1850. package/Binaries/Ruby/Linux/X64/utils/command_type.rb +0 -135
  1851. package/Binaries/Ruby/Linux/X64/utils/connection_type.rb +0 -4
  1852. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_serializer.rb +0 -93
  1853. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_thrower.rb +0 -65
  1854. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_type.rb +0 -10
  1855. package/Binaries/Ruby/Linux/X64/utils/runtime_logger.rb +0 -30
  1856. package/Binaries/Ruby/Linux/X64/utils/runtime_name.rb +0 -13
  1857. package/Binaries/Ruby/Linux/X64/utils/runtime_name_handler.rb +0 -40
  1858. package/Binaries/Ruby/Linux/X64/utils/string_encoding_mode.rb +0 -6
  1859. package/Binaries/Ruby/Linux/X64/utils/tcp_connection_data.rb +0 -37
  1860. package/Binaries/Ruby/Linux/X64/utils/type.rb +0 -14
  1861. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_command_handler.rb +0 -24
  1862. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_handler.rb +0 -5
  1863. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_item_handler.rb +0 -47
  1864. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_rank_handler.rb +0 -23
  1865. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_size_handler.rb +0 -37
  1866. package/Binaries/Ruby/MacOs/X64/core/handler/array_handler.rb +0 -12
  1867. package/Binaries/Ruby/MacOs/X64/core/handler/array_set_item_handler.rb +0 -47
  1868. package/Binaries/Ruby/MacOs/X64/core/handler/casting_handler.rb +0 -11
  1869. package/Binaries/Ruby/MacOs/X64/core/handler/create_class_instance_handler.rb +0 -34
  1870. package/Binaries/Ruby/MacOs/X64/core/handler/destruct_reference_handler.rb +0 -21
  1871. package/Binaries/Ruby/MacOs/X64/core/handler/enable_namespace_handler.rb +0 -31
  1872. package/Binaries/Ruby/MacOs/X64/core/handler/enable_type_handler.rb +0 -32
  1873. package/Binaries/Ruby/MacOs/X64/core/handler/get_instance_field_handler.rb +0 -34
  1874. package/Binaries/Ruby/MacOs/X64/core/handler/get_static_field_handler.rb +0 -34
  1875. package/Binaries/Ruby/MacOs/X64/core/handler/get_type_handler.rb +0 -71
  1876. package/Binaries/Ruby/MacOs/X64/core/handler/handler.rb +0 -111
  1877. package/Binaries/Ruby/MacOs/X64/core/handler/handler_dictionary.rb +0 -8
  1878. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1879. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1880. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1881. package/Binaries/Ruby/MacOs/X64/core/handler/load_library_handler.rb +0 -33
  1882. package/Binaries/Ruby/MacOs/X64/core/handler/resolve_instance_handler.rb +0 -24
  1883. package/Binaries/Ruby/MacOs/X64/core/handler/set_instance_field_handler.rb +0 -35
  1884. package/Binaries/Ruby/MacOs/X64/core/handler/set_static_field_handler.rb +0 -31
  1885. package/Binaries/Ruby/MacOs/X64/core/handler/value_handler.rb +0 -7
  1886. package/Binaries/Ruby/MacOs/X64/core/interpreter/interpreter.rb +0 -25
  1887. package/Binaries/Ruby/MacOs/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1888. package/Binaries/Ruby/MacOs/X64/core/protocol/command_deserializer.rb +0 -182
  1889. package/Binaries/Ruby/MacOs/X64/core/protocol/command_serializer.rb +0 -35
  1890. package/Binaries/Ruby/MacOs/X64/core/protocol/type_deserializer.rb +0 -126
  1891. package/Binaries/Ruby/MacOs/X64/core/protocol/type_serializer.rb +0 -259
  1892. package/Binaries/Ruby/MacOs/X64/core/receiver/receiver.rb +0 -22
  1893. package/Binaries/Ruby/MacOs/X64/core/reference_cache/references_cache.rb +0 -39
  1894. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter.rb +0 -58
  1895. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1896. package/Binaries/Ruby/MacOs/X64/core/type_cache/type_cache.rb +0 -42
  1897. package/Binaries/Ruby/MacOs/X64/utils/command.rb +0 -93
  1898. package/Binaries/Ruby/MacOs/X64/utils/command_type.rb +0 -135
  1899. package/Binaries/Ruby/MacOs/X64/utils/connection_type.rb +0 -4
  1900. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_serializer.rb +0 -93
  1901. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_thrower.rb +0 -65
  1902. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_type.rb +0 -10
  1903. package/Binaries/Ruby/MacOs/X64/utils/runtime_logger.rb +0 -30
  1904. package/Binaries/Ruby/MacOs/X64/utils/runtime_name.rb +0 -13
  1905. package/Binaries/Ruby/MacOs/X64/utils/runtime_name_handler.rb +0 -40
  1906. package/Binaries/Ruby/MacOs/X64/utils/string_encoding_mode.rb +0 -6
  1907. package/Binaries/Ruby/MacOs/X64/utils/tcp_connection_data.rb +0 -37
  1908. package/Binaries/Ruby/MacOs/X64/utils/type.rb +0 -14
  1909. package/Binaries/Ruby/Windows/X64/core/handler/abstract_command_handler.rb +0 -24
  1910. package/Binaries/Ruby/Windows/X64/core/handler/abstract_handler.rb +0 -5
  1911. package/Binaries/Ruby/Windows/X64/core/handler/array_get_item_handler.rb +0 -47
  1912. package/Binaries/Ruby/Windows/X64/core/handler/array_get_rank_handler.rb +0 -23
  1913. package/Binaries/Ruby/Windows/X64/core/handler/array_get_size_handler.rb +0 -37
  1914. package/Binaries/Ruby/Windows/X64/core/handler/array_handler.rb +0 -12
  1915. package/Binaries/Ruby/Windows/X64/core/handler/array_set_item_handler.rb +0 -47
  1916. package/Binaries/Ruby/Windows/X64/core/handler/casting_handler.rb +0 -11
  1917. package/Binaries/Ruby/Windows/X64/core/handler/create_class_instance_handler.rb +0 -34
  1918. package/Binaries/Ruby/Windows/X64/core/handler/destruct_reference_handler.rb +0 -21
  1919. package/Binaries/Ruby/Windows/X64/core/handler/enable_namespace_handler.rb +0 -31
  1920. package/Binaries/Ruby/Windows/X64/core/handler/enable_type_handler.rb +0 -32
  1921. package/Binaries/Ruby/Windows/X64/core/handler/get_instance_field_handler.rb +0 -34
  1922. package/Binaries/Ruby/Windows/X64/core/handler/get_static_field_handler.rb +0 -34
  1923. package/Binaries/Ruby/Windows/X64/core/handler/get_type_handler.rb +0 -71
  1924. package/Binaries/Ruby/Windows/X64/core/handler/handler.rb +0 -111
  1925. package/Binaries/Ruby/Windows/X64/core/handler/handler_dictionary.rb +0 -8
  1926. package/Binaries/Ruby/Windows/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1927. package/Binaries/Ruby/Windows/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1928. package/Binaries/Ruby/Windows/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1929. package/Binaries/Ruby/Windows/X64/core/handler/load_library_handler.rb +0 -33
  1930. package/Binaries/Ruby/Windows/X64/core/handler/resolve_instance_handler.rb +0 -24
  1931. package/Binaries/Ruby/Windows/X64/core/handler/set_instance_field_handler.rb +0 -35
  1932. package/Binaries/Ruby/Windows/X64/core/handler/set_static_field_handler.rb +0 -31
  1933. package/Binaries/Ruby/Windows/X64/core/handler/value_handler.rb +0 -7
  1934. package/Binaries/Ruby/Windows/X64/core/interpreter/interpreter.rb +0 -25
  1935. package/Binaries/Ruby/Windows/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1936. package/Binaries/Ruby/Windows/X64/core/protocol/command_deserializer.rb +0 -182
  1937. package/Binaries/Ruby/Windows/X64/core/protocol/command_serializer.rb +0 -35
  1938. package/Binaries/Ruby/Windows/X64/core/protocol/type_deserializer.rb +0 -126
  1939. package/Binaries/Ruby/Windows/X64/core/protocol/type_serializer.rb +0 -259
  1940. package/Binaries/Ruby/Windows/X64/core/receiver/receiver.rb +0 -22
  1941. package/Binaries/Ruby/Windows/X64/core/reference_cache/references_cache.rb +0 -39
  1942. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter.rb +0 -58
  1943. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1944. package/Binaries/Ruby/Windows/X64/core/type_cache/type_cache.rb +0 -42
  1945. package/Binaries/Ruby/Windows/X64/utils/command.rb +0 -93
  1946. package/Binaries/Ruby/Windows/X64/utils/command_type.rb +0 -135
  1947. package/Binaries/Ruby/Windows/X64/utils/connection_type.rb +0 -4
  1948. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_serializer.rb +0 -93
  1949. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_thrower.rb +0 -65
  1950. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_type.rb +0 -10
  1951. package/Binaries/Ruby/Windows/X64/utils/runtime_logger.rb +0 -30
  1952. package/Binaries/Ruby/Windows/X64/utils/runtime_name.rb +0 -13
  1953. package/Binaries/Ruby/Windows/X64/utils/runtime_name_handler.rb +0 -40
  1954. package/Binaries/Ruby/Windows/X64/utils/string_encoding_mode.rb +0 -6
  1955. package/Binaries/Ruby/Windows/X64/utils/tcp_connection_data.rb +0 -37
  1956. package/Binaries/Ruby/Windows/X64/utils/type.rb +0 -14
  1957. package/Binaries/version.txt +0 -1
  1958. package/addon/JavonetNodejsRuntimeAddon.cpp +0 -299
  1959. package/addon/JavonetNodejsRuntimeAddon.h +0 -70
  1960. package/binding.gyp +0 -8
  1961. package/dist/Javonet.d.ts +0 -4858
  1962. package/dist/index.js +0 -66
  1963. package/dist/lib/core/delegatesCache/DelegatesCache.js +0 -35
  1964. package/dist/lib/core/handler/AbstractHandler.js +0 -41
  1965. package/dist/lib/core/handler/ArrayGetItemHandler.js +0 -38
  1966. package/dist/lib/core/handler/ArrayGetRankHandler.js +0 -28
  1967. package/dist/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  1968. package/dist/lib/core/handler/ArrayHandler.js +0 -18
  1969. package/dist/lib/core/handler/ArraySetItemHandler.js +0 -43
  1970. package/dist/lib/core/handler/CastingHandler.js +0 -10
  1971. package/dist/lib/core/handler/ConvertTypeHandler.js +0 -38
  1972. package/dist/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  1973. package/dist/lib/core/handler/DestructReferenceHandler.js +0 -19
  1974. package/dist/lib/core/handler/EnableNamespaceHandler.js +0 -34
  1975. package/dist/lib/core/handler/EnableTypeHandler.js +0 -35
  1976. package/dist/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  1977. package/dist/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  1978. package/dist/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  1979. package/dist/lib/core/handler/GetStaticFieldHandler.js +0 -36
  1980. package/dist/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  1981. package/dist/lib/core/handler/GetTypeHandler.js +0 -63
  1982. package/dist/lib/core/handler/Handler.js +0 -98
  1983. package/dist/lib/core/handler/InvokeDelegateHandler.js +0 -36
  1984. package/dist/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  1985. package/dist/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  1986. package/dist/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  1987. package/dist/lib/core/handler/LoadLibraryHandler.js +0 -48
  1988. package/dist/lib/core/handler/PassDelegateHandler.js +0 -157
  1989. package/dist/lib/core/handler/ResolveReferenceHandler.js +0 -13
  1990. package/dist/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  1991. package/dist/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  1992. package/dist/lib/core/handler/SetStaticFieldHandler.js +0 -33
  1993. package/dist/lib/core/handler/ValueHandler.js +0 -13
  1994. package/dist/lib/core/interpreter/Interpreter.js +0 -142
  1995. package/dist/lib/core/namespaceCache/NamespaceCache.js +0 -39
  1996. package/dist/lib/core/protocol/CommandDeserializer.js +0 -181
  1997. package/dist/lib/core/protocol/CommandSerializer.js +0 -50
  1998. package/dist/lib/core/protocol/TypeDeserializer.js +0 -83
  1999. package/dist/lib/core/protocol/TypeSerializer.js +0 -143
  2000. package/dist/lib/core/receiver/Receiver.js +0 -32
  2001. package/dist/lib/core/receiver/ReceiverNative.js +0 -13
  2002. package/dist/lib/core/referenceCache/ReferencesCache.js +0 -30
  2003. package/dist/lib/core/transmitter/Transmitter.js +0 -21
  2004. package/dist/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  2005. package/dist/lib/core/transmitter/TransmitterWrapper.js +0 -47
  2006. package/dist/lib/core/typeCache/TypeCache.js +0 -39
  2007. package/dist/lib/core/webSocketClient/WebSocketClient.js +0 -136
  2008. package/dist/lib/declarations.d.ts +0 -64
  2009. package/dist/lib/sdk/ConfigRuntimeFactory.js +0 -155
  2010. package/dist/lib/sdk/InvocationContext.js +0 -485
  2011. package/dist/lib/sdk/Javonet.js +0 -105
  2012. package/dist/lib/sdk/RuntimeContext.js +0 -300
  2013. package/dist/lib/sdk/RuntimeFactory.js +0 -87
  2014. package/dist/lib/sdk/tools/JsonFileResolver.js +0 -101
  2015. package/dist/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2016. package/dist/lib/utils/Command.js +0 -69
  2017. package/dist/lib/utils/CommandType.js +0 -47
  2018. package/dist/lib/utils/ConnectionType.js +0 -8
  2019. package/dist/lib/utils/CustomError.js +0 -8
  2020. package/dist/lib/utils/ExceptionType.js +0 -13
  2021. package/dist/lib/utils/RuntimeLogger.js +0 -30
  2022. package/dist/lib/utils/RuntimeName.js +0 -16
  2023. package/dist/lib/utils/RuntimeNameHandler.js +0 -38
  2024. package/dist/lib/utils/StringEncodingMode.js +0 -9
  2025. package/dist/lib/utils/Type.js +0 -17
  2026. package/dist/lib/utils/TypesConverter.js +0 -91
  2027. package/dist/lib/utils/connectionData/IConnectionData.js +0 -15
  2028. package/dist/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  2029. package/dist/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2030. package/dist/lib/utils/connectionData/WsConnectionData.js +0 -50
  2031. package/dist/lib/utils/exception/ExceptionSerializer.js +0 -64
  2032. package/dist/lib/utils/exception/ExceptionThrower.js +0 -95
  2033. package/dist/lib/utils/guid/generateGuid.js +0 -9
  2034. package/dist/lib/utils/uuid/REGEX.js +0 -2
  2035. package/dist/lib/utils/uuid/rng.js +0 -12
  2036. package/dist/lib/utils/uuid/stringify.js +0 -51
  2037. package/dist/lib/utils/uuid/v4.js +0 -27
  2038. package/dist/lib/utils/uuid/validate.js +0 -6
  2039. package/lib/sdk/tools/JsonFileResolver.js +0 -101
  2040. package/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2041. package/lib/utils/TypesConverter.js +0 -91
  2042. package/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2043. package/lib/utils/uuid/REGEX.js +0 -2
  2044. package/lib/utils/uuid/rng.js +0 -12
  2045. package/lib/utils/uuid/stringify.js +0 -51
  2046. package/lib/utils/uuid/v4.js +0 -27
  2047. package/lib/utils/uuid/validate.js +0 -6
@@ -1,1769 +0,0 @@
1
- use v5.12.0;
2
- use warnings;
3
- package Sub::Exporter 0.991;
4
- # ABSTRACT: a sophisticated exporter for custom-built routines
5
-
6
- use Carp ();
7
- use Data::OptList 0.100 ();
8
- use Params::Util 0.14 (); # _CODELIKE
9
- use Sub::Install 0.92 ();
10
-
11
- #pod =head1 SYNOPSIS
12
- #pod
13
- #pod Sub::Exporter must be used in two places. First, in an exporting module:
14
- #pod
15
- #pod # in the exporting module:
16
- #pod package Text::Tweaker;
17
- #pod use Sub::Exporter -setup => {
18
- #pod exports => [
19
- #pod qw(squish titlecase), # always works the same way
20
- #pod reformat => \&build_reformatter, # generator to build exported function
21
- #pod trim => \&build_trimmer,
22
- #pod indent => \&build_indenter,
23
- #pod ],
24
- #pod collectors => [ 'defaults' ],
25
- #pod };
26
- #pod
27
- #pod Then, in an importing module:
28
- #pod
29
- #pod # in the importing module:
30
- #pod use Text::Tweaker
31
- #pod 'squish',
32
- #pod indent => { margin => 5 },
33
- #pod reformat => { width => 79, justify => 'full', -as => 'prettify_text' },
34
- #pod defaults => { eol => 'CRLF' };
35
- #pod
36
- #pod With this setup, the importing module ends up with three routines: C<squish>,
37
- #pod C<indent>, and C<prettify_text>. The latter two have been built to the
38
- #pod specifications of the importer -- they are not just copies of the code in the
39
- #pod exporting package.
40
- #pod
41
- #pod =head1 DESCRIPTION
42
- #pod
43
- #pod B<ACHTUNG!> If you're not familiar with Exporter or exporting, read
44
- #pod L<Sub::Exporter::Tutorial> first!
45
- #pod
46
- #pod =head2 Why Generators?
47
- #pod
48
- #pod The biggest benefit of Sub::Exporter over existing exporters (including the
49
- #pod ubiquitous Exporter.pm) is its ability to build new coderefs for export, rather
50
- #pod than to simply export code identical to that found in the exporting package.
51
- #pod
52
- #pod If your module's consumers get a routine that works like this:
53
- #pod
54
- #pod use Data::Analyze qw(analyze);
55
- #pod my $value = analyze($data, $tolerance, $passes);
56
- #pod
57
- #pod and they constantly pass only one or two different set of values for the
58
- #pod non-C<$data> arguments, your code can benefit from Sub::Exporter. By writing a
59
- #pod simple generator, you can let them do this, instead:
60
- #pod
61
- #pod use Data::Analyze
62
- #pod analyze => { tolerance => 0.10, passes => 10, -as => analyze10 },
63
- #pod analyze => { tolerance => 0.15, passes => 50, -as => analyze50 };
64
- #pod
65
- #pod my $value = analyze10($data);
66
- #pod
67
- #pod The package with the generator for that would look something like this:
68
- #pod
69
- #pod package Data::Analyze;
70
- #pod use Sub::Exporter -setup => {
71
- #pod exports => [
72
- #pod analyze => \&build_analyzer,
73
- #pod ],
74
- #pod };
75
- #pod
76
- #pod sub build_analyzer {
77
- #pod my ($class, $name, $arg) = @_;
78
- #pod
79
- #pod return sub {
80
- #pod my $data = shift;
81
- #pod my $tolerance = shift || $arg->{tolerance};
82
- #pod my $passes = shift || $arg->{passes};
83
- #pod
84
- #pod analyze($data, $tolerance, $passes);
85
- #pod }
86
- #pod }
87
- #pod
88
- #pod Your module's user now has to do less work to benefit from it -- and remember,
89
- #pod you're often your own user! Investing in customized subroutines is an
90
- #pod investment in future laziness.
91
- #pod
92
- #pod This also avoids a common form of ugliness seen in many modules: package-level
93
- #pod configuration. That is, you might have seen something like the above
94
- #pod implemented like so:
95
- #pod
96
- #pod use Data::Analyze qw(analyze);
97
- #pod $Data::Analyze::default_tolerance = 0.10;
98
- #pod $Data::Analyze::default_passes = 10;
99
- #pod
100
- #pod This might save time, until you have multiple modules using Data::Analyze.
101
- #pod Because there is only one global configuration, they step on each other's toes
102
- #pod and your code begins to have mysterious errors.
103
- #pod
104
- #pod Generators can also allow you to export class methods to be called as
105
- #pod subroutines:
106
- #pod
107
- #pod package Data::Methodical;
108
- #pod use Sub::Exporter -setup => { exports => { some_method => \&_curry_class } };
109
- #pod
110
- #pod sub _curry_class {
111
- #pod my ($class, $name) = @_;
112
- #pod sub { $class->$name(@_); };
113
- #pod }
114
- #pod
115
- #pod Because of the way that exporters and Sub::Exporter work, any package that
116
- #pod inherits from Data::Methodical can inherit its exporter and override its
117
- #pod C<some_method>. If a user imports C<some_method> from that package, he'll
118
- #pod receive a subroutine that calls the method on the subclass, rather than on
119
- #pod Data::Methodical itself. Keep in mind that if you re-setup Sub::Exporter in a
120
- #pod package that inherits from Data::Methodical you will, of course, be entirely
121
- #pod replacing the exporter from Data::Methodical. C<import> is a method, and is
122
- #pod hidden by the same means as any other method.
123
- #pod
124
- #pod =head2 Other Customizations
125
- #pod
126
- #pod Building custom routines with generators isn't the only way that Sub::Exporters
127
- #pod allows the importing code to refine its use of the exported routines. They may
128
- #pod also be renamed to avoid naming collisions.
129
- #pod
130
- #pod Consider the following code:
131
- #pod
132
- #pod # this program determines to which circle of Hell you will be condemned
133
- #pod use Morality qw(sin virtue); # for calculating viciousness
134
- #pod use Math::Trig qw(:all); # for dealing with circles
135
- #pod
136
- #pod The programmer has inadvertently imported two C<sin> routines. The solution,
137
- #pod in Exporter.pm-based modules, would be to import only one and then call the
138
- #pod other by its fully-qualified name. Alternately, the importer could write a
139
- #pod routine that did so, or could mess about with typeglobs.
140
- #pod
141
- #pod How much easier to write:
142
- #pod
143
- #pod # this program determines to which circle of Hell you will be condemned
144
- #pod use Morality qw(virtue), sin => { -as => 'offense' };
145
- #pod use Math::Trig -all => { -prefix => 'trig_' };
146
- #pod
147
- #pod and to have at one's disposal C<offense> and C<trig_sin> -- not to mention
148
- #pod C<trig_cos> and C<trig_tan>.
149
- #pod
150
- #pod =head1 EXPORTER CONFIGURATION
151
- #pod
152
- #pod You can configure an exporter for your package by using Sub::Exporter like so:
153
- #pod
154
- #pod package Tools;
155
- #pod use Sub::Exporter
156
- #pod -setup => { exports => [ qw(function1 function2 function3) ] };
157
- #pod
158
- #pod This is the simplest way to use the exporter, and is basically equivalent to
159
- #pod this:
160
- #pod
161
- #pod package Tools;
162
- #pod use base qw(Exporter);
163
- #pod our @EXPORT_OK = qw(function1 function2 function3);
164
- #pod
165
- #pod Any basic use of Sub::Exporter will look like this:
166
- #pod
167
- #pod package Tools;
168
- #pod use Sub::Exporter -setup => \%config;
169
- #pod
170
- #pod The following keys are valid in C<%config>:
171
- #pod
172
- #pod exports - a list of routines to provide for exporting; each routine may be
173
- #pod followed by generator
174
- #pod groups - a list of groups to provide for exporting; each must be followed by
175
- #pod either (a) a list of exports, possibly with arguments for each
176
- #pod export, or (b) a generator
177
- #pod
178
- #pod collectors - a list of names into which values are collected for use in
179
- #pod routine generation; each name may be followed by a validator
180
- #pod
181
- #pod In addition to the basic options above, a few more advanced options may be
182
- #pod passed:
183
- #pod
184
- #pod into_level - how far up the caller stack to look for a target (default 0)
185
- #pod into - an explicit target (package) into which to export routines
186
- #pod
187
- #pod In other words: Sub::Exporter installs a C<import> routine which, when called,
188
- #pod exports routines to the calling namespace. The C<into> and C<into_level>
189
- #pod options change where those exported routines are installed.
190
- #pod
191
- #pod generator - a callback used to produce the code that will be installed
192
- #pod default: Sub::Exporter::default_generator
193
- #pod
194
- #pod installer - a callback used to install the code produced by the generator
195
- #pod default: Sub::Exporter::default_installer
196
- #pod
197
- #pod For information on how these callbacks are used, see the documentation for
198
- #pod C<L</default_generator>> and C<L</default_installer>>.
199
- #pod
200
- #pod =head2 Export Configuration
201
- #pod
202
- #pod The C<exports> list may be provided as an array reference or a hash reference.
203
- #pod The list is processed in such a way that the following are equivalent:
204
- #pod
205
- #pod { exports => [ qw(foo bar baz), quux => \&quux_generator ] }
206
- #pod
207
- #pod { exports =>
208
- #pod { foo => undef, bar => undef, baz => undef, quux => \&quux_generator } }
209
- #pod
210
- #pod Generators are code that return coderefs. They are called with four
211
- #pod parameters:
212
- #pod
213
- #pod $class - the class whose exporter has been called (the exporting class)
214
- #pod $name - the name of the export for which the routine is being build
215
- #pod \%arg - the arguments passed for this export
216
- #pod \%col - the collections for this import
217
- #pod
218
- #pod Given the configuration in the L</SYNOPSIS>, the following C<use> statement:
219
- #pod
220
- #pod use Text::Tweaker
221
- #pod reformat => { -as => 'make_narrow', width => 33 },
222
- #pod defaults => { eol => 'CR' };
223
- #pod
224
- #pod would result in the following call to C<&build_reformatter>:
225
- #pod
226
- #pod my $code = build_reformatter(
227
- #pod 'Text::Tweaker',
228
- #pod 'reformat',
229
- #pod { width => 33 }, # note that -as is not passed in
230
- #pod { defaults => { eol => 'CR' } },
231
- #pod );
232
- #pod
233
- #pod The returned coderef (C<$code>) would then be installed as C<make_narrow> in the
234
- #pod calling package.
235
- #pod
236
- #pod Instead of providing a coderef in the configuration, a reference to a method
237
- #pod name may be provided. This method will then be called on the invocant of the
238
- #pod C<import> method. (In this case, we do not pass the C<$class> parameter, as it
239
- #pod would be redundant.)
240
- #pod
241
- #pod =head2 Group Configuration
242
- #pod
243
- #pod The C<groups> list can be passed in the same forms as C<exports>. Groups must
244
- #pod have values to be meaningful, which may either list exports that make up the
245
- #pod group (optionally with arguments) or may provide a way to build the group.
246
- #pod
247
- #pod The simpler case is the first: a group definition is a list of exports. Here's
248
- #pod the example that could go in exporter in the L</SYNOPSIS>.
249
- #pod
250
- #pod groups => {
251
- #pod default => [ qw(reformat) ],
252
- #pod shorteners => [ qw(squish trim) ],
253
- #pod email_safe => [
254
- #pod 'indent',
255
- #pod reformat => { -as => 'email_format', width => 72 }
256
- #pod ],
257
- #pod },
258
- #pod
259
- #pod Groups are imported by specifying their name prefixed be either a dash or a
260
- #pod colon. This line of code would import the C<shorteners> group:
261
- #pod
262
- #pod use Text::Tweaker qw(-shorteners);
263
- #pod
264
- #pod Arguments passed to a group when importing are merged into the groups options
265
- #pod and passed to any relevant generators. Groups can contain other groups, but
266
- #pod looping group structures are ignored.
267
- #pod
268
- #pod The other possible value for a group definition, a coderef, allows one
269
- #pod generator to build several exportable routines simultaneously. This is useful
270
- #pod when many routines must share enclosed lexical variables. The coderef must
271
- #pod return a hash reference. The keys will be used as export names and the values
272
- #pod are the subs that will be exported.
273
- #pod
274
- #pod This example shows a simple use of the group generator.
275
- #pod
276
- #pod package Data::Crypto;
277
- #pod use Sub::Exporter -setup => { groups => { cipher => \&build_cipher_group } };
278
- #pod
279
- #pod sub build_cipher_group {
280
- #pod my ($class, $group, $arg) = @_;
281
- #pod my ($encode, $decode) = build_codec($arg->{secret});
282
- #pod return { cipher => $encode, decipher => $decode };
283
- #pod }
284
- #pod
285
- #pod The C<cipher> and C<decipher> routines are built in a group because they are
286
- #pod built together by code which encloses their secret in their environment.
287
- #pod
288
- #pod =head3 Default Groups
289
- #pod
290
- #pod If a module that uses Sub::Exporter is C<use>d with no arguments, it will try
291
- #pod to export the group named C<default>. If that group has not been specifically
292
- #pod configured, it will be empty, and nothing will happen.
293
- #pod
294
- #pod Another group is also created if not defined: C<all>. The C<all> group
295
- #pod contains all the exports from the exports list.
296
- #pod
297
- #pod =head2 Collector Configuration
298
- #pod
299
- #pod The C<collectors> entry in the exporter configuration gives names which, when
300
- #pod found in the import call, have their values collected and passed to every
301
- #pod generator.
302
- #pod
303
- #pod For example, the C<build_analyzer> generator that we saw above could be
304
- #pod rewritten as:
305
- #pod
306
- #pod sub build_analyzer {
307
- #pod my ($class, $name, $arg, $col) = @_;
308
- #pod
309
- #pod return sub {
310
- #pod my $data = shift;
311
- #pod my $tolerance = shift || $arg->{tolerance} || $col->{defaults}{tolerance};
312
- #pod my $passes = shift || $arg->{passes} || $col->{defaults}{passes};
313
- #pod
314
- #pod analyze($data, $tolerance, $passes);
315
- #pod }
316
- #pod }
317
- #pod
318
- #pod That would allow the importer to specify global defaults for his imports:
319
- #pod
320
- #pod use Data::Analyze
321
- #pod 'analyze',
322
- #pod analyze => { tolerance => 0.10, -as => analyze10 },
323
- #pod analyze => { tolerance => 0.15, passes => 50, -as => analyze50 },
324
- #pod defaults => { passes => 10 };
325
- #pod
326
- #pod my $A = analyze10($data); # equivalent to analyze($data, 0.10, 10);
327
- #pod my $C = analyze50($data); # equivalent to analyze($data, 0.15, 50);
328
- #pod my $B = analyze($data, 0.20); # equivalent to analyze($data, 0.20, 10);
329
- #pod
330
- #pod If values are provided in the C<collectors> list during exporter setup, they
331
- #pod must be code references, and are used to validate the importer's values. The
332
- #pod validator is called when the collection is found, and if it returns false, an
333
- #pod exception is thrown. We could ensure that no one tries to set a global data
334
- #pod default easily:
335
- #pod
336
- #pod collectors => { defaults => sub { return (exists $_[0]->{data}) ? 0 : 1 } }
337
- #pod
338
- #pod Collector coderefs can also be used as hooks to perform arbitrary actions
339
- #pod before anything is exported.
340
- #pod
341
- #pod When the coderef is called, it is passed the value of the collection and a
342
- #pod hashref containing the following entries:
343
- #pod
344
- #pod name - the name of the collector
345
- #pod config - the exporter configuration (hashref)
346
- #pod import_args - the arguments passed to the exporter, sans collections (aref)
347
- #pod class - the package on which the importer was called
348
- #pod into - the package into which exports will be exported
349
- #pod
350
- #pod Collectors with all-caps names (that is, made up of underscore or capital A
351
- #pod through Z) are reserved for special use. The only currently implemented
352
- #pod special collector is C<INIT>, whose hook (if present in the exporter
353
- #pod configuration) is always run before any other hook.
354
- #pod
355
- #pod =head1 CALLING THE EXPORTER
356
- #pod
357
- #pod Arguments to the exporter (that is, the arguments after the module name in a
358
- #pod C<use> statement) are parsed as follows:
359
- #pod
360
- #pod First, the collectors gather any collections found in the arguments. Any
361
- #pod reference type may be given as the value for a collector. For each collection
362
- #pod given in the arguments, its validator (if any) is called.
363
- #pod
364
- #pod Next, groups are expanded. If the group is implemented by a group generator,
365
- #pod the generator is called. There are two special arguments which, if given to a
366
- #pod group, have special meaning:
367
- #pod
368
- #pod -prefix - a string to prepend to any export imported from this group
369
- #pod -suffix - a string to append to any export imported from this group
370
- #pod
371
- #pod Finally, individual export generators are called and all subs, generated or
372
- #pod otherwise, are installed in the calling package. There is only one special
373
- #pod argument for export generators:
374
- #pod
375
- #pod -as - where to install the exported sub
376
- #pod
377
- #pod Normally, C<-as> will contain an alternate name for the routine. It may,
378
- #pod however, contain a reference to a scalar. If that is the case, a reference the
379
- #pod generated routine will be placed in the scalar referenced by C<-as>. It will
380
- #pod not be installed into the calling package.
381
- #pod
382
- #pod =head2 Special Exporter Arguments
383
- #pod
384
- #pod The generated exporter accept some special options, which may be passed as the
385
- #pod first argument, in a hashref.
386
- #pod
387
- #pod These options are:
388
- #pod
389
- #pod into_level
390
- #pod into
391
- #pod generator
392
- #pod installer
393
- #pod
394
- #pod These override the same-named configuration options described in L</EXPORTER
395
- #pod CONFIGURATION>.
396
- #pod
397
- #pod =cut
398
-
399
- # Given a potential import name, this returns the group name -- if it's got a
400
- # group prefix.
401
- sub _group_name {
402
- my ($name) = @_;
403
-
404
- return if (index q{-:}, (substr $name, 0, 1)) == -1;
405
- return substr $name, 1;
406
- }
407
-
408
- # \@groups is a canonicalized opt list of exports and groups this returns
409
- # another canonicalized opt list with groups replaced with relevant exports.
410
- # \%seen is groups we've already expanded and can ignore.
411
- # \%merge is merged options from the group we're descending through.
412
- sub _expand_groups {
413
- my ($class, $config, $groups, $collection, $seen, $merge) = @_;
414
- $seen ||= {};
415
- $merge ||= {};
416
- my @groups = @$groups;
417
-
418
- for my $i (reverse 0 .. $#groups) {
419
- if (my $group_name = _group_name($groups[$i][0])) {
420
- my $seen = { %$seen }; # faux-dynamic scoping
421
-
422
- splice @groups, $i, 1,
423
- _expand_group($class, $config, $groups[$i], $collection, $seen, $merge);
424
- } else {
425
- # there's nothing to munge in this export's args
426
- next unless my %merge = %$merge;
427
-
428
- # we have things to merge in; do so
429
- my $prefix = (delete $merge{-prefix}) || '';
430
- my $suffix = (delete $merge{-suffix}) || '';
431
-
432
- if (
433
- Params::Util::_CODELIKE($groups[$i][1]) ## no critic Private
434
- or
435
- Params::Util::_SCALAR0($groups[$i][1]) ## no critic Private
436
- ) {
437
- # this entry was build by a group generator
438
- $groups[$i][0] = $prefix . $groups[$i][0] . $suffix;
439
- } else {
440
- my $as
441
- = ref $groups[$i][1]{-as} ? $groups[$i][1]{-as}
442
- : $groups[$i][1]{-as} ? $prefix . $groups[$i][1]{-as} . $suffix
443
- : $prefix . $groups[$i][0] . $suffix;
444
-
445
- $groups[$i][1] = { %{ $groups[$i][1] }, %merge, -as => $as };
446
- }
447
- }
448
- }
449
-
450
- return \@groups;
451
- }
452
-
453
- # \@group is a name/value pair from an opt list.
454
- sub _expand_group {
455
- my ($class, $config, $group, $collection, $seen, $merge) = @_;
456
- $merge ||= {};
457
-
458
- my ($group_name, $group_arg) = @$group;
459
- $group_name = _group_name($group_name);
460
-
461
- Carp::croak qq(group "$group_name" is not exported by the $class module)
462
- unless exists $config->{groups}{$group_name};
463
-
464
- return if $seen->{$group_name}++;
465
-
466
- if (ref $group_arg) {
467
- my $prefix = (delete $merge->{-prefix}||'') . ($group_arg->{-prefix}||'');
468
- my $suffix = ($group_arg->{-suffix}||'') . (delete $merge->{-suffix}||'');
469
- $merge = {
470
- %$merge,
471
- %$group_arg,
472
- ($prefix ? (-prefix => $prefix) : ()),
473
- ($suffix ? (-suffix => $suffix) : ()),
474
- };
475
- }
476
-
477
- my $exports = $config->{groups}{$group_name};
478
-
479
- if (
480
- Params::Util::_CODELIKE($exports) ## no critic Private
481
- or
482
- Params::Util::_SCALAR0($exports) ## no critic Private
483
- ) {
484
- # I'm not very happy with this code for hiding -prefix and -suffix, but
485
- # it's needed, and I'm not sure, offhand, how to make it better.
486
- # -- rjbs, 2006-12-05
487
- my $group_arg = $merge ? { %$merge } : {};
488
- delete $group_arg->{-prefix};
489
- delete $group_arg->{-suffix};
490
-
491
- my $group = Params::Util::_CODELIKE($exports) ## no critic Private
492
- ? $exports->($class, $group_name, $group_arg, $collection)
493
- : $class->$$exports($group_name, $group_arg, $collection);
494
-
495
- Carp::croak qq(group generator "$group_name" did not return a hashref)
496
- if ref $group ne 'HASH';
497
-
498
- my $stuff = [ map { [ $_ => $group->{$_} ] } keys %$group ];
499
- return @{
500
- _expand_groups($class, $config, $stuff, $collection, $seen, $merge)
501
- };
502
- } else {
503
- $exports
504
- = Data::OptList::mkopt($exports, "$group_name exports");
505
-
506
- return @{
507
- _expand_groups($class, $config, $exports, $collection, $seen, $merge)
508
- };
509
- }
510
- }
511
-
512
- sub _mk_collection_builder {
513
- my ($col, $etc) = @_;
514
- my ($config, $import_args, $class, $into) = @$etc;
515
-
516
- my %seen;
517
- sub {
518
- my ($collection) = @_;
519
- my ($name, $value) = @$collection;
520
-
521
- Carp::croak "collection $name provided multiple times in import"
522
- if $seen{ $name }++;
523
-
524
- if (ref(my $hook = $config->{collectors}{$name})) {
525
- my $arg = {
526
- name => $name,
527
- config => $config,
528
- import_args => $import_args,
529
- class => $class,
530
- into => $into,
531
- };
532
-
533
- my $error_msg = "collection $name failed validation";
534
- if (Params::Util::_SCALAR0($hook)) { ## no critic Private
535
- Carp::croak $error_msg unless $class->$$hook($value, $arg);
536
- } else {
537
- Carp::croak $error_msg unless $hook->($value, $arg);
538
- }
539
- }
540
-
541
- $col->{ $name } = $value;
542
- }
543
- }
544
-
545
- # Given a config and pre-canonicalized importer args, remove collections from
546
- # the args and return them.
547
- sub _collect_collections {
548
- my ($config, $import_args, $class, $into) = @_;
549
-
550
- my @collections
551
- = map { splice @$import_args, $_, 1 }
552
- grep { exists $config->{collectors}{ $import_args->[$_][0] } }
553
- reverse 0 .. $#$import_args;
554
-
555
- unshift @collections, [ INIT => {} ] if $config->{collectors}{INIT};
556
-
557
- my $col = {};
558
- my $builder = _mk_collection_builder($col, \@_);
559
- for my $collection (@collections) {
560
- $builder->($collection)
561
- }
562
-
563
- return $col;
564
- }
565
-
566
- #pod =head1 SUBROUTINES
567
- #pod
568
- #pod =head2 setup_exporter
569
- #pod
570
- #pod This routine builds and installs an C<import> routine. It is called with one
571
- #pod argument, a hashref containing the exporter configuration. Using this, it
572
- #pod builds an exporter and installs it into the calling package with the name
573
- #pod "import." In addition to the normal exporter configuration, a few named
574
- #pod arguments may be passed in the hashref:
575
- #pod
576
- #pod into - into what package should the exporter be installed
577
- #pod into_level - into what level up the stack should the exporter be installed
578
- #pod as - what name should the installed exporter be given
579
- #pod
580
- #pod By default the exporter is installed with the name C<import> into the immediate
581
- #pod caller of C<setup_exporter>. In other words, if your package calls
582
- #pod C<setup_exporter> without providing any of the three above arguments, it will
583
- #pod have an C<import> routine installed.
584
- #pod
585
- #pod Providing both C<into> and C<into_level> will cause an exception to be thrown.
586
- #pod
587
- #pod The exporter is built by C<L</build_exporter>>.
588
- #pod
589
- #pod =cut
590
-
591
- sub setup_exporter {
592
- my ($config) = @_;
593
-
594
- Carp::croak 'into and into_level may not both be supplied to exporter'
595
- if exists $config->{into} and exists $config->{into_level};
596
-
597
- my $as = delete $config->{as} || 'import';
598
- my $into
599
- = exists $config->{into} ? delete $config->{into}
600
- : exists $config->{into_level} ? caller(delete $config->{into_level})
601
- : caller(0);
602
-
603
- my $import = build_exporter($config);
604
-
605
- Sub::Install::reinstall_sub({
606
- code => $import,
607
- into => $into,
608
- as => $as,
609
- });
610
- }
611
-
612
- #pod =head2 build_exporter
613
- #pod
614
- #pod Given a standard exporter configuration, this routine builds and returns an
615
- #pod exporter -- that is, a subroutine that can be installed as a class method to
616
- #pod perform exporting on request.
617
- #pod
618
- #pod Usually, this method is called by C<L</setup_exporter>>, which then installs
619
- #pod the exporter as a package's import routine.
620
- #pod
621
- #pod =cut
622
-
623
- sub _key_intersection {
624
- my ($x, $y) = @_;
625
- my %seen = map { $_ => 1 } keys %$x;
626
- my @names = grep { $seen{$_} } keys %$y;
627
- }
628
-
629
- # Given the config passed to setup_exporter, which contains sugary opt list
630
- # data, rewrite the opt lists into hashes, catch a few kinds of invalid
631
- # configurations, and set up defaults. Since the config is a reference, it's
632
- # rewritten in place.
633
- my %valid_config_key;
634
- BEGIN {
635
- %valid_config_key =
636
- map { $_ => 1 }
637
- qw(as collectors installer generator exports groups into into_level),
638
- qw(exporter), # deprecated
639
- }
640
-
641
- sub _assert_collector_names_ok {
642
- my ($collectors) = @_;
643
-
644
- for my $reserved_name (grep { /\A[_A-Z]+\z/ } keys %$collectors) {
645
- Carp::croak "unknown reserved collector name: $reserved_name"
646
- if $reserved_name ne 'INIT';
647
- }
648
- }
649
-
650
- sub _rewrite_build_config {
651
- my ($config) = @_;
652
-
653
- if (my @keys = grep { not exists $valid_config_key{$_} } keys %$config) {
654
- Carp::croak "unknown options (@keys) passed to Sub::Exporter";
655
- }
656
-
657
- Carp::croak q(into and into_level may not both be supplied to exporter)
658
- if exists $config->{into} and exists $config->{into_level};
659
-
660
- # XXX: Remove after deprecation period.
661
- if ($config->{exporter}) {
662
- Carp::cluck "'exporter' argument to build_exporter is deprecated. Use 'installer' instead; the semantics are identical.";
663
- $config->{installer} = delete $config->{exporter};
664
- }
665
-
666
- Carp::croak q(into and into_level may not both be supplied to exporter)
667
- if exists $config->{into} and exists $config->{into_level};
668
-
669
- for (qw(exports collectors)) {
670
- $config->{$_} = Data::OptList::mkopt_hash(
671
- $config->{$_},
672
- $_,
673
- [ 'CODE', 'SCALAR' ],
674
- );
675
- }
676
-
677
- _assert_collector_names_ok($config->{collectors});
678
-
679
- if (my @names = _key_intersection(@$config{qw(exports collectors)})) {
680
- Carp::croak "names (@names) used in both collections and exports";
681
- }
682
-
683
- $config->{groups} = Data::OptList::mkopt_hash(
684
- $config->{groups},
685
- 'groups',
686
- [
687
- 'HASH', # standard opt list
688
- 'ARRAY', # standard opt list
689
- 'CODE', # group generator
690
- 'SCALAR', # name of group generation method
691
- ]
692
- );
693
-
694
- # by default, export nothing
695
- $config->{groups}{default} ||= [];
696
-
697
- # by default, build an all-inclusive 'all' group
698
- $config->{groups}{all} ||= [ keys %{ $config->{exports} } ];
699
-
700
- $config->{generator} ||= \&default_generator;
701
- $config->{installer} ||= \&default_installer;
702
- }
703
-
704
- sub build_exporter {
705
- my ($config) = @_;
706
-
707
- _rewrite_build_config($config);
708
-
709
- my $import = sub {
710
- my ($class) = shift;
711
-
712
- # XXX: clean this up -- rjbs, 2006-03-16
713
- my $special = (ref $_[0]) ? shift(@_) : {};
714
- Carp::croak q(into and into_level may not both be supplied to exporter)
715
- if exists $special->{into} and exists $special->{into_level};
716
-
717
- if ($special->{exporter}) {
718
- Carp::cluck "'exporter' special import argument is deprecated. Use 'installer' instead; the semantics are identical.";
719
- $special->{installer} = delete $special->{exporter};
720
- }
721
-
722
- my $into
723
- = defined $special->{into} ? delete $special->{into}
724
- : defined $special->{into_level} ? caller(delete $special->{into_level})
725
- : defined $config->{into} ? $config->{into}
726
- : defined $config->{into_level} ? caller($config->{into_level})
727
- : caller(0);
728
-
729
- my $generator = delete $special->{generator} || $config->{generator};
730
- my $installer = delete $special->{installer} || $config->{installer};
731
-
732
- # this builds a AOA, where the inner arrays are [ name => value_ref ]
733
- my $import_args = Data::OptList::mkopt([ @_ ]);
734
-
735
- # is this right? defaults first or collectors first? -- rjbs, 2006-06-24
736
- $import_args = [ [ -default => undef ] ] unless @$import_args;
737
-
738
- my $collection = _collect_collections($config, $import_args, $class, $into);
739
-
740
- my $to_import = _expand_groups($class, $config, $import_args, $collection);
741
-
742
- # now, finally $import_arg is really the "to do" list
743
- _do_import(
744
- {
745
- class => $class,
746
- col => $collection,
747
- config => $config,
748
- into => $into,
749
- generator => $generator,
750
- installer => $installer,
751
- },
752
- $to_import,
753
- );
754
- };
755
-
756
- return $import;
757
- }
758
-
759
- sub _do_import {
760
- my ($arg, $to_import) = @_;
761
-
762
- my @todo;
763
-
764
- for my $pair (@$to_import) {
765
- my ($name, $import_arg) = @$pair;
766
-
767
- my ($generator, $as);
768
-
769
- if ($import_arg and Params::Util::_CODELIKE($import_arg)) { ## no critic
770
- # This is the case when a group generator has inserted name/code pairs.
771
- $generator = sub { $import_arg };
772
- $as = $name;
773
- } else {
774
- $import_arg = { $import_arg ? %$import_arg : () };
775
-
776
- Carp::croak qq("$name" is not exported by the $arg->{class} module)
777
- unless exists $arg->{config}{exports}{$name};
778
-
779
- $generator = $arg->{config}{exports}{$name};
780
-
781
- $as = exists $import_arg->{-as} ? (delete $import_arg->{-as}) : $name;
782
- }
783
-
784
- my $code = $arg->{generator}->(
785
- {
786
- class => $arg->{class},
787
- name => $name,
788
- arg => $import_arg,
789
- col => $arg->{col},
790
- generator => $generator,
791
- }
792
- );
793
-
794
- push @todo, $as, $code;
795
- }
796
-
797
- $arg->{installer}->(
798
- {
799
- class => $arg->{class},
800
- into => $arg->{into},
801
- col => $arg->{col},
802
- },
803
- \@todo,
804
- );
805
- }
806
-
807
- ## Cute idea, possibly for future use: also supply an "unimport" for:
808
- ## no Module::Whatever qw(arg arg arg);
809
- # sub _unexport {
810
- # my (undef, undef, undef, undef, undef, $as, $into) = @_;
811
- #
812
- # if (ref $as eq 'SCALAR') {
813
- # undef $$as;
814
- # } elsif (ref $as) {
815
- # Carp::croak "invalid reference type for $as: " . ref $as;
816
- # } else {
817
- # no strict 'refs';
818
- # delete &{$into . '::' . $as};
819
- # }
820
- # }
821
-
822
- #pod =head2 default_generator
823
- #pod
824
- #pod This is Sub::Exporter's default generator. It takes bits of configuration that
825
- #pod have been gathered during the import and turns them into a coderef that can be
826
- #pod installed.
827
- #pod
828
- #pod my $code = default_generator(\%arg);
829
- #pod
830
- #pod Passed arguments are:
831
- #pod
832
- #pod class - the class on which the import method was called
833
- #pod name - the name of the export being generated
834
- #pod arg - the arguments to the generator
835
- #pod col - the collections
836
- #pod
837
- #pod generator - the generator to be used to build the export (code or scalar ref)
838
- #pod
839
- #pod =cut
840
-
841
- sub default_generator {
842
- my ($arg) = @_;
843
- my ($class, $name, $generator) = @$arg{qw(class name generator)};
844
-
845
- if (not defined $generator) {
846
- my $code = $class->can($name)
847
- or Carp::croak "can't locate exported subroutine $name via $class";
848
- return $code;
849
- }
850
-
851
- # I considered making this "$class->$generator(" but it seems that
852
- # overloading precedence would turn an overloaded-as-code generator object
853
- # into a string before code. -- rjbs, 2006-06-11
854
- return $generator->($class, $name, $arg->{arg}, $arg->{col})
855
- if Params::Util::_CODELIKE($generator); ## no critic Private
856
-
857
- # This "must" be a scalar reference, to a generator method name.
858
- # -- rjbs, 2006-12-05
859
- return $class->$$generator($name, $arg->{arg}, $arg->{col});
860
- }
861
-
862
- #pod =head2 default_installer
863
- #pod
864
- #pod This is Sub::Exporter's default installer. It does what Sub::Exporter
865
- #pod promises: it installs code into the target package.
866
- #pod
867
- #pod default_installer(\%arg, \@to_export);
868
- #pod
869
- #pod Passed arguments are:
870
- #pod
871
- #pod into - the package into which exports should be delivered
872
- #pod
873
- #pod C<@to_export> is a list of name/value pairs. The default exporter assigns code
874
- #pod (the values) to named slots (the names) in the given package. If the name is a
875
- #pod scalar reference, the scalar reference is made to point to the code reference
876
- #pod instead.
877
- #pod
878
- #pod =cut
879
-
880
- sub default_installer {
881
- my ($arg, $to_export) = @_;
882
-
883
- for (my $i = 0; $i < @$to_export; $i += 2) {
884
- my ($as, $code) = @$to_export[ $i, $i+1 ];
885
-
886
- # Allow as isa ARRAY to push onto an array?
887
- # Allow into isa HASH to install name=>code into hash?
888
-
889
- if (ref $as eq 'SCALAR') {
890
- $$as = $code;
891
- } elsif (ref $as) {
892
- Carp::croak "invalid reference type for $as: " . ref $as;
893
- } else {
894
- Sub::Install::reinstall_sub({
895
- code => $code,
896
- into => $arg->{into},
897
- as => $as
898
- });
899
- }
900
- }
901
- }
902
-
903
- sub default_exporter {
904
- Carp::cluck "default_exporter is deprecated; call default_installer instead; the semantics are identical";
905
- goto &default_installer;
906
- }
907
-
908
- #pod =head1 EXPORTS
909
- #pod
910
- #pod Sub::Exporter also offers its own exports: the C<setup_exporter> and
911
- #pod C<build_exporter> routines described above. It also provides a special "setup"
912
- #pod collector, which will set up an exporter using the parameters passed to it.
913
- #pod
914
- #pod Note that the "setup" collector (seen in examples like the L</SYNOPSIS> above)
915
- #pod uses C<build_exporter>, not C<setup_exporter>. This means that the special
916
- #pod arguments like "into" and "as" for C<setup_exporter> are not accepted here.
917
- #pod Instead, you may write something like:
918
- #pod
919
- #pod use Sub::Exporter
920
- #pod { into => 'Target::Package' },
921
- #pod -setup => {
922
- #pod -as => 'do_import',
923
- #pod exports => [ ... ],
924
- #pod }
925
- #pod ;
926
- #pod
927
- #pod Finding a good reason for wanting to do this is left as an exercise for the
928
- #pod reader.
929
- #pod
930
- #pod =cut
931
-
932
- setup_exporter({
933
- exports => [
934
- qw(setup_exporter build_exporter),
935
- _import => sub { build_exporter($_[2]) },
936
- ],
937
- groups => {
938
- all => [ qw(setup_exporter build_export) ],
939
- },
940
- collectors => { -setup => \&_setup },
941
- });
942
-
943
- sub _setup {
944
- my ($value, $arg) = @_;
945
-
946
- if (ref $value eq 'HASH') {
947
- push @{ $arg->{import_args} }, [ _import => { -as => 'import', %$value } ];
948
- return 1;
949
- } elsif (ref $value eq 'ARRAY') {
950
- push @{ $arg->{import_args} },
951
- [ _import => { -as => 'import', exports => $value } ];
952
- return 1;
953
- }
954
- return;
955
- }
956
-
957
- #pod =head1 COMPARISONS
958
- #pod
959
- #pod There are a whole mess of exporters on the CPAN. The features included in
960
- #pod Sub::Exporter set it apart from any existing Exporter. Here's a summary of
961
- #pod some other exporters and how they compare.
962
- #pod
963
- #pod =over
964
- #pod
965
- #pod =item * L<Exporter> and co.
966
- #pod
967
- #pod This is the standard Perl exporter. Its interface is a little clunky, but it's
968
- #pod fast and ubiquitous. It can do some things that Sub::Exporter can't: it can
969
- #pod export things other than routines, it can import "everything in this group
970
- #pod except this symbol," and some other more esoteric things. These features seem
971
- #pod to go nearly entirely unused.
972
- #pod
973
- #pod It always exports things exactly as they appear in the exporting module; it
974
- #pod can't rename or customize routines. Its groups ("tags") can't be nested.
975
- #pod
976
- #pod L<Exporter::Lite> is a whole lot like Exporter, but it does significantly less:
977
- #pod it supports exporting symbols, but not groups, pattern matching, or negation.
978
- #pod
979
- #pod The fact that Sub::Exporter can't export symbols other than subroutines is
980
- #pod a good idea, not a missing feature.
981
- #pod
982
- #pod For simple uses, setting up Sub::Exporter is about as easy as Exporter. For
983
- #pod complex uses, Sub::Exporter makes hard things possible, which would not be
984
- #pod possible with Exporter.
985
- #pod
986
- #pod When using a module that uses Sub::Exporter, users familiar with Exporter will
987
- #pod probably see no difference in the basics. These two lines do about the same
988
- #pod thing in whether the exporting module uses Exporter or Sub::Exporter.
989
- #pod
990
- #pod use Some::Module qw(foo bar baz);
991
- #pod use Some::Module qw(foo :bar baz);
992
- #pod
993
- #pod The definition for exporting in Exporter.pm might look like this:
994
- #pod
995
- #pod package Some::Module;
996
- #pod use base qw(Exporter);
997
- #pod our @EXPORT_OK = qw(foo bar baz quux);
998
- #pod our %EXPORT_TAGS = (bar => [ qw(bar baz) ]);
999
- #pod
1000
- #pod Using Sub::Exporter, it would look like this:
1001
- #pod
1002
- #pod package Some::Module;
1003
- #pod use Sub::Exporter -setup => {
1004
- #pod exports => [ qw(foo bar baz quux) ],
1005
- #pod groups => { bar => [ qw(bar baz) ]}
1006
- #pod };
1007
- #pod
1008
- #pod Sub::Exporter respects inheritance, so that a package may export inherited
1009
- #pod routines, and will export the most inherited version. Exporting methods
1010
- #pod without currying away the invocant is a bad idea, but Sub::Exporter allows you
1011
- #pod to do just that -- and anyway, there are other uses for this feature, like
1012
- #pod packages of exported subroutines which use inheritance specifically to allow
1013
- #pod more specialized, but similar, packages.
1014
- #pod
1015
- #pod L<Exporter::Easy> provides a wrapper around the standard Exporter. It makes it
1016
- #pod simpler to build groups, but doesn't provide any more functionality. Because
1017
- #pod it is a front-end to Exporter, it will store your exporter's configuration in
1018
- #pod global package variables.
1019
- #pod
1020
- #pod =item * Attribute-Based Exporters
1021
- #pod
1022
- #pod Some exporters use attributes to mark variables to export. L<Exporter::Simple>
1023
- #pod supports exporting any kind of symbol, and supports groups. Using a module
1024
- #pod like Exporter or Sub::Exporter, it's easy to look at one place and see what is
1025
- #pod exported, but it's impossible to look at a variable definition and see whether
1026
- #pod it is exported by that alone. Exporter::Simple makes this trade in reverse:
1027
- #pod each variable's declaration includes its export definition, but there is no one
1028
- #pod place to look to find a manifest of exports.
1029
- #pod
1030
- #pod More importantly, Exporter::Simple does not add any new features to those of
1031
- #pod Exporter. In fact, like Exporter::Easy, it is just a front-end to Exporter, so
1032
- #pod it ends up storing its configuration in global package variables. (This means
1033
- #pod that there is one place to look for your exporter's manifest, actually. You
1034
- #pod can inspect the C<@EXPORT> package variables, and other related package
1035
- #pod variables, at runtime.)
1036
- #pod
1037
- #pod L<Perl6::Export> isn't actually attribute based, but looks similar. Its syntax
1038
- #pod is borrowed from Perl 6, and implemented by a source filter. It is a prototype
1039
- #pod of an interface that is still being designed. It should probably be avoided
1040
- #pod for production work. On the other hand, L<Perl6::Export::Attrs> implements
1041
- #pod Perl 6-like exporting, but translates it into Perl 5 by providing attributes.
1042
- #pod
1043
- #pod =item * Other Exporters
1044
- #pod
1045
- #pod L<Exporter::Renaming> wraps the standard Exporter to allow it to export symbols
1046
- #pod with changed names.
1047
- #pod
1048
- #pod L<Class::Exporter> performs a special kind of routine generation, giving each
1049
- #pod importing package an instance of your class, and then exporting the instance's
1050
- #pod methods as normal routines. (Sub::Exporter, of course, can easily emulate this
1051
- #pod behavior, as shown above.)
1052
- #pod
1053
- #pod L<Exporter::Tidy> implements a form of renaming (using its C<_map> argument)
1054
- #pod and of prefixing, and implements groups. It also avoids using package
1055
- #pod variables for its configuration.
1056
- #pod
1057
- #pod =back
1058
- #pod
1059
- #pod =head1 TODO
1060
- #pod
1061
- #pod =cut
1062
-
1063
- #pod =over
1064
- #pod
1065
- #pod =item * write a set of longer, more demonstrative examples
1066
- #pod
1067
- #pod =item * solidify the "custom exporter" interface (see C<&default_exporter>)
1068
- #pod
1069
- #pod =item * add an "always" group
1070
- #pod
1071
- #pod =back
1072
- #pod
1073
- #pod =head1 THANKS
1074
- #pod
1075
- #pod Hans Dieter Pearcey provided helpful advice while I was writing Sub::Exporter.
1076
- #pod Ian Langworth and Shawn Sorichetti asked some good questions and helped me
1077
- #pod improve my documentation quite a bit. Yuval Kogman helped me find a bunch of
1078
- #pod little problems.
1079
- #pod
1080
- #pod Thanks, friends!
1081
- #pod
1082
- #pod =head1 BUGS
1083
- #pod
1084
- #pod Please report any bugs or feature requests through the web interface at
1085
- #pod L<http://rt.cpan.org>. I will be notified, and then you'll automatically be
1086
- #pod notified of progress on your bug as I make changes.
1087
- #pod
1088
- #pod =cut
1089
-
1090
- "jn8:32"; # <-- magic true value
1091
-
1092
- __END__
1093
-
1094
- =pod
1095
-
1096
- =encoding UTF-8
1097
-
1098
- =head1 NAME
1099
-
1100
- Sub::Exporter - a sophisticated exporter for custom-built routines
1101
-
1102
- =head1 VERSION
1103
-
1104
- version 0.991
1105
-
1106
- =head1 SYNOPSIS
1107
-
1108
- Sub::Exporter must be used in two places. First, in an exporting module:
1109
-
1110
- # in the exporting module:
1111
- package Text::Tweaker;
1112
- use Sub::Exporter -setup => {
1113
- exports => [
1114
- qw(squish titlecase), # always works the same way
1115
- reformat => \&build_reformatter, # generator to build exported function
1116
- trim => \&build_trimmer,
1117
- indent => \&build_indenter,
1118
- ],
1119
- collectors => [ 'defaults' ],
1120
- };
1121
-
1122
- Then, in an importing module:
1123
-
1124
- # in the importing module:
1125
- use Text::Tweaker
1126
- 'squish',
1127
- indent => { margin => 5 },
1128
- reformat => { width => 79, justify => 'full', -as => 'prettify_text' },
1129
- defaults => { eol => 'CRLF' };
1130
-
1131
- With this setup, the importing module ends up with three routines: C<squish>,
1132
- C<indent>, and C<prettify_text>. The latter two have been built to the
1133
- specifications of the importer -- they are not just copies of the code in the
1134
- exporting package.
1135
-
1136
- =head1 DESCRIPTION
1137
-
1138
- B<ACHTUNG!> If you're not familiar with Exporter or exporting, read
1139
- L<Sub::Exporter::Tutorial> first!
1140
-
1141
- =head2 Why Generators?
1142
-
1143
- The biggest benefit of Sub::Exporter over existing exporters (including the
1144
- ubiquitous Exporter.pm) is its ability to build new coderefs for export, rather
1145
- than to simply export code identical to that found in the exporting package.
1146
-
1147
- If your module's consumers get a routine that works like this:
1148
-
1149
- use Data::Analyze qw(analyze);
1150
- my $value = analyze($data, $tolerance, $passes);
1151
-
1152
- and they constantly pass only one or two different set of values for the
1153
- non-C<$data> arguments, your code can benefit from Sub::Exporter. By writing a
1154
- simple generator, you can let them do this, instead:
1155
-
1156
- use Data::Analyze
1157
- analyze => { tolerance => 0.10, passes => 10, -as => analyze10 },
1158
- analyze => { tolerance => 0.15, passes => 50, -as => analyze50 };
1159
-
1160
- my $value = analyze10($data);
1161
-
1162
- The package with the generator for that would look something like this:
1163
-
1164
- package Data::Analyze;
1165
- use Sub::Exporter -setup => {
1166
- exports => [
1167
- analyze => \&build_analyzer,
1168
- ],
1169
- };
1170
-
1171
- sub build_analyzer {
1172
- my ($class, $name, $arg) = @_;
1173
-
1174
- return sub {
1175
- my $data = shift;
1176
- my $tolerance = shift || $arg->{tolerance};
1177
- my $passes = shift || $arg->{passes};
1178
-
1179
- analyze($data, $tolerance, $passes);
1180
- }
1181
- }
1182
-
1183
- Your module's user now has to do less work to benefit from it -- and remember,
1184
- you're often your own user! Investing in customized subroutines is an
1185
- investment in future laziness.
1186
-
1187
- This also avoids a common form of ugliness seen in many modules: package-level
1188
- configuration. That is, you might have seen something like the above
1189
- implemented like so:
1190
-
1191
- use Data::Analyze qw(analyze);
1192
- $Data::Analyze::default_tolerance = 0.10;
1193
- $Data::Analyze::default_passes = 10;
1194
-
1195
- This might save time, until you have multiple modules using Data::Analyze.
1196
- Because there is only one global configuration, they step on each other's toes
1197
- and your code begins to have mysterious errors.
1198
-
1199
- Generators can also allow you to export class methods to be called as
1200
- subroutines:
1201
-
1202
- package Data::Methodical;
1203
- use Sub::Exporter -setup => { exports => { some_method => \&_curry_class } };
1204
-
1205
- sub _curry_class {
1206
- my ($class, $name) = @_;
1207
- sub { $class->$name(@_); };
1208
- }
1209
-
1210
- Because of the way that exporters and Sub::Exporter work, any package that
1211
- inherits from Data::Methodical can inherit its exporter and override its
1212
- C<some_method>. If a user imports C<some_method> from that package, he'll
1213
- receive a subroutine that calls the method on the subclass, rather than on
1214
- Data::Methodical itself. Keep in mind that if you re-setup Sub::Exporter in a
1215
- package that inherits from Data::Methodical you will, of course, be entirely
1216
- replacing the exporter from Data::Methodical. C<import> is a method, and is
1217
- hidden by the same means as any other method.
1218
-
1219
- =head2 Other Customizations
1220
-
1221
- Building custom routines with generators isn't the only way that Sub::Exporters
1222
- allows the importing code to refine its use of the exported routines. They may
1223
- also be renamed to avoid naming collisions.
1224
-
1225
- Consider the following code:
1226
-
1227
- # this program determines to which circle of Hell you will be condemned
1228
- use Morality qw(sin virtue); # for calculating viciousness
1229
- use Math::Trig qw(:all); # for dealing with circles
1230
-
1231
- The programmer has inadvertently imported two C<sin> routines. The solution,
1232
- in Exporter.pm-based modules, would be to import only one and then call the
1233
- other by its fully-qualified name. Alternately, the importer could write a
1234
- routine that did so, or could mess about with typeglobs.
1235
-
1236
- How much easier to write:
1237
-
1238
- # this program determines to which circle of Hell you will be condemned
1239
- use Morality qw(virtue), sin => { -as => 'offense' };
1240
- use Math::Trig -all => { -prefix => 'trig_' };
1241
-
1242
- and to have at one's disposal C<offense> and C<trig_sin> -- not to mention
1243
- C<trig_cos> and C<trig_tan>.
1244
-
1245
- =head1 PERL VERSION
1246
-
1247
- This library should run on perls released even a long time ago. It should
1248
- work on any version of perl released in the last five years.
1249
-
1250
- Although it may work on older versions of perl, no guarantee is made that the
1251
- minimum required version will not be increased. The version may be increased
1252
- for any reason, and there is no promise that patches will be accepted to
1253
- lower the minimum required perl.
1254
-
1255
- =head1 EXPORTER CONFIGURATION
1256
-
1257
- You can configure an exporter for your package by using Sub::Exporter like so:
1258
-
1259
- package Tools;
1260
- use Sub::Exporter
1261
- -setup => { exports => [ qw(function1 function2 function3) ] };
1262
-
1263
- This is the simplest way to use the exporter, and is basically equivalent to
1264
- this:
1265
-
1266
- package Tools;
1267
- use base qw(Exporter);
1268
- our @EXPORT_OK = qw(function1 function2 function3);
1269
-
1270
- Any basic use of Sub::Exporter will look like this:
1271
-
1272
- package Tools;
1273
- use Sub::Exporter -setup => \%config;
1274
-
1275
- The following keys are valid in C<%config>:
1276
-
1277
- exports - a list of routines to provide for exporting; each routine may be
1278
- followed by generator
1279
- groups - a list of groups to provide for exporting; each must be followed by
1280
- either (a) a list of exports, possibly with arguments for each
1281
- export, or (b) a generator
1282
-
1283
- collectors - a list of names into which values are collected for use in
1284
- routine generation; each name may be followed by a validator
1285
-
1286
- In addition to the basic options above, a few more advanced options may be
1287
- passed:
1288
-
1289
- into_level - how far up the caller stack to look for a target (default 0)
1290
- into - an explicit target (package) into which to export routines
1291
-
1292
- In other words: Sub::Exporter installs a C<import> routine which, when called,
1293
- exports routines to the calling namespace. The C<into> and C<into_level>
1294
- options change where those exported routines are installed.
1295
-
1296
- generator - a callback used to produce the code that will be installed
1297
- default: Sub::Exporter::default_generator
1298
-
1299
- installer - a callback used to install the code produced by the generator
1300
- default: Sub::Exporter::default_installer
1301
-
1302
- For information on how these callbacks are used, see the documentation for
1303
- C<L</default_generator>> and C<L</default_installer>>.
1304
-
1305
- =head2 Export Configuration
1306
-
1307
- The C<exports> list may be provided as an array reference or a hash reference.
1308
- The list is processed in such a way that the following are equivalent:
1309
-
1310
- { exports => [ qw(foo bar baz), quux => \&quux_generator ] }
1311
-
1312
- { exports =>
1313
- { foo => undef, bar => undef, baz => undef, quux => \&quux_generator } }
1314
-
1315
- Generators are code that return coderefs. They are called with four
1316
- parameters:
1317
-
1318
- $class - the class whose exporter has been called (the exporting class)
1319
- $name - the name of the export for which the routine is being build
1320
- \%arg - the arguments passed for this export
1321
- \%col - the collections for this import
1322
-
1323
- Given the configuration in the L</SYNOPSIS>, the following C<use> statement:
1324
-
1325
- use Text::Tweaker
1326
- reformat => { -as => 'make_narrow', width => 33 },
1327
- defaults => { eol => 'CR' };
1328
-
1329
- would result in the following call to C<&build_reformatter>:
1330
-
1331
- my $code = build_reformatter(
1332
- 'Text::Tweaker',
1333
- 'reformat',
1334
- { width => 33 }, # note that -as is not passed in
1335
- { defaults => { eol => 'CR' } },
1336
- );
1337
-
1338
- The returned coderef (C<$code>) would then be installed as C<make_narrow> in the
1339
- calling package.
1340
-
1341
- Instead of providing a coderef in the configuration, a reference to a method
1342
- name may be provided. This method will then be called on the invocant of the
1343
- C<import> method. (In this case, we do not pass the C<$class> parameter, as it
1344
- would be redundant.)
1345
-
1346
- =head2 Group Configuration
1347
-
1348
- The C<groups> list can be passed in the same forms as C<exports>. Groups must
1349
- have values to be meaningful, which may either list exports that make up the
1350
- group (optionally with arguments) or may provide a way to build the group.
1351
-
1352
- The simpler case is the first: a group definition is a list of exports. Here's
1353
- the example that could go in exporter in the L</SYNOPSIS>.
1354
-
1355
- groups => {
1356
- default => [ qw(reformat) ],
1357
- shorteners => [ qw(squish trim) ],
1358
- email_safe => [
1359
- 'indent',
1360
- reformat => { -as => 'email_format', width => 72 }
1361
- ],
1362
- },
1363
-
1364
- Groups are imported by specifying their name prefixed be either a dash or a
1365
- colon. This line of code would import the C<shorteners> group:
1366
-
1367
- use Text::Tweaker qw(-shorteners);
1368
-
1369
- Arguments passed to a group when importing are merged into the groups options
1370
- and passed to any relevant generators. Groups can contain other groups, but
1371
- looping group structures are ignored.
1372
-
1373
- The other possible value for a group definition, a coderef, allows one
1374
- generator to build several exportable routines simultaneously. This is useful
1375
- when many routines must share enclosed lexical variables. The coderef must
1376
- return a hash reference. The keys will be used as export names and the values
1377
- are the subs that will be exported.
1378
-
1379
- This example shows a simple use of the group generator.
1380
-
1381
- package Data::Crypto;
1382
- use Sub::Exporter -setup => { groups => { cipher => \&build_cipher_group } };
1383
-
1384
- sub build_cipher_group {
1385
- my ($class, $group, $arg) = @_;
1386
- my ($encode, $decode) = build_codec($arg->{secret});
1387
- return { cipher => $encode, decipher => $decode };
1388
- }
1389
-
1390
- The C<cipher> and C<decipher> routines are built in a group because they are
1391
- built together by code which encloses their secret in their environment.
1392
-
1393
- =head3 Default Groups
1394
-
1395
- If a module that uses Sub::Exporter is C<use>d with no arguments, it will try
1396
- to export the group named C<default>. If that group has not been specifically
1397
- configured, it will be empty, and nothing will happen.
1398
-
1399
- Another group is also created if not defined: C<all>. The C<all> group
1400
- contains all the exports from the exports list.
1401
-
1402
- =head2 Collector Configuration
1403
-
1404
- The C<collectors> entry in the exporter configuration gives names which, when
1405
- found in the import call, have their values collected and passed to every
1406
- generator.
1407
-
1408
- For example, the C<build_analyzer> generator that we saw above could be
1409
- rewritten as:
1410
-
1411
- sub build_analyzer {
1412
- my ($class, $name, $arg, $col) = @_;
1413
-
1414
- return sub {
1415
- my $data = shift;
1416
- my $tolerance = shift || $arg->{tolerance} || $col->{defaults}{tolerance};
1417
- my $passes = shift || $arg->{passes} || $col->{defaults}{passes};
1418
-
1419
- analyze($data, $tolerance, $passes);
1420
- }
1421
- }
1422
-
1423
- That would allow the importer to specify global defaults for his imports:
1424
-
1425
- use Data::Analyze
1426
- 'analyze',
1427
- analyze => { tolerance => 0.10, -as => analyze10 },
1428
- analyze => { tolerance => 0.15, passes => 50, -as => analyze50 },
1429
- defaults => { passes => 10 };
1430
-
1431
- my $A = analyze10($data); # equivalent to analyze($data, 0.10, 10);
1432
- my $C = analyze50($data); # equivalent to analyze($data, 0.15, 50);
1433
- my $B = analyze($data, 0.20); # equivalent to analyze($data, 0.20, 10);
1434
-
1435
- If values are provided in the C<collectors> list during exporter setup, they
1436
- must be code references, and are used to validate the importer's values. The
1437
- validator is called when the collection is found, and if it returns false, an
1438
- exception is thrown. We could ensure that no one tries to set a global data
1439
- default easily:
1440
-
1441
- collectors => { defaults => sub { return (exists $_[0]->{data}) ? 0 : 1 } }
1442
-
1443
- Collector coderefs can also be used as hooks to perform arbitrary actions
1444
- before anything is exported.
1445
-
1446
- When the coderef is called, it is passed the value of the collection and a
1447
- hashref containing the following entries:
1448
-
1449
- name - the name of the collector
1450
- config - the exporter configuration (hashref)
1451
- import_args - the arguments passed to the exporter, sans collections (aref)
1452
- class - the package on which the importer was called
1453
- into - the package into which exports will be exported
1454
-
1455
- Collectors with all-caps names (that is, made up of underscore or capital A
1456
- through Z) are reserved for special use. The only currently implemented
1457
- special collector is C<INIT>, whose hook (if present in the exporter
1458
- configuration) is always run before any other hook.
1459
-
1460
- =head1 CALLING THE EXPORTER
1461
-
1462
- Arguments to the exporter (that is, the arguments after the module name in a
1463
- C<use> statement) are parsed as follows:
1464
-
1465
- First, the collectors gather any collections found in the arguments. Any
1466
- reference type may be given as the value for a collector. For each collection
1467
- given in the arguments, its validator (if any) is called.
1468
-
1469
- Next, groups are expanded. If the group is implemented by a group generator,
1470
- the generator is called. There are two special arguments which, if given to a
1471
- group, have special meaning:
1472
-
1473
- -prefix - a string to prepend to any export imported from this group
1474
- -suffix - a string to append to any export imported from this group
1475
-
1476
- Finally, individual export generators are called and all subs, generated or
1477
- otherwise, are installed in the calling package. There is only one special
1478
- argument for export generators:
1479
-
1480
- -as - where to install the exported sub
1481
-
1482
- Normally, C<-as> will contain an alternate name for the routine. It may,
1483
- however, contain a reference to a scalar. If that is the case, a reference the
1484
- generated routine will be placed in the scalar referenced by C<-as>. It will
1485
- not be installed into the calling package.
1486
-
1487
- =head2 Special Exporter Arguments
1488
-
1489
- The generated exporter accept some special options, which may be passed as the
1490
- first argument, in a hashref.
1491
-
1492
- These options are:
1493
-
1494
- into_level
1495
- into
1496
- generator
1497
- installer
1498
-
1499
- These override the same-named configuration options described in L</EXPORTER
1500
- CONFIGURATION>.
1501
-
1502
- =head1 SUBROUTINES
1503
-
1504
- =head2 setup_exporter
1505
-
1506
- This routine builds and installs an C<import> routine. It is called with one
1507
- argument, a hashref containing the exporter configuration. Using this, it
1508
- builds an exporter and installs it into the calling package with the name
1509
- "import." In addition to the normal exporter configuration, a few named
1510
- arguments may be passed in the hashref:
1511
-
1512
- into - into what package should the exporter be installed
1513
- into_level - into what level up the stack should the exporter be installed
1514
- as - what name should the installed exporter be given
1515
-
1516
- By default the exporter is installed with the name C<import> into the immediate
1517
- caller of C<setup_exporter>. In other words, if your package calls
1518
- C<setup_exporter> without providing any of the three above arguments, it will
1519
- have an C<import> routine installed.
1520
-
1521
- Providing both C<into> and C<into_level> will cause an exception to be thrown.
1522
-
1523
- The exporter is built by C<L</build_exporter>>.
1524
-
1525
- =head2 build_exporter
1526
-
1527
- Given a standard exporter configuration, this routine builds and returns an
1528
- exporter -- that is, a subroutine that can be installed as a class method to
1529
- perform exporting on request.
1530
-
1531
- Usually, this method is called by C<L</setup_exporter>>, which then installs
1532
- the exporter as a package's import routine.
1533
-
1534
- =head2 default_generator
1535
-
1536
- This is Sub::Exporter's default generator. It takes bits of configuration that
1537
- have been gathered during the import and turns them into a coderef that can be
1538
- installed.
1539
-
1540
- my $code = default_generator(\%arg);
1541
-
1542
- Passed arguments are:
1543
-
1544
- class - the class on which the import method was called
1545
- name - the name of the export being generated
1546
- arg - the arguments to the generator
1547
- col - the collections
1548
-
1549
- generator - the generator to be used to build the export (code or scalar ref)
1550
-
1551
- =head2 default_installer
1552
-
1553
- This is Sub::Exporter's default installer. It does what Sub::Exporter
1554
- promises: it installs code into the target package.
1555
-
1556
- default_installer(\%arg, \@to_export);
1557
-
1558
- Passed arguments are:
1559
-
1560
- into - the package into which exports should be delivered
1561
-
1562
- C<@to_export> is a list of name/value pairs. The default exporter assigns code
1563
- (the values) to named slots (the names) in the given package. If the name is a
1564
- scalar reference, the scalar reference is made to point to the code reference
1565
- instead.
1566
-
1567
- =head1 EXPORTS
1568
-
1569
- Sub::Exporter also offers its own exports: the C<setup_exporter> and
1570
- C<build_exporter> routines described above. It also provides a special "setup"
1571
- collector, which will set up an exporter using the parameters passed to it.
1572
-
1573
- Note that the "setup" collector (seen in examples like the L</SYNOPSIS> above)
1574
- uses C<build_exporter>, not C<setup_exporter>. This means that the special
1575
- arguments like "into" and "as" for C<setup_exporter> are not accepted here.
1576
- Instead, you may write something like:
1577
-
1578
- use Sub::Exporter
1579
- { into => 'Target::Package' },
1580
- -setup => {
1581
- -as => 'do_import',
1582
- exports => [ ... ],
1583
- }
1584
- ;
1585
-
1586
- Finding a good reason for wanting to do this is left as an exercise for the
1587
- reader.
1588
-
1589
- =head1 COMPARISONS
1590
-
1591
- There are a whole mess of exporters on the CPAN. The features included in
1592
- Sub::Exporter set it apart from any existing Exporter. Here's a summary of
1593
- some other exporters and how they compare.
1594
-
1595
- =over
1596
-
1597
- =item * L<Exporter> and co.
1598
-
1599
- This is the standard Perl exporter. Its interface is a little clunky, but it's
1600
- fast and ubiquitous. It can do some things that Sub::Exporter can't: it can
1601
- export things other than routines, it can import "everything in this group
1602
- except this symbol," and some other more esoteric things. These features seem
1603
- to go nearly entirely unused.
1604
-
1605
- It always exports things exactly as they appear in the exporting module; it
1606
- can't rename or customize routines. Its groups ("tags") can't be nested.
1607
-
1608
- L<Exporter::Lite> is a whole lot like Exporter, but it does significantly less:
1609
- it supports exporting symbols, but not groups, pattern matching, or negation.
1610
-
1611
- The fact that Sub::Exporter can't export symbols other than subroutines is
1612
- a good idea, not a missing feature.
1613
-
1614
- For simple uses, setting up Sub::Exporter is about as easy as Exporter. For
1615
- complex uses, Sub::Exporter makes hard things possible, which would not be
1616
- possible with Exporter.
1617
-
1618
- When using a module that uses Sub::Exporter, users familiar with Exporter will
1619
- probably see no difference in the basics. These two lines do about the same
1620
- thing in whether the exporting module uses Exporter or Sub::Exporter.
1621
-
1622
- use Some::Module qw(foo bar baz);
1623
- use Some::Module qw(foo :bar baz);
1624
-
1625
- The definition for exporting in Exporter.pm might look like this:
1626
-
1627
- package Some::Module;
1628
- use base qw(Exporter);
1629
- our @EXPORT_OK = qw(foo bar baz quux);
1630
- our %EXPORT_TAGS = (bar => [ qw(bar baz) ]);
1631
-
1632
- Using Sub::Exporter, it would look like this:
1633
-
1634
- package Some::Module;
1635
- use Sub::Exporter -setup => {
1636
- exports => [ qw(foo bar baz quux) ],
1637
- groups => { bar => [ qw(bar baz) ]}
1638
- };
1639
-
1640
- Sub::Exporter respects inheritance, so that a package may export inherited
1641
- routines, and will export the most inherited version. Exporting methods
1642
- without currying away the invocant is a bad idea, but Sub::Exporter allows you
1643
- to do just that -- and anyway, there are other uses for this feature, like
1644
- packages of exported subroutines which use inheritance specifically to allow
1645
- more specialized, but similar, packages.
1646
-
1647
- L<Exporter::Easy> provides a wrapper around the standard Exporter. It makes it
1648
- simpler to build groups, but doesn't provide any more functionality. Because
1649
- it is a front-end to Exporter, it will store your exporter's configuration in
1650
- global package variables.
1651
-
1652
- =item * Attribute-Based Exporters
1653
-
1654
- Some exporters use attributes to mark variables to export. L<Exporter::Simple>
1655
- supports exporting any kind of symbol, and supports groups. Using a module
1656
- like Exporter or Sub::Exporter, it's easy to look at one place and see what is
1657
- exported, but it's impossible to look at a variable definition and see whether
1658
- it is exported by that alone. Exporter::Simple makes this trade in reverse:
1659
- each variable's declaration includes its export definition, but there is no one
1660
- place to look to find a manifest of exports.
1661
-
1662
- More importantly, Exporter::Simple does not add any new features to those of
1663
- Exporter. In fact, like Exporter::Easy, it is just a front-end to Exporter, so
1664
- it ends up storing its configuration in global package variables. (This means
1665
- that there is one place to look for your exporter's manifest, actually. You
1666
- can inspect the C<@EXPORT> package variables, and other related package
1667
- variables, at runtime.)
1668
-
1669
- L<Perl6::Export> isn't actually attribute based, but looks similar. Its syntax
1670
- is borrowed from Perl 6, and implemented by a source filter. It is a prototype
1671
- of an interface that is still being designed. It should probably be avoided
1672
- for production work. On the other hand, L<Perl6::Export::Attrs> implements
1673
- Perl 6-like exporting, but translates it into Perl 5 by providing attributes.
1674
-
1675
- =item * Other Exporters
1676
-
1677
- L<Exporter::Renaming> wraps the standard Exporter to allow it to export symbols
1678
- with changed names.
1679
-
1680
- L<Class::Exporter> performs a special kind of routine generation, giving each
1681
- importing package an instance of your class, and then exporting the instance's
1682
- methods as normal routines. (Sub::Exporter, of course, can easily emulate this
1683
- behavior, as shown above.)
1684
-
1685
- L<Exporter::Tidy> implements a form of renaming (using its C<_map> argument)
1686
- and of prefixing, and implements groups. It also avoids using package
1687
- variables for its configuration.
1688
-
1689
- =back
1690
-
1691
- =head1 TODO
1692
-
1693
- =over
1694
-
1695
- =item * write a set of longer, more demonstrative examples
1696
-
1697
- =item * solidify the "custom exporter" interface (see C<&default_exporter>)
1698
-
1699
- =item * add an "always" group
1700
-
1701
- =back
1702
-
1703
- =head1 THANKS
1704
-
1705
- Hans Dieter Pearcey provided helpful advice while I was writing Sub::Exporter.
1706
- Ian Langworth and Shawn Sorichetti asked some good questions and helped me
1707
- improve my documentation quite a bit. Yuval Kogman helped me find a bunch of
1708
- little problems.
1709
-
1710
- Thanks, friends!
1711
-
1712
- =head1 BUGS
1713
-
1714
- Please report any bugs or feature requests through the web interface at
1715
- L<http://rt.cpan.org>. I will be notified, and then you'll automatically be
1716
- notified of progress on your bug as I make changes.
1717
-
1718
- =head1 AUTHOR
1719
-
1720
- Ricardo Signes <cpan@semiotic.systems>
1721
-
1722
- =head1 CONTRIBUTORS
1723
-
1724
- =for stopwords David Steinbrunner everybody George Hartzell Hans Dieter Pearcey Karen Etheridge Ricardo Signes Yves Orton
1725
-
1726
- =over 4
1727
-
1728
- =item *
1729
-
1730
- David Steinbrunner <dsteinbrunner@pobox.com>
1731
-
1732
- =item *
1733
-
1734
- everybody <evrybod@gmail.com>
1735
-
1736
- =item *
1737
-
1738
- George Hartzell <hartzell@alerce.com>
1739
-
1740
- =item *
1741
-
1742
- Hans Dieter Pearcey <hdp@cpan.org>
1743
-
1744
- =item *
1745
-
1746
- Karen Etheridge <ether@cpan.org>
1747
-
1748
- =item *
1749
-
1750
- Ricardo Signes <rjbs@semiotic.systems>
1751
-
1752
- =item *
1753
-
1754
- Ricardo Signes <rjbs@users.noreply.github.com>
1755
-
1756
- =item *
1757
-
1758
- Yves Orton <demerphq@gmail.com>
1759
-
1760
- =back
1761
-
1762
- =head1 COPYRIGHT AND LICENSE
1763
-
1764
- This software is copyright (c) 2007 by Ricardo Signes.
1765
-
1766
- This is free software; you can redistribute it and/or modify it under
1767
- the same terms as the Perl 5 programming language system itself.
1768
-
1769
- =cut