javonet-nodejs-sdk 2.5.15 → 2.5.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2041) hide show
  1. package/dist/core/delegatesCache/DelegatesCache.cjs +59 -0
  2. package/dist/core/handler/AbstractHandler.cjs +62 -0
  3. package/dist/core/handler/ArrayGetItemHandler.cjs +61 -0
  4. package/dist/core/handler/ArrayGetRankHandler.cjs +52 -0
  5. package/dist/core/handler/ArrayGetSizeHandler.cjs +52 -0
  6. package/dist/core/handler/ArrayHandler.cjs +41 -0
  7. package/dist/core/handler/ArraySetItemHandler.cjs +62 -0
  8. package/dist/core/handler/CastingHandler.cjs +34 -0
  9. package/dist/core/handler/ConvertTypeHandler.cjs +53 -0
  10. package/dist/core/handler/CreateClassInstanceHandler.cjs +62 -0
  11. package/dist/core/handler/DestructReferenceHandler.cjs +42 -0
  12. package/dist/core/handler/EnableNamespaceHandler.cjs +56 -0
  13. package/dist/core/handler/EnableTypeHandler.cjs +58 -0
  14. package/dist/core/handler/GetGlobalStaticFieldHandler.cjs +62 -0
  15. package/dist/core/handler/GetInstanceFieldHandler.cjs +61 -0
  16. package/dist/core/handler/GetInstanceMethodAsDelegateHandler.cjs +83 -0
  17. package/dist/core/handler/GetStaticFieldHandler.cjs +61 -0
  18. package/dist/core/handler/GetStaticMethodAsDelegateHandler.cjs +85 -0
  19. package/dist/core/handler/GetTypeHandler.cjs +87 -0
  20. package/dist/core/handler/Handler.cjs +136 -0
  21. package/dist/core/handler/InvokeDelegateHandler.cjs +53 -0
  22. package/dist/core/handler/InvokeGlobalFunctionHandler.cjs +62 -0
  23. package/dist/core/handler/InvokeInstanceMethodHandler.cjs +64 -0
  24. package/dist/core/handler/InvokeStaticMethodHandler.cjs +64 -0
  25. package/dist/core/handler/LoadLibraryHandler.cjs +71 -0
  26. package/dist/core/handler/PassDelegateHandler.cjs +164 -0
  27. package/dist/core/handler/ResolveReferenceHandler.cjs +41 -0
  28. package/dist/core/handler/SetGlobalStaticFieldHandler.cjs +63 -0
  29. package/dist/core/handler/SetInstanceFieldHandler.cjs +61 -0
  30. package/dist/core/handler/SetStaticFieldHandler.cjs +59 -0
  31. package/dist/core/handler/ValueHandler.cjs +37 -0
  32. package/dist/core/interpreter/Interpreter.cjs +163 -0
  33. package/dist/core/namespaceCache/NamespaceCache.cjs +61 -0
  34. package/dist/core/protocol/CommandDeserializer.cjs +188 -0
  35. package/dist/core/protocol/CommandSerializer.cjs +64 -0
  36. package/dist/core/protocol/TypeDeserializer.cjs +91 -0
  37. package/dist/core/protocol/TypeSerializer.cjs +153 -0
  38. package/dist/core/receiver/Receiver.cjs +65 -0
  39. package/dist/core/receiver/ReceiverNative.cjs +37 -0
  40. package/dist/core/referenceCache/ReferencesCache.cjs +65 -0
  41. package/dist/core/transmitter/Transmitter.cjs +44 -0
  42. package/dist/core/transmitter/TransmitterWebsocket.cjs +55 -0
  43. package/dist/core/transmitter/TransmitterWebsocketBrowser.cjs +59 -0
  44. package/dist/core/transmitter/TransmitterWrapper.cjs +75 -0
  45. package/dist/core/typeCache/TypeCache.cjs +61 -0
  46. package/dist/core/webSocketClient/WebSocketClient.cjs +150 -0
  47. package/dist/core/webSocketClient/WebSocketClientBrowser.cjs +153 -0
  48. package/dist/sdk/ConfigRuntimeFactory.cjs +209 -0
  49. package/dist/sdk/InvocationContext.cjs +495 -0
  50. package/dist/sdk/Javonet.cjs +150 -0
  51. package/dist/sdk/RuntimeContext.cjs +304 -0
  52. package/dist/sdk/RuntimeFactory.cjs +98 -0
  53. package/dist/sdk/tools/browser/ConfigSourceResolver.cjs +153 -0
  54. package/dist/sdk/tools/browser/SdkExceptionHelper.cjs +37 -0
  55. package/dist/sdk/tools/nodejs/JsonFileResolver.cjs +120 -0
  56. package/dist/sdk/tools/nodejs/SdkExceptionHelper.cjs +100 -0
  57. package/dist/types/core/delegatesCache/DelegatesCache.d.ts +21 -0
  58. package/dist/types/core/handler/AbstractHandler.d.ts +7 -0
  59. package/dist/types/core/handler/ArrayGetItemHandler.d.ts +5 -0
  60. package/dist/types/core/handler/ArrayGetRankHandler.d.ts +5 -0
  61. package/dist/types/core/handler/ArrayGetSizeHandler.d.ts +5 -0
  62. package/dist/types/core/handler/ArrayHandler.d.ts +4 -0
  63. package/dist/types/core/handler/ArraySetItemHandler.d.ts +5 -0
  64. package/dist/types/core/handler/CastingHandler.d.ts +3 -0
  65. package/dist/types/core/handler/ConvertTypeHandler.d.ts +22 -0
  66. package/dist/types/core/handler/CreateClassInstanceHandler.d.ts +5 -0
  67. package/dist/types/core/handler/DestructReferenceHandler.d.ts +4 -0
  68. package/dist/types/core/handler/EnableNamespaceHandler.d.ts +5 -0
  69. package/dist/types/core/handler/EnableTypeHandler.d.ts +5 -0
  70. package/dist/types/core/handler/GetGlobalStaticFieldHandler.d.ts +5 -0
  71. package/dist/types/core/handler/GetInstanceFieldHandler.d.ts +5 -0
  72. package/dist/types/core/handler/GetInstanceMethodAsDelegateHandler.d.ts +38 -0
  73. package/dist/types/core/handler/GetStaticFieldHandler.d.ts +5 -0
  74. package/dist/types/core/handler/GetStaticMethodAsDelegateHandler.d.ts +36 -0
  75. package/dist/types/core/handler/GetTypeHandler.d.ts +16 -0
  76. package/dist/types/core/handler/Handler.d.ts +27 -0
  77. package/dist/types/core/handler/InvokeDelegateHandler.d.ts +15 -0
  78. package/dist/types/core/handler/InvokeGlobalFunctionHandler.d.ts +5 -0
  79. package/dist/types/core/handler/InvokeInstanceMethodHandler.d.ts +5 -0
  80. package/dist/types/core/handler/InvokeStaticMethodHandler.d.ts +5 -0
  81. package/dist/types/core/handler/LoadLibraryHandler.d.ts +7 -0
  82. package/dist/types/core/handler/PassDelegateHandler.d.ts +104 -0
  83. package/dist/types/core/handler/ResolveReferenceHandler.d.ts +12 -0
  84. package/dist/types/core/handler/SetGlobalStaticFieldHandler.d.ts +4 -0
  85. package/dist/types/core/handler/SetInstanceFieldHandler.d.ts +5 -0
  86. package/dist/types/core/handler/SetStaticFieldHandler.d.ts +5 -0
  87. package/dist/types/core/handler/ValueHandler.d.ts +4 -0
  88. package/dist/types/core/interpreter/Interpreter.d.ts +27 -0
  89. package/dist/types/core/namespaceCache/NamespaceCache.d.ts +9 -0
  90. package/dist/types/core/protocol/CommandDeserializer.d.ts +25 -0
  91. package/dist/types/core/protocol/CommandSerializer.d.ts +4 -0
  92. package/dist/types/core/protocol/TypeDeserializer.d.ts +15 -0
  93. package/dist/types/core/protocol/TypeSerializer.d.ts +17 -0
  94. package/dist/types/core/receiver/Receiver.d.ts +14 -0
  95. package/dist/types/core/receiver/ReceiverNative.d.ts +4 -0
  96. package/dist/types/core/referenceCache/ReferencesCache.d.ts +24 -0
  97. package/dist/types/core/transmitter/Transmitter.d.ts +6 -0
  98. package/dist/types/core/transmitter/TransmitterWebsocket.d.ts +21 -0
  99. package/dist/types/core/transmitter/TransmitterWebsocketBrowser.d.ts +30 -0
  100. package/dist/types/core/transmitter/TransmitterWrapper.d.ts +11 -0
  101. package/dist/types/core/typeCache/TypeCache.d.ts +9 -0
  102. package/dist/types/core/webSocketClient/WebSocketClient.d.ts +50 -0
  103. package/dist/types/core/webSocketClient/WebSocketClientBrowser.d.ts +63 -0
  104. package/dist/types/sdk/ConfigRuntimeFactory.d.ts +73 -0
  105. package/dist/types/sdk/InvocationContext.d.ts +207 -0
  106. package/dist/types/sdk/Javonet.d.ts +63 -0
  107. package/dist/types/sdk/RuntimeContext.d.ts +103 -0
  108. package/dist/types/sdk/RuntimeFactory.d.ts +58 -0
  109. package/dist/types/sdk/tools/browser/ConfigSourceResolver.d.ts +46 -0
  110. package/dist/types/sdk/tools/browser/SdkExceptionHelper.d.ts +7 -0
  111. package/dist/types/sdk/tools/nodejs/JsonFileResolver.d.ts +13 -0
  112. package/dist/types/sdk/tools/nodejs/SdkExceptionHelper.d.ts +6 -0
  113. package/dist/types/utils/Command.d.ts +42 -0
  114. package/dist/types/utils/CommandType.d.ts +44 -0
  115. package/dist/types/utils/ConnectionType.d.ts +5 -0
  116. package/dist/types/utils/CustomError.d.ts +3 -0
  117. package/dist/types/utils/ExceptionType.d.ts +10 -0
  118. package/dist/types/utils/Runtime.d.ts +24 -0
  119. package/dist/types/utils/RuntimeLogger.d.ts +5 -0
  120. package/dist/types/utils/RuntimeLoggerBrowser.d.ts +15 -0
  121. package/dist/types/utils/RuntimeName.d.ts +13 -0
  122. package/dist/types/utils/RuntimeNameHandler.d.ts +7 -0
  123. package/dist/types/utils/StringEncodingMode.d.ts +6 -0
  124. package/dist/types/utils/Type.d.ts +14 -0
  125. package/dist/types/utils/connectionData/IConnectionData.d.ts +5 -0
  126. package/dist/types/utils/connectionData/InMemoryConnectionData.d.ts +16 -0
  127. package/dist/types/utils/connectionData/WsConnectionData.d.ts +31 -0
  128. package/dist/types/utils/exception/ExceptionSerializer.d.ts +6 -0
  129. package/dist/types/utils/exception/ExceptionThrower.d.ts +4 -0
  130. package/dist/types/utils/guid/generateGuid.d.ts +1 -0
  131. package/dist/types/utils/nodejs/TypesConverter.d.ts +48 -0
  132. package/dist/types/utils/nodejs/connectionData/TcpConnectionData.d.ts +25 -0
  133. package/dist/types/utils/nodejs/uuid/REGEX.d.ts +1 -0
  134. package/dist/types/utils/nodejs/uuid/rng.d.ts +1 -0
  135. package/dist/types/utils/nodejs/uuid/stringify.d.ts +1 -0
  136. package/dist/types/utils/nodejs/uuid/v4.d.ts +1 -0
  137. package/dist/types/utils/nodejs/uuid/validate.d.ts +1 -0
  138. package/dist/utils/Command.cjs +87 -0
  139. package/dist/utils/CommandType.cjs +74 -0
  140. package/dist/utils/ConnectionType.cjs +35 -0
  141. package/dist/utils/CustomError.cjs +33 -0
  142. package/dist/utils/ExceptionType.cjs +40 -0
  143. package/dist/utils/Runtime.cjs +103 -0
  144. package/dist/utils/RuntimeLogger.cjs +63 -0
  145. package/dist/utils/RuntimeLoggerBrowser.cjs +58 -0
  146. package/dist/utils/RuntimeName.cjs +43 -0
  147. package/dist/utils/RuntimeNameHandler.cjs +62 -0
  148. package/dist/utils/StringEncodingMode.cjs +36 -0
  149. package/dist/utils/Type.cjs +44 -0
  150. package/dist/utils/connectionData/IConnectionData.cjs +38 -0
  151. package/dist/utils/connectionData/InMemoryConnectionData.cjs +52 -0
  152. package/dist/utils/connectionData/WsConnectionData.cjs +61 -0
  153. package/dist/utils/exception/ExceptionSerializer.cjs +82 -0
  154. package/dist/utils/exception/ExceptionThrower.cjs +111 -0
  155. package/dist/utils/guid/generateGuid.cjs +34 -0
  156. package/dist/utils/nodejs/TypesConverter.cjs +102 -0
  157. package/dist/utils/nodejs/connectionData/TcpConnectionData.cjs +111 -0
  158. package/dist/utils/nodejs/uuid/REGEX.cjs +28 -0
  159. package/dist/utils/nodejs/uuid/rng.cjs +47 -0
  160. package/dist/utils/nodejs/uuid/stringify.cjs +39 -0
  161. package/dist/utils/nodejs/uuid/v4.cjs +43 -0
  162. package/dist/utils/nodejs/uuid/validate.cjs +31 -0
  163. package/lib/core/delegatesCache/DelegatesCache.js +37 -0
  164. package/lib/core/handler/AbstractHandler.js +2 -2
  165. package/lib/core/handler/ArrayGetItemHandler.js +2 -2
  166. package/lib/core/handler/ArrayGetRankHandler.js +2 -2
  167. package/lib/core/handler/ArrayGetSizeHandler.js +2 -2
  168. package/lib/core/handler/ArrayHandler.js +2 -2
  169. package/lib/core/handler/ArraySetItemHandler.js +2 -2
  170. package/lib/core/handler/CastingHandler.js +2 -2
  171. package/lib/core/handler/ConvertTypeHandler.js +3 -3
  172. package/lib/core/handler/CreateClassInstanceHandler.js +4 -2
  173. package/lib/core/handler/DestructReferenceHandler.js +3 -3
  174. package/lib/core/handler/EnableNamespaceHandler.js +3 -3
  175. package/lib/core/handler/EnableTypeHandler.js +3 -3
  176. package/lib/core/handler/GetGlobalStaticFieldHandler.js +2 -2
  177. package/lib/core/handler/GetInstanceFieldHandler.js +2 -2
  178. package/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +2 -2
  179. package/lib/core/handler/GetStaticFieldHandler.js +3 -2
  180. package/lib/core/handler/GetStaticMethodAsDelegateHandler.js +2 -3
  181. package/lib/core/handler/GetTypeHandler.js +16 -7
  182. package/lib/core/handler/Handler.js +91 -60
  183. package/lib/core/handler/InvokeDelegateHandler.js +4 -4
  184. package/lib/core/handler/InvokeGlobalFunctionHandler.js +3 -5
  185. package/lib/core/handler/InvokeInstanceMethodHandler.js +2 -2
  186. package/lib/core/handler/InvokeStaticMethodHandler.js +2 -2
  187. package/lib/core/handler/LoadLibraryHandler.js +7 -4
  188. package/lib/core/handler/PassDelegateHandler.js +38 -24
  189. package/lib/core/handler/ResolveReferenceHandler.js +13 -3
  190. package/lib/core/handler/SetGlobalStaticFieldHandler.js +2 -2
  191. package/lib/core/handler/SetInstanceFieldHandler.js +2 -2
  192. package/lib/core/handler/SetStaticFieldHandler.js +2 -2
  193. package/lib/core/handler/ValueHandler.js +2 -2
  194. package/lib/core/interpreter/Interpreter.js +164 -0
  195. package/lib/core/namespaceCache/NamespaceCache.js +1 -1
  196. package/lib/core/protocol/CommandDeserializer.js +180 -0
  197. package/lib/core/protocol/CommandSerializer.js +48 -0
  198. package/lib/core/protocol/TypeDeserializer.js +81 -0
  199. package/lib/core/protocol/TypeSerializer.js +143 -0
  200. package/lib/core/receiver/Receiver.js +17 -8
  201. package/lib/core/receiver/ReceiverNative.js +2 -2
  202. package/lib/core/referenceCache/ReferencesCache.js +27 -4
  203. package/lib/core/transmitter/Transmitter.js +6 -8
  204. package/lib/core/transmitter/TransmitterWebsocket.js +2 -6
  205. package/lib/core/transmitter/TransmitterWebsocketBrowser.js +39 -0
  206. package/lib/core/transmitter/TransmitterWrapper.js +26 -13
  207. package/lib/core/typeCache/TypeCache.js +1 -1
  208. package/lib/core/webSocketClient/WebSocketClient.js +56 -24
  209. package/lib/core/webSocketClient/WebSocketClientBrowser.js +174 -0
  210. package/lib/declarations.d.ts +35 -0
  211. package/lib/sdk/ConfigRuntimeFactory.js +108 -58
  212. package/lib/sdk/InvocationContext.js +487 -0
  213. package/lib/sdk/Javonet.js +63 -29
  214. package/lib/sdk/RuntimeContext.js +289 -0
  215. package/lib/sdk/RuntimeFactory.js +12 -5
  216. package/lib/sdk/tools/browser/ConfigSourceResolver.js +146 -0
  217. package/lib/sdk/tools/browser/SdkExceptionHelper.js +20 -0
  218. package/lib/sdk/tools/nodejs/JsonFileResolver.js +106 -0
  219. package/lib/sdk/tools/nodejs/SdkExceptionHelper.js +89 -0
  220. package/lib/utils/Command.js +67 -0
  221. package/lib/utils/CommandType.js +45 -0
  222. package/lib/utils/ConnectionType.js +6 -0
  223. package/lib/utils/CustomError.js +6 -0
  224. package/lib/utils/ExceptionType.js +13 -0
  225. package/lib/utils/Runtime.js +94 -0
  226. package/lib/utils/RuntimeLogger.js +19 -9
  227. package/lib/utils/RuntimeLoggerBrowser.js +35 -0
  228. package/lib/utils/RuntimeName.js +14 -0
  229. package/lib/utils/RuntimeNameHandler.js +38 -0
  230. package/lib/utils/StringEncodingMode.js +7 -0
  231. package/lib/utils/Type.js +15 -0
  232. package/lib/utils/connectionData/IConnectionData.js +13 -0
  233. package/lib/utils/connectionData/InMemoryConnectionData.js +35 -0
  234. package/lib/utils/connectionData/WsConnectionData.js +48 -0
  235. package/lib/utils/exception/ExceptionSerializer.js +64 -0
  236. package/lib/utils/exception/ExceptionThrower.js +96 -0
  237. package/lib/utils/guid/generateGuid.js +9 -0
  238. package/lib/utils/nodejs/TypesConverter.js +91 -0
  239. package/lib/utils/nodejs/connectionData/TcpConnectionData.js +89 -0
  240. package/lib/utils/nodejs/uuid/REGEX.js +2 -0
  241. package/lib/utils/nodejs/uuid/rng.js +23 -0
  242. package/lib/utils/nodejs/uuid/stringify.js +51 -0
  243. package/lib/utils/nodejs/uuid/v4.js +26 -0
  244. package/lib/utils/nodejs/uuid/validate.js +7 -0
  245. package/package.json +59 -47
  246. package/Binaries/Clr/Javonet.Clr.Utils.dll +0 -0
  247. package/Binaries/Clr/JavonetClrRuntime.dll +0 -0
  248. package/Binaries/Jvm/JavonetJvmRuntime.jar +0 -0
  249. package/Binaries/Native/Linux/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  250. package/Binaries/Native/Linux/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  251. package/Binaries/Native/Linux/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  252. package/Binaries/Native/Linux/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  253. package/Binaries/Native/Linux/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  254. package/Binaries/Native/Linux/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  255. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  256. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  257. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  258. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  259. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  260. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  261. package/Binaries/Native/Linux/ARM64/libJavonetActivationService.so +0 -0
  262. package/Binaries/Native/Linux/ARM64/libJavonetCppRuntimeNative.so +0 -0
  263. package/Binaries/Native/Linux/ARM64/libJavonetGoRuntimeNative.so +0 -0
  264. package/Binaries/Native/Linux/ARM64/libJavonetJvmRuntimeNative.so +0 -0
  265. package/Binaries/Native/Linux/ARM64/libJavonetNetcoreRuntimeNative.so +0 -0
  266. package/Binaries/Native/Linux/ARM64/libJavonetPhpRuntimeNative.so +0 -0
  267. package/Binaries/Native/Linux/ARM64/libJavonetPythonRuntimeNative.so +0 -0
  268. package/Binaries/Native/Linux/ARM64/libJavonetRuby342RuntimeNative.so +0 -0
  269. package/Binaries/Native/Linux/ARM64/libJavonetRubyRuntimeNative.so +0 -0
  270. package/Binaries/Native/Linux/ARM64/libJavonetTcpClient.so +0 -0
  271. package/Binaries/Native/Linux/ARM64/libJavonetTcpTlsClient.so +0 -0
  272. package/Binaries/Native/Linux/ARM64/libUtils.so +0 -0
  273. package/Binaries/Native/Linux/ARM64/libnethost.so +0 -0
  274. package/Binaries/Native/Linux/ARM64/version.txt +0 -1
  275. package/Binaries/Native/Linux/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  276. package/Binaries/Native/Linux/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  277. package/Binaries/Native/Linux/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  278. package/Binaries/Native/Linux/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  279. package/Binaries/Native/Linux/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  280. package/Binaries/Native/Linux/X64/NetVersionLatest.runtimeconfig.json +0 -10
  281. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  282. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  283. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  284. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  285. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  286. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  287. package/Binaries/Native/Linux/X64/libJavonetActivationService.so +0 -0
  288. package/Binaries/Native/Linux/X64/libJavonetCppRuntimeNative.so +0 -0
  289. package/Binaries/Native/Linux/X64/libJavonetGoRuntimeNative.so +0 -0
  290. package/Binaries/Native/Linux/X64/libJavonetJvmRuntimeNative.so +0 -0
  291. package/Binaries/Native/Linux/X64/libJavonetNetcoreRuntimeNative.so +0 -0
  292. package/Binaries/Native/Linux/X64/libJavonetNodejs1816RuntimeNative.so +0 -0
  293. package/Binaries/Native/Linux/X64/libJavonetNodejsRuntimeNative.so +0 -0
  294. package/Binaries/Native/Linux/X64/libJavonetPerlRuntimeNative.so +0 -0
  295. package/Binaries/Native/Linux/X64/libJavonetPhpRuntimeNative.so +0 -0
  296. package/Binaries/Native/Linux/X64/libJavonetPython2RuntimeNative.so +0 -0
  297. package/Binaries/Native/Linux/X64/libJavonetPythonRuntimeNative.so +0 -0
  298. package/Binaries/Native/Linux/X64/libJavonetRuby278RuntimeNative.so +0 -0
  299. package/Binaries/Native/Linux/X64/libJavonetRuby342RuntimeNative.so +0 -0
  300. package/Binaries/Native/Linux/X64/libJavonetRubyRuntimeNative.so +0 -0
  301. package/Binaries/Native/Linux/X64/libJavonetTcpClient.so +0 -0
  302. package/Binaries/Native/Linux/X64/libJavonetTcpTlsClient.so +0 -0
  303. package/Binaries/Native/Linux/X64/libUtils.so +0 -0
  304. package/Binaries/Native/Linux/X64/libnethost.so +0 -0
  305. package/Binaries/Native/Linux/X64/libnode.so.108 +0 -0
  306. package/Binaries/Native/Linux/X64/libperl.so.5.34.0 +0 -0
  307. package/Binaries/Native/Linux/X64/libpython2.7.so.1.0 +0 -0
  308. package/Binaries/Native/Linux/X64/libruby.so.2.7.8 +0 -0
  309. package/Binaries/Native/Linux/X64/libruby.so.3.4.2 +0 -0
  310. package/Binaries/Native/Linux/X64/version.txt +0 -1
  311. package/Binaries/Native/MacOs/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  312. package/Binaries/Native/MacOs/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  313. package/Binaries/Native/MacOs/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  314. package/Binaries/Native/MacOs/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  315. package/Binaries/Native/MacOs/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  316. package/Binaries/Native/MacOs/X64/NetVersionLatest.runtimeconfig.json +0 -10
  317. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  318. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  319. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  320. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  321. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  322. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  323. package/Binaries/Native/MacOs/X64/libJavonetActivationService.dylib +0 -0
  324. package/Binaries/Native/MacOs/X64/libJavonetCppRuntimeNative.dylib +0 -0
  325. package/Binaries/Native/MacOs/X64/libJavonetGoRuntimeNative.dylib +0 -0
  326. package/Binaries/Native/MacOs/X64/libJavonetJvmRuntimeNative.dylib +0 -0
  327. package/Binaries/Native/MacOs/X64/libJavonetNetcoreRuntimeNative.dylib +0 -0
  328. package/Binaries/Native/MacOs/X64/libJavonetNodejs1816RuntimeNative.dylib +0 -0
  329. package/Binaries/Native/MacOs/X64/libJavonetNodejsRuntimeNative.dylib +0 -0
  330. package/Binaries/Native/MacOs/X64/libJavonetPhpRuntimeNative.dylib +0 -0
  331. package/Binaries/Native/MacOs/X64/libJavonetPythonRuntimeNative.dylib +0 -0
  332. package/Binaries/Native/MacOs/X64/libJavonetRuby278RuntimeNative.dylib +0 -0
  333. package/Binaries/Native/MacOs/X64/libJavonetRuby342RuntimeNative.dylib +0 -0
  334. package/Binaries/Native/MacOs/X64/libJavonetRubyRuntimeNative.dylib +0 -0
  335. package/Binaries/Native/MacOs/X64/libJavonetTcpClient.dylib +0 -0
  336. package/Binaries/Native/MacOs/X64/libJavonetTcpTlsClient.dylib +0 -0
  337. package/Binaries/Native/MacOs/X64/libUtils.dylib +0 -0
  338. package/Binaries/Native/MacOs/X64/libnethost.dylib +0 -0
  339. package/Binaries/Native/MacOs/X64/libnode.108.dylib +0 -0
  340. package/Binaries/Native/MacOs/X64/libruby.2.7.dylib +0 -0
  341. package/Binaries/Native/MacOs/X64/libruby.3.4.dylib +0 -0
  342. package/Binaries/Native/MacOs/X64/version.txt +0 -1
  343. package/Binaries/Native/Windows/ARM64/JavonetActivationService.dll +0 -0
  344. package/Binaries/Native/Windows/ARM64/JavonetCppRuntimeNative.dll +0 -0
  345. package/Binaries/Native/Windows/ARM64/JavonetGoRuntimeNative.dll +0 -0
  346. package/Binaries/Native/Windows/ARM64/JavonetJvmRuntimeNative.dll +0 -0
  347. package/Binaries/Native/Windows/ARM64/JavonetNetcoreRuntimeNative.dll +0 -0
  348. package/Binaries/Native/Windows/ARM64/JavonetPhpRuntimeNative.dll +0 -0
  349. package/Binaries/Native/Windows/ARM64/JavonetPythonRuntimeNative.dll +0 -0
  350. package/Binaries/Native/Windows/ARM64/JavonetRuby278RuntimeNative.dll +0 -0
  351. package/Binaries/Native/Windows/ARM64/JavonetRubyRuntimeNative.dll +0 -0
  352. package/Binaries/Native/Windows/ARM64/JavonetTcpClient.dll +0 -0
  353. package/Binaries/Native/Windows/ARM64/JavonetTcpTlsClient.dll +0 -0
  354. package/Binaries/Native/Windows/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  355. package/Binaries/Native/Windows/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  356. package/Binaries/Native/Windows/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  357. package/Binaries/Native/Windows/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  358. package/Binaries/Native/Windows/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  359. package/Binaries/Native/Windows/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  360. package/Binaries/Native/Windows/ARM64/Utils.dll +0 -0
  361. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  362. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  363. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  364. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  365. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  366. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  367. package/Binaries/Native/Windows/ARM64/libcrypto-3-arm64.dll +0 -0
  368. package/Binaries/Native/Windows/ARM64/libssl-3-arm64.dll +0 -0
  369. package/Binaries/Native/Windows/ARM64/libxml2.dll +0 -0
  370. package/Binaries/Native/Windows/ARM64/libxmlsec-openssl.dll +0 -0
  371. package/Binaries/Native/Windows/ARM64/libxmlsec.dll +0 -0
  372. package/Binaries/Native/Windows/ARM64/libxslt.dll +0 -0
  373. package/Binaries/Native/Windows/ARM64/nethost.dll +0 -0
  374. package/Binaries/Native/Windows/ARM64/version.txt +0 -0
  375. package/Binaries/Native/Windows/X64/JavonetActivationService.dll +0 -0
  376. package/Binaries/Native/Windows/X64/JavonetClrRuntimeNative.dll +0 -0
  377. package/Binaries/Native/Windows/X64/JavonetCppRuntimeNative.dll +0 -0
  378. package/Binaries/Native/Windows/X64/JavonetGoRuntimeNative.dll +0 -0
  379. package/Binaries/Native/Windows/X64/JavonetJvmRuntimeNative.dll +0 -0
  380. package/Binaries/Native/Windows/X64/JavonetNetcoreRuntimeNative.dll +0 -0
  381. package/Binaries/Native/Windows/X64/JavonetNodejs1816RuntimeNative.dll +0 -0
  382. package/Binaries/Native/Windows/X64/JavonetNodejsRuntimeNative.dll +0 -0
  383. package/Binaries/Native/Windows/X64/JavonetPerl532RuntimeNativeAuxiliary.dll +0 -0
  384. package/Binaries/Native/Windows/X64/JavonetPerl540RuntimeNativeAuxiliary.dll +0 -0
  385. package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNative.dll +0 -0
  386. package/Binaries/Native/Windows/X64/JavonetPhpRuntimeNative.dll +0 -0
  387. package/Binaries/Native/Windows/X64/JavonetPython2RuntimeNative.dll +0 -0
  388. package/Binaries/Native/Windows/X64/JavonetPythonRuntimeNative.dll +0 -0
  389. package/Binaries/Native/Windows/X64/JavonetRuby278RuntimeNative.dll +0 -0
  390. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNative.dll +0 -0
  391. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNativeAuxiliary.dll +0 -0
  392. package/Binaries/Native/Windows/X64/JavonetTcpClient.dll +0 -0
  393. package/Binaries/Native/Windows/X64/JavonetTcpTlsClient.dll +0 -0
  394. package/Binaries/Native/Windows/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  395. package/Binaries/Native/Windows/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  396. package/Binaries/Native/Windows/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  397. package/Binaries/Native/Windows/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  398. package/Binaries/Native/Windows/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  399. package/Binaries/Native/Windows/X64/NetVersionLatest.runtimeconfig.json +0 -10
  400. package/Binaries/Native/Windows/X64/Utils.dll +0 -0
  401. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  402. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  403. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  404. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  405. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  406. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  407. package/Binaries/Native/Windows/X64/libcrypto-3-x64.dll +0 -0
  408. package/Binaries/Native/Windows/X64/libnode.dll +0 -0
  409. package/Binaries/Native/Windows/X64/libssl-3-x64.dll +0 -0
  410. package/Binaries/Native/Windows/X64/libxml2.dll +0 -0
  411. package/Binaries/Native/Windows/X64/libxmlsec-openssl.dll +0 -0
  412. package/Binaries/Native/Windows/X64/libxmlsec.dll +0 -0
  413. package/Binaries/Native/Windows/X64/libxslt.dll +0 -0
  414. package/Binaries/Native/Windows/X64/nethost.dll +0 -0
  415. package/Binaries/Native/Windows/X64/python27.dll +0 -0
  416. package/Binaries/Native/Windows/X64/version.txt +0 -1
  417. package/Binaries/Native/Windows/X64/x64-msvcrt-ruby270.dll +0 -0
  418. package/Binaries/Native/Windows/X64/x64-ucrt-ruby340.dll +0 -0
  419. package/Binaries/Native/Windows/X86/JavonetActivationService.dll +0 -0
  420. package/Binaries/Native/Windows/X86/JavonetClrRuntimeNative.dll +0 -0
  421. package/Binaries/Native/Windows/X86/JavonetCppRuntimeNative.dll +0 -0
  422. package/Binaries/Native/Windows/X86/JavonetGoRuntimeNative.dll +0 -0
  423. package/Binaries/Native/Windows/X86/JavonetJvmRuntimeNative.dll +0 -0
  424. package/Binaries/Native/Windows/X86/JavonetNetcoreRuntimeNative.dll +0 -0
  425. package/Binaries/Native/Windows/X86/JavonetPhpRuntimeNative.dll +0 -0
  426. package/Binaries/Native/Windows/X86/JavonetPython2RuntimeNative.dll +0 -0
  427. package/Binaries/Native/Windows/X86/JavonetPythonRuntimeNative.dll +0 -0
  428. package/Binaries/Native/Windows/X86/JavonetTcpClient.dll +0 -0
  429. package/Binaries/Native/Windows/X86/JavonetTcpTlsClient.dll +0 -0
  430. package/Binaries/Native/Windows/X86/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  431. package/Binaries/Native/Windows/X86/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  432. package/Binaries/Native/Windows/X86/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  433. package/Binaries/Native/Windows/X86/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  434. package/Binaries/Native/Windows/X86/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  435. package/Binaries/Native/Windows/X86/NetVersionLatest.runtimeconfig.json +0 -10
  436. package/Binaries/Native/Windows/X86/Utils.dll +0 -0
  437. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  438. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  439. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  440. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  441. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  442. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  443. package/Binaries/Native/Windows/X86/libcrypto-3.dll +0 -0
  444. package/Binaries/Native/Windows/X86/libssl-3.dll +0 -0
  445. package/Binaries/Native/Windows/X86/libxml2.dll +0 -0
  446. package/Binaries/Native/Windows/X86/libxmlsec-openssl.dll +0 -0
  447. package/Binaries/Native/Windows/X86/libxmlsec.dll +0 -0
  448. package/Binaries/Native/Windows/X86/libxslt.dll +0 -0
  449. package/Binaries/Native/Windows/X86/nethost.dll +0 -0
  450. package/Binaries/Native/Windows/X86/version.txt +0 -1
  451. package/Binaries/Netcore/Javonet.Netcore.Core.dll +0 -0
  452. package/Binaries/Netcore/Javonet.Netcore.Utils.dll +0 -0
  453. package/Binaries/Nodejs/index.js +0 -66
  454. package/Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache.js +0 -35
  455. package/Binaries/Nodejs/lib/core/handler/AbstractHandler.js +0 -41
  456. package/Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler.js +0 -38
  457. package/Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler.js +0 -28
  458. package/Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  459. package/Binaries/Nodejs/lib/core/handler/ArrayHandler.js +0 -18
  460. package/Binaries/Nodejs/lib/core/handler/ArraySetItemHandler.js +0 -43
  461. package/Binaries/Nodejs/lib/core/handler/CastingHandler.js +0 -10
  462. package/Binaries/Nodejs/lib/core/handler/ConvertTypeHandler.js +0 -38
  463. package/Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  464. package/Binaries/Nodejs/lib/core/handler/DestructReferenceHandler.js +0 -19
  465. package/Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler.js +0 -34
  466. package/Binaries/Nodejs/lib/core/handler/EnableTypeHandler.js +0 -35
  467. package/Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  468. package/Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  469. package/Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  470. package/Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler.js +0 -36
  471. package/Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  472. package/Binaries/Nodejs/lib/core/handler/GetTypeHandler.js +0 -63
  473. package/Binaries/Nodejs/lib/core/handler/Handler.js +0 -98
  474. package/Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler.js +0 -36
  475. package/Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  476. package/Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  477. package/Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  478. package/Binaries/Nodejs/lib/core/handler/LoadLibraryHandler.js +0 -48
  479. package/Binaries/Nodejs/lib/core/handler/PassDelegateHandler.js +0 -157
  480. package/Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler.js +0 -13
  481. package/Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  482. package/Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  483. package/Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler.js +0 -33
  484. package/Binaries/Nodejs/lib/core/handler/ValueHandler.js +0 -13
  485. package/Binaries/Nodejs/lib/core/interpreter/Interpreter.js +0 -142
  486. package/Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache.js +0 -39
  487. package/Binaries/Nodejs/lib/core/protocol/CommandDeserializer.js +0 -181
  488. package/Binaries/Nodejs/lib/core/protocol/CommandSerializer.js +0 -50
  489. package/Binaries/Nodejs/lib/core/protocol/TypeDeserializer.js +0 -83
  490. package/Binaries/Nodejs/lib/core/protocol/TypeSerializer.js +0 -143
  491. package/Binaries/Nodejs/lib/core/receiver/Receiver.js +0 -32
  492. package/Binaries/Nodejs/lib/core/receiver/ReceiverNative.js +0 -13
  493. package/Binaries/Nodejs/lib/core/referenceCache/ReferencesCache.js +0 -30
  494. package/Binaries/Nodejs/lib/core/transmitter/Transmitter.js +0 -21
  495. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  496. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper.js +0 -47
  497. package/Binaries/Nodejs/lib/core/typeCache/TypeCache.js +0 -39
  498. package/Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient.js +0 -136
  499. package/Binaries/Nodejs/lib/declarations.d.ts +0 -64
  500. package/Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory.js +0 -155
  501. package/Binaries/Nodejs/lib/sdk/InvocationContext.js +0 -485
  502. package/Binaries/Nodejs/lib/sdk/Javonet.js +0 -105
  503. package/Binaries/Nodejs/lib/sdk/RuntimeContext.js +0 -300
  504. package/Binaries/Nodejs/lib/sdk/RuntimeFactory.js +0 -87
  505. package/Binaries/Nodejs/lib/sdk/tools/JsonFileResolver.js +0 -101
  506. package/Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  507. package/Binaries/Nodejs/lib/utils/Command.js +0 -69
  508. package/Binaries/Nodejs/lib/utils/CommandType.js +0 -47
  509. package/Binaries/Nodejs/lib/utils/ConnectionType.js +0 -8
  510. package/Binaries/Nodejs/lib/utils/CustomError.js +0 -8
  511. package/Binaries/Nodejs/lib/utils/ExceptionType.js +0 -13
  512. package/Binaries/Nodejs/lib/utils/RuntimeLogger.js +0 -30
  513. package/Binaries/Nodejs/lib/utils/RuntimeName.js +0 -16
  514. package/Binaries/Nodejs/lib/utils/RuntimeNameHandler.js +0 -38
  515. package/Binaries/Nodejs/lib/utils/StringEncodingMode.js +0 -9
  516. package/Binaries/Nodejs/lib/utils/Type.js +0 -17
  517. package/Binaries/Nodejs/lib/utils/TypesConverter.js +0 -91
  518. package/Binaries/Nodejs/lib/utils/connectionData/IConnectionData.js +0 -15
  519. package/Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  520. package/Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData.js +0 -77
  521. package/Binaries/Nodejs/lib/utils/connectionData/WsConnectionData.js +0 -50
  522. package/Binaries/Nodejs/lib/utils/exception/ExceptionSerializer.js +0 -64
  523. package/Binaries/Nodejs/lib/utils/exception/ExceptionThrower.js +0 -95
  524. package/Binaries/Nodejs/lib/utils/guid/generateGuid.js +0 -9
  525. package/Binaries/Nodejs/lib/utils/uuid/REGEX.js +0 -2
  526. package/Binaries/Nodejs/lib/utils/uuid/rng.js +0 -12
  527. package/Binaries/Nodejs/lib/utils/uuid/stringify.js +0 -51
  528. package/Binaries/Nodejs/lib/utils/uuid/v4.js +0 -27
  529. package/Binaries/Nodejs/lib/utils/uuid/validate.js +0 -6
  530. package/Binaries/Perl/Linux/X64/deps/bin/moose-outdated +0 -22
  531. package/Binaries/Perl/Linux/X64/deps/bin/package-stash-conflicts +0 -22
  532. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-events +0 -62
  533. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-highlight +0 -54
  534. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load +0 -155
  535. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load-dump +0 -314
  536. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-parse-emit +0 -123
  537. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  538. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  539. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  540. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  541. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  542. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  543. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Capture/Tiny.pm +0 -917
  544. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load/PP.pm +0 -59
  545. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load.pm +0 -420
  546. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  547. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  548. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  549. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/OptList.pm +0 -416
  550. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/GlobalDestruction.pm +0 -110
  551. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/OverloadInfo.pm +0 -309
  552. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace/Frame.pm +0 -272
  553. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace.pm +0 -624
  554. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Eval/Closure.pm +0 -379
  555. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config/MakeMaker.pm +0 -141
  556. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config.pm +0 -152
  557. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Unix.pm +0 -97
  558. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/VMS.pm +0 -118
  559. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Windows.pm +0 -125
  560. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers.pm +0 -122
  561. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/InstallPaths.pm +0 -627
  562. package/Binaries/Perl/Linux/X64/deps/lib/perl5/FFI/CheckLib.pm +0 -856
  563. package/Binaries/Perl/Linux/X64/deps/lib/perl5/File/Which.pm +0 -398
  564. package/Binaries/Perl/Linux/X64/deps/lib/perl5/IPC/System/Simple.pm +0 -1115
  565. package/Binaries/Perl/Linux/X64/deps/lib/perl5/MRO/Compat.pm +0 -407
  566. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Implementation.pm +0 -290
  567. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime/Conflicts.pm +0 -105
  568. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime.pm +0 -520
  569. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  570. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  571. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  572. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  573. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  574. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  575. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  576. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  577. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  578. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  579. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  580. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  581. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  582. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  583. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  584. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  585. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  586. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  587. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  588. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  589. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  590. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  591. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  592. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  593. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  594. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  595. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  596. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  597. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  598. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  599. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  600. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  601. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  602. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  603. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  604. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  605. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  606. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  607. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  608. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  609. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  610. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  611. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  612. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  613. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  614. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  615. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  616. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  617. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  618. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  619. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  620. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  621. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  622. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  623. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  624. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  625. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  626. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  627. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  628. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  629. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  630. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  631. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  632. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  633. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  634. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  635. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  636. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  637. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  638. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  639. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  640. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  641. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  642. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  643. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  644. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  645. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  646. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  647. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  648. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  649. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  650. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  651. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  652. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  653. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  654. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  655. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  656. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  657. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  658. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  659. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  660. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  661. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  662. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  663. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  664. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI.pm +0 -822
  665. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/DeprecationManager.pm +0 -368
  666. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/Conflicts.pm +0 -35
  667. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/PP.pm +0 -503
  668. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash.pm +0 -308
  669. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Path/Tiny.pm +0 -3946
  670. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  671. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Scope/Guard.pm +0 -183
  672. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Cookbook.pod +0 -602
  673. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Progressive.pm +0 -174
  674. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Tutorial.pod +0 -539
  675. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Util.pm +0 -488
  676. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter.pm +0 -1769
  677. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Install.pm +0 -486
  678. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Task/Weaken.pm +0 -95
  679. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  680. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Try/Tiny.pm +0 -820
  681. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  682. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  683. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  684. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  685. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  686. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  687. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  688. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  689. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  690. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  691. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  692. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  693. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  694. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  695. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  696. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  697. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  698. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  699. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  700. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  701. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  702. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  703. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  704. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  705. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  706. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  707. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  708. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  709. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  710. package/Binaries/Perl/Linux/X64/deps/lib/perl5/aliased.pm +0 -371
  711. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  712. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/install.json +0 -1
  713. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/MYMETA.json +0 -124
  714. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/install.json +0 -1
  715. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/MYMETA.json +0 -1290
  716. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/install.json +0 -1
  717. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/MYMETA.json +0 -1222
  718. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/install.json +0 -1
  719. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  720. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/install.json +0 -1
  721. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/MYMETA.json +0 -570
  722. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/install.json +0 -1
  723. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  724. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/install.json +0 -1
  725. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/MYMETA.json +0 -65
  726. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/install.json +0 -1
  727. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/MYMETA.json +0 -73
  728. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/install.json +0 -1
  729. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/MYMETA.json +0 -1081
  730. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/install.json +0 -1
  731. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/MYMETA.json +0 -463
  732. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/install.json +0 -1
  733. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/MYMETA.json +0 -599
  734. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/install.json +0 -1
  735. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/MYMETA.json +0 -79
  736. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/install.json +0 -1
  737. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/MYMETA.json +0 -89
  738. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/install.json +0 -1
  739. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/MYMETA.json +0 -76
  740. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/install.json +0 -1
  741. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/MYMETA.json +0 -156
  742. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/install.json +0 -1
  743. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/MYMETA.json +0 -198
  744. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/install.json +0 -1
  745. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/MYMETA.json +0 -81
  746. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/install.json +0 -1
  747. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/MYMETA.json +0 -69
  748. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/install.json +0 -1
  749. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/MYMETA.json +0 -66
  750. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/install.json +0 -1
  751. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/MYMETA.json +0 -122
  752. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/install.json +0 -1
  753. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/MYMETA.json +0 -625
  754. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/install.json +0 -1
  755. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/MYMETA.json +0 -83
  756. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/install.json +0 -1
  757. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/MYMETA.json +0 -1162
  758. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/install.json +0 -1
  759. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/MYMETA.json +0 -3189
  760. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/install.json +0 -1
  761. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  762. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/install.json +0 -1
  763. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/MYMETA.json +0 -1115
  764. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/install.json +0 -1
  765. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  766. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/install.json +0 -1
  767. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/MYMETA.json +0 -1069
  768. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/install.json +0 -1
  769. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/MYMETA.json +0 -1371
  770. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/install.json +0 -1
  771. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/MYMETA.json +0 -1331
  772. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/install.json +0 -1
  773. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/MYMETA.json +0 -89
  774. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/install.json +0 -1
  775. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/MYMETA.json +0 -186
  776. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/install.json +0 -1
  777. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  778. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/install.json +0 -1
  779. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  780. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  781. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/MYMETA.json +0 -53
  782. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/install.json +0 -1
  783. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/MYMETA.json +0 -595
  784. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/install.json +0 -1
  785. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/MYMETA.json +0 -55
  786. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/install.json +0 -1
  787. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/MYMETA.json +0 -572
  788. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/install.json +0 -1
  789. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/MYMETA.json +0 -1092
  790. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/install.json +0 -1
  791. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  792. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/install.json +0 -1
  793. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/MYMETA.json +0 -1344
  794. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/install.json +0 -1
  795. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/MYMETA.json +0 -40
  796. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/install.json +0 -1
  797. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  798. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/install.json +0 -1
  799. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/MYMETA.json +0 -1035
  800. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/install.json +0 -1
  801. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  802. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/install.json +0 -1
  803. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/Load/XS.pm +0 -89
  804. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Attribute.pm +0 -1100
  805. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class/Immutable/Trait.pm +0 -172
  806. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class.pm +0 -2312
  807. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Deprecated.pm +0 -95
  808. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Instance.pm +0 -533
  809. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Accessor.pm +0 -404
  810. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Constructor.pm +0 -251
  811. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Generated.pm +0 -142
  812. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Inlined.pm +0 -191
  813. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Meta.pm +0 -169
  814. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Wrapped.pm +0 -333
  815. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method.pm +0 -356
  816. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/MiniTrait.pm +0 -113
  817. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/AttributeCore.pm +0 -125
  818. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasAttributes.pm +0 -171
  819. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasMethods.pm +0 -304
  820. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasOverloads.pm +0 -243
  821. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin.pm +0 -107
  822. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Module.pm +0 -209
  823. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Object.pm +0 -196
  824. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Overload.pm +0 -340
  825. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Package.pm +0 -460
  826. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP.pm +0 -1222
  827. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Data/UUID.pm +0 -158
  828. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Build.pm +0 -634
  829. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/API.pm +0 -293
  830. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Buffer.pm +0 -366
  831. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Bundle.pm +0 -795
  832. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Closure.pm +0 -199
  833. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Constant.pm +0 -246
  834. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/DL.pm +0 -231
  835. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Function.pm +0 -229
  836. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Internal.pm +0 -96
  837. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/ASM.pm +0 -126
  838. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/C.pm +0 -123
  839. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/Win32.pm +0 -457
  840. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang.pm +0 -141
  841. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Legacy.pm +0 -140
  842. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Memory.pm +0 -268
  843. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/Meta.pm +0 -148
  844. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/TieArray.pm +0 -174
  845. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record.pm +0 -575
  846. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/ShareConfig.pm +0 -122
  847. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/PointerSizeBuffer.pm +0 -162
  848. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringArray.pm +0 -272
  849. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringPointer.pm +0 -190
  850. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/WideString.pm +0 -529
  851. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type.pm +0 -1399
  852. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version0.pm +0 -285
  853. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version1.pm +0 -390
  854. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version2.pm +0 -115
  855. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser.pm +0 -183
  856. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus.pm +0 -3302
  857. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Builder.pm +0 -538
  858. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Result.pm +0 -134
  859. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner.pm +0 -204
  860. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe.pm +0 -715
  861. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Temp.pm +0 -147
  862. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/typemap +0 -46
  863. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Conflicts.pm +0 -132
  864. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod +0 -384
  865. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod +0 -397
  866. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod +0 -176
  867. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Company_Subtypes.pod +0 -615
  868. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod +0 -127
  869. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Document_AugmentAndInner.pod +0 -197
  870. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod +0 -318
  871. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod +0 -345
  872. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Immutable.pod +0 -99
  873. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod +0 -180
  874. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod +0 -489
  875. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod +0 -153
  876. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/ExtensionOverview.pod +0 -404
  877. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod +0 -160
  878. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod +0 -172
  879. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod +0 -337
  880. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod +0 -132
  881. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod +0 -304
  882. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod +0 -325
  883. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod +0 -224
  884. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Table_MetaclassTrait.pod +0 -157
  885. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/WhyMeta.pod +0 -117
  886. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/ApplicationToInstance.pod +0 -191
  887. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Comparable_CodeReuse.pod +0 -379
  888. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod +0 -230
  889. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Keywords.pod +0 -240
  890. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Types.pod +0 -130
  891. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Style.pod +0 -77
  892. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook.pod +0 -289
  893. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Deprecated.pm +0 -98
  894. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AccessorMustReadWrite.pm +0 -14
  895. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +0 -19
  896. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +0 -19
  897. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +0 -19
  898. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ApplyTakesABlessedInstance.pm +0 -19
  899. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +0 -19
  900. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInRoles.pm +0 -32
  901. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInSummation.pm +0 -28
  902. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +0 -19
  903. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeIsRequired.pm +0 -45
  904. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +0 -19
  905. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeNamesDoNotMatch.pm +0 -25
  906. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotAnObject.pm +0 -28
  907. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotDefined.pm +0 -22
  908. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +0 -14
  909. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BadOptionFormat.pm +0 -25
  910. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +0 -19
  911. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderDoesNotExist.pm +0 -14
  912. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +0 -14
  913. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +0 -26
  914. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMustBeAMethodName.pm +0 -19
  915. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +0 -19
  916. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +0 -19
  917. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanExtendOnlyClasses.pm +0 -15
  918. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyConsumeRole.pm +0 -18
  919. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyWrapBlessedCode.pm +0 -25
  920. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASubclass.pm +0 -15
  921. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +0 -14
  922. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +0 -18
  923. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAsAnAttributeToARole.pm +0 -20
  924. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +0 -13
  925. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +0 -20
  926. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +0 -13
  927. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentNoSuperMethod.pm +0 -26
  928. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDerefWithoutIsa.pm +0 -14
  929. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +0 -14
  930. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCalculateNativeType.pm +0 -14
  931. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +0 -19
  932. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractMethod.pm +0 -12
  933. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAWeakRef.pm +0 -14
  934. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +0 -17
  935. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +0 -13
  936. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +0 -25
  937. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +0 -19
  938. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +0 -14
  939. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateWithoutIsa.pm +0 -13
  940. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindDelegateMetaclass.pm +0 -14
  941. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindType.pm +0 -19
  942. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +0 -33
  943. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFixMetaclassCompatibility.pm +0 -26
  944. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotGenerateInlineConstraint.pm +0 -30
  945. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +0 -30
  946. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInlineTypeConstraintCheck.pm +0 -14
  947. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotLocatePackageInINC.pm +0 -41
  948. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotMakeMetaclassCompatible.pm +0 -23
  949. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideALocalMethod.pm +0 -20
  950. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +0 -19
  951. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +0 -13
  952. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideNoSuperMethod.pm +0 -26
  953. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +0 -12
  954. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +0 -14
  955. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CircularReferenceInAlso.pm +0 -31
  956. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesNotHaveInitMeta.pm +0 -22
  957. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesTheExcludedRole.pm +0 -22
  958. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassNamesDoNotMatch.pm +0 -25
  959. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +0 -20
  960. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CodeBlockMustBeACodeRef.pm +0 -13
  961. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercingWithoutCoercions.pm +0 -12
  962. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionAlreadyExists.pm +0 -20
  963. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionNeedsTypeConstraint.pm +0 -14
  964. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +0 -22
  965. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +0 -16
  966. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +0 -12
  967. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateMethod.pm +0 -32
  968. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateWriter.pm +0 -24
  969. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalConstructor.pm +0 -34
  970. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalDestructor.pm +0 -34
  971. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +0 -20
  972. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +0 -26
  973. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +0 -14
  974. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotParseType.pm +0 -30
  975. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +0 -13
  976. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +0 -13
  977. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +0 -13
  978. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesArrayRefOfRoles.pm +0 -13
  979. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfAttributes.pm +0 -13
  980. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfMethods.pm +0 -13
  981. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +0 -33
  982. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +0 -20
  983. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +0 -20
  984. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +0 -14
  985. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DoesRequiresRoleName.pm +0 -13
  986. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  987. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumValuesMustBeString.pm +0 -26
  988. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ExtendsMissingArgs.pm +0 -13
  989. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/HandlesMustBeAHashRef.pm +0 -20
  990. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalInheritedOptions.pm +0 -23
  991. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +0 -31
  992. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +0 -27
  993. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm +0 -13
  994. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +0 -18
  995. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceBlessedIntoWrongClass.pm +0 -14
  996. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceMustBeABlessedReference.pm +0 -20
  997. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +0 -41
  998. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentToMethod.pm +0 -45
  999. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentsToTraitAliases.pm +0 -32
  1000. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1001. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHandleValue.pm +0 -20
  1002. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHasProvidedInARole.pm +0 -19
  1003. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidNameForType.pm +0 -17
  1004. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidOverloadOperator.pm +0 -21
  1005. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidRoleApplication.pm +0 -19
  1006. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeConstraint.pm +0 -24
  1007. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1008. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidValueForIs.pm +0 -14
  1009. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaDoesNotDoTheRole.pm +0 -14
  1010. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaLacksDoesMethod.pm +0 -14
  1011. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/LazyAttributeNeedsADefault.pm +0 -14
  1012. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Legacy.pm +0 -8
  1013. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +0 -19
  1014. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MatchActionMustBeACodeRef.pm +0 -28
  1015. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MessageParameterMustBeCodeRef.pm +0 -19
  1016. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +0 -24
  1017. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +0 -26
  1018. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +0 -23
  1019. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +0 -14
  1020. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +0 -14
  1021. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +0 -19
  1022. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassNotLoaded.pm +0 -14
  1023. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassTypeIncompatible.pm +0 -39
  1024. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectedAMetaclassObject.pm +0 -24
  1025. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsFewerArgs.pm +0 -27
  1026. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsMoreArgs.pm +0 -25
  1027. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodModifierNeedsMethodName.pm +0 -13
  1028. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameConflictInRoles.pm +0 -47
  1029. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +0 -20
  1030. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotGiven.pm +0 -13
  1031. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAMethodName.pm +0 -13
  1032. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnAttributeName.pm +0 -13
  1033. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnOverloadOperator.pm +0 -13
  1034. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +0 -19
  1035. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAHashOfOptions.pm +0 -19
  1036. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +0 -24
  1037. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +0 -19
  1038. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfArguments.pm +0 -25
  1039. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +0 -24
  1040. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustProvideANameForTheAttribute.pm +0 -19
  1041. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneMethod.pm +0 -13
  1042. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRole.pm +0 -13
  1043. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +0 -19
  1044. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +0 -19
  1045. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyADelegateToMethod.pm +0 -19
  1046. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMetaclass.pm +0 -20
  1047. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +0 -19
  1048. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +0 -19
  1049. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +0 -19
  1050. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +0 -13
  1051. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyPackageNameAndName.pm +0 -20
  1052. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +0 -25
  1053. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +0 -12
  1054. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +0 -12
  1055. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +0 -12
  1056. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +0 -12
  1057. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoAttributeFoundInSuperClass.pm +0 -14
  1058. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +0 -19
  1059. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoCasesMatched.pm +0 -27
  1060. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +0 -14
  1061. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoDestructorClassSpecified.pm +0 -13
  1062. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +0 -17
  1063. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoParentGivenToSubtype.pm +0 -18
  1064. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OnlyInstancesCanBeCloned.pm +0 -20
  1065. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OperatorIsRequired.pm +0 -19
  1066. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadConflictInSummation.pm +0 -62
  1067. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaClass.pm +0 -13
  1068. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaMethod.pm +0 -13
  1069. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaOverload.pm +0 -13
  1070. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm +0 -13
  1071. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAnOperator.pm +0 -13
  1072. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresNamesForCoderef.pm +0 -13
  1073. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInComposition.pm +0 -43
  1074. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInSummation.pm +0 -66
  1075. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageDoesNotUseMooseExporter.pm +0 -28
  1076. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +0 -25
  1077. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackagesAndModulesAreNotCachable.pm +0 -26
  1078. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +0 -26
  1079. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +0 -27
  1080. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeLacksInitialization.pm +0 -19
  1081. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeNeedsADefault.pm +0 -14
  1082. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsImportedByClass.pm +0 -46
  1083. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +0 -31
  1084. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Attribute.pm +0 -12
  1085. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/AttributeName.pm +0 -12
  1086. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Class.pm +0 -14
  1087. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +0 -49
  1088. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Instance.pm +0 -12
  1089. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InstanceClass.pm +0 -12
  1090. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InvalidAttributeOptions.pm +0 -13
  1091. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Method.pm +0 -12
  1092. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/ParamsHash.pm +0 -12
  1093. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Role.pm +0 -16
  1094. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreate.pm +0 -13
  1095. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreateMOPClass.pm +0 -13
  1096. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/TypeConstraint.pm +0 -14
  1097. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleDoesTheExcludedRole.pm +0 -28
  1098. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleExclusionConflict.pm +0 -27
  1099. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequired.pm +0 -13
  1100. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +0 -13
  1101. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportAugment.pm +0 -12
  1102. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportExtends.pm +0 -12
  1103. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportInner.pm +0 -12
  1104. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +0 -20
  1105. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +0 -14
  1106. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +0 -26
  1107. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +0 -12
  1108. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TriggerMustBeACodeRef.pm +0 -14
  1109. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +0 -25
  1110. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +0 -26
  1111. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +0 -13
  1112. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeHandles.pm +0 -20
  1113. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +0 -20
  1114. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +0 -22
  1115. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +0 -25
  1116. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  1117. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +0 -12
  1118. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +0 -49
  1119. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForTypeConstraint.pm +0 -33
  1120. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrapTakesACodeRefToBless.pm +0 -26
  1121. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrongTypeConstraintGiven.pm +0 -21
  1122. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception.pm +0 -211
  1123. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exporter.pm +0 -1048
  1124. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Intro.pod +0 -77
  1125. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Attributes.pod +0 -709
  1126. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/BestPractices.pod +0 -292
  1127. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Classes.pod +0 -218
  1128. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Concepts.pod +0 -439
  1129. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Construction.pod +0 -228
  1130. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Contributing.pod +0 -545
  1131. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delegation.pod +0 -313
  1132. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delta.pod +0 -1275
  1133. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions/Manifest.pod +0 -4124
  1134. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions.pod +0 -239
  1135. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/FAQ.pod +0 -470
  1136. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MOP.pod +0 -214
  1137. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MethodModifiers.pod +0 -449
  1138. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MooseX.pod +0 -326
  1139. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Resources.pod +0 -526
  1140. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Roles.pod +0 -557
  1141. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Support.pod +0 -204
  1142. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Types.pod +0 -501
  1143. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Unsweetened.pod +0 -386
  1144. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual.pod +0 -334
  1145. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Array.pm +0 -387
  1146. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Bool.pm +0 -146
  1147. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Code.pm +0 -129
  1148. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Counter.pm +0 -157
  1149. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Hash.pm +0 -227
  1150. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Number.pm +0 -155
  1151. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/String.pm +0 -187
  1152. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait.pm +0 -244
  1153. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native.pm +0 -299
  1154. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute.pm +0 -1810
  1155. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class/Immutable/Trait.pm +0 -123
  1156. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class.pm +0 -1014
  1157. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Instance.pm +0 -109
  1158. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/Writer.pm +0 -27
  1159. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/accessor.pm +0 -56
  1160. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/clear.pm +0 -28
  1161. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/count.pm +0 -22
  1162. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/delete.pm +0 -50
  1163. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/elements.pm +0 -22
  1164. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first.pm +0 -42
  1165. 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
  1166. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/get.pm +0 -31
  1167. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/grep.pm +0 -41
  1168. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/insert.pm +0 -58
  1169. 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
  1170. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/join.pm +0 -41
  1171. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/map.pm +0 -41
  1172. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/natatime.pm +0 -66
  1173. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/pop.pm +0 -47
  1174. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/push.pm +0 -36
  1175. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/reduce.pm +0 -42
  1176. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/set.pm +0 -64
  1177. 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
  1178. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shift.pm +0 -47
  1179. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm +0 -24
  1180. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort.pm +0 -44
  1181. 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
  1182. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/splice.pm +0 -72
  1183. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/uniq.pm +0 -24
  1184. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/unshift.pm +0 -36
  1185. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array.pm +0 -28
  1186. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/not.pm +0 -20
  1187. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/set.pm +0 -24
  1188. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm +0 -29
  1189. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/unset.pm +0 -24
  1190. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute.pm +0 -20
  1191. 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
  1192. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Collection.pm +0 -167
  1193. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm +0 -24
  1194. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/dec.pm +0 -30
  1195. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/inc.pm +0 -30
  1196. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/reset.pm +0 -36
  1197. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/set.pm +0 -25
  1198. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm +0 -41
  1199. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm +0 -61
  1200. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +0 -37
  1201. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/count.pm +0 -22
  1202. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/defined.pm +0 -31
  1203. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/delete.pm +0 -46
  1204. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/elements.pm +0 -23
  1205. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/exists.pm +0 -31
  1206. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/get.pm +0 -35
  1207. 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
  1208. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/keys.pm +0 -22
  1209. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/kv.pm +0 -23
  1210. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/set.pm +0 -99
  1211. 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
  1212. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/values.pm +0 -22
  1213. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash.pm +0 -28
  1214. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/abs.pm +0 -29
  1215. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/add.pm +0 -31
  1216. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/div.pm +0 -31
  1217. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mod.pm +0 -31
  1218. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mul.pm +0 -31
  1219. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/set.pm +0 -25
  1220. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/sub.pm +0 -31
  1221. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Reader.pm +0 -47
  1222. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/append.pm +0 -31
  1223. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chomp.pm +0 -40
  1224. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chop.pm +0 -40
  1225. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/clear.pm +0 -24
  1226. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/inc.pm +0 -33
  1227. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/length.pm +0 -22
  1228. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/match.pm +0 -42
  1229. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/prepend.pm +0 -31
  1230. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/replace.pm +0 -69
  1231. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/substr.pm +0 -123
  1232. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Writer.pm +0 -174
  1233. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native.pm +0 -157
  1234. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor.pm +0 -208
  1235. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Augmented.pm +0 -171
  1236. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Constructor.pm +0 -145
  1237. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Delegation.pm +0 -307
  1238. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Destructor.pm +0 -251
  1239. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Meta.pm +0 -112
  1240. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Overridden.pm +0 -160
  1241. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method.pm +0 -100
  1242. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Mixin/AttributeCore.pm +0 -185
  1243. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Object/Trait.pm +0 -107
  1244. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/RoleSummation.pm +0 -440
  1245. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToClass.pm +0 -314
  1246. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToInstance.pm +0 -142
  1247. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToRole.pm +0 -283
  1248. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application.pm +0 -225
  1249. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Attribute.pm +0 -259
  1250. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Composite.pm +0 -320
  1251. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Conflicting.pm +0 -135
  1252. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Required.pm +0 -127
  1253. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method.pm +0 -101
  1254. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role.pm +0 -1059
  1255. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion/Union.pm +0 -141
  1256. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion.pm +0 -239
  1257. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Class.pm +0 -261
  1258. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/DuckType.pm +0 -217
  1259. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Enum.pm +0 -235
  1260. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterizable.pm +0 -200
  1261. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterized.pm +0 -188
  1262. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Registry.pm +0 -206
  1263. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Role.pm +0 -235
  1264. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Union.pm +0 -346
  1265. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint.pm +0 -607
  1266. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Object.pm +0 -271
  1267. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Role.pm +0 -377
  1268. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Spec/Role.pod +0 -397
  1269. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Unsweetened.pod +0 -77
  1270. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/MetaRole.pm +0 -329
  1271. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints/Builtins.pm +0 -305
  1272. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints.pm +0 -1443
  1273. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util.pm +0 -725
  1274. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose.pm +0 -1268
  1275. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/PPI/XS.pm +0 -137
  1276. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Package/Stash/XS.pm +0 -110
  1277. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util/PP.pm +0 -276
  1278. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util.pm +0 -486
  1279. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/Util/Numeric.pm +0 -137
  1280. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Test/Moose.pm +0 -228
  1281. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Want.pm +0 -742
  1282. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Attribute/Util/.packlist +0 -12
  1283. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Capture/Tiny/.packlist +0 -2
  1284. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/.packlist +0 -3
  1285. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/.packlist +0 -3
  1286. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/XS.so +0 -0
  1287. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/Cmp/.packlist +0 -6
  1288. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/OptList/.packlist +0 -2
  1289. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/.packlist +0 -3
  1290. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/UUID.so +0 -0
  1291. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/GlobalDestruction/.packlist +0 -2
  1292. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/OverloadInfo/.packlist +0 -2
  1293. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/StackTrace/.packlist +0 -4
  1294. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Eval/Closure/.packlist +0 -2
  1295. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Config/.packlist +0 -4
  1296. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Helpers/.packlist +0 -8
  1297. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/InstallPaths/.packlist +0 -2
  1298. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/CheckLib/.packlist +0 -2
  1299. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/.packlist +0 -98
  1300. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Constant/Constant.txt +0 -1
  1301. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Memory/Memory.txt +0 -1
  1302. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Platypus.so +0 -0
  1303. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Record/Meta/Meta.txt +0 -1
  1304. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/File/Which/.packlist +0 -2
  1305. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/IPC/System/Simple/.packlist +0 -2
  1306. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MRO/Compat/.packlist +0 -2
  1307. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Implementation/.packlist +0 -2
  1308. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/.packlist +0 -2
  1309. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/Conflicts/.packlist +0 -2
  1310. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/.packlist +0 -574
  1311. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/Moose.so +0 -0
  1312. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Nice/Try/.packlist +0 -2
  1313. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/.packlist +0 -186
  1314. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/.packlist +0 -3
  1315. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/XS.so +0 -0
  1316. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/DeprecationManager/.packlist +0 -2
  1317. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/.packlist +0 -6
  1318. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/.packlist +0 -3
  1319. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/XS.so +0 -0
  1320. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/.packlist +0 -5
  1321. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/Util.so +0 -0
  1322. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Path/Tiny/.packlist +0 -2
  1323. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Safe/Isa/.packlist +0 -2
  1324. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/.packlist +0 -3
  1325. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/Numeric.so +0 -0
  1326. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scope/Guard/.packlist +0 -2
  1327. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/.packlist +0 -8
  1328. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/Progressive/.packlist +0 -2
  1329. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Install/.packlist +0 -2
  1330. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Task/Weaken/.packlist +0 -2
  1331. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Fatal/.packlist +0 -2
  1332. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Try/Tiny/.packlist +0 -2
  1333. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/.packlist +0 -3
  1334. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/Want.so +0 -0
  1335. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/YAML/PP/.packlist +0 -55
  1336. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/aliased/.packlist +0 -2
  1337. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/.packlist +0 -5
  1338. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/autobox.so +0 -0
  1339. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox/universal.pm +0 -13
  1340. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pm +0 -404
  1341. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pod +0 -709
  1342. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/metaclass.pm +0 -155
  1343. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/oose.pm +0 -137
  1344. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod +0 -968
  1345. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1346. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1347. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1348. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1349. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1350. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1351. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1352. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1353. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1354. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1355. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1356. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1357. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1358. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1359. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1360. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1361. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1362. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1363. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1364. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1365. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1366. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1367. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1368. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1369. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1370. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1371. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1372. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1373. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1374. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1375. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1376. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1377. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1378. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1379. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1380. package/Binaries/Perl/Linux/X64/lib/Javonet/Javonet.pm +0 -82
  1381. package/Binaries/Perl/Linux/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1382. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1383. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1384. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1385. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1386. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1387. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1388. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1389. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1390. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1391. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1392. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1393. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1394. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1395. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1396. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1397. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1398. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1399. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events +0 -62
  1400. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events.bat +0 -79
  1401. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight +0 -54
  1402. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight.bat +0 -71
  1403. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load +0 -155
  1404. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump +0 -314
  1405. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump.bat +0 -331
  1406. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load.bat +0 -172
  1407. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit +0 -123
  1408. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit.bat +0 -140
  1409. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  1410. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  1411. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  1412. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  1413. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  1414. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  1415. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  1416. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  1417. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  1418. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  1419. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/install.json +0 -1
  1420. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  1421. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/install.json +0 -1
  1422. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  1423. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/install.json +0 -1
  1424. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  1425. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/install.json +0 -1
  1426. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/MYMETA.json +0 -1115
  1427. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/install.json +0 -1
  1428. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  1429. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/install.json +0 -1
  1430. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  1431. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/install.json +0 -1
  1432. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  1433. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  1434. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  1435. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/install.json +0 -1
  1436. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/MYMETA.json +0 -40
  1437. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/install.json +0 -1
  1438. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  1439. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/install.json +0 -1
  1440. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  1441. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/install.json +0 -1
  1442. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Data/UUID.pm +0 -158
  1443. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/PPI/XS.pm +0 -137
  1444. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Scalar/Util/Numeric.pm +0 -137
  1445. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Want.pm +0 -742
  1446. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Attribute/Util/.packlist +0 -6
  1447. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/Cmp/.packlist +0 -3
  1448. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/.packlist +0 -2
  1449. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/UUID.xs.dll +0 -0
  1450. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Nice/Try/.packlist +0 -1
  1451. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/.packlist +0 -95
  1452. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/.packlist +0 -2
  1453. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/XS.xs.dll +0 -0
  1454. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Safe/Isa/.packlist +0 -1
  1455. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/.packlist +0 -2
  1456. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/Numeric.xs.dll +0 -0
  1457. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Test/Fatal/.packlist +0 -1
  1458. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/.packlist +0 -2
  1459. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/Want.xs.dll +0 -0
  1460. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/YAML/PP/.packlist +0 -39
  1461. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/.packlist +0 -4
  1462. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/autobox.xs.dll +0 -0
  1463. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox/universal.pm +0 -13
  1464. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pm +0 -404
  1465. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pod +0 -709
  1466. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/perllocal.pod +0 -264
  1467. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  1468. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  1469. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  1470. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  1471. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  1472. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  1473. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  1474. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  1475. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  1476. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  1477. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  1478. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  1479. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  1480. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  1481. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  1482. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  1483. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  1484. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  1485. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  1486. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  1487. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  1488. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  1489. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  1490. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  1491. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  1492. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  1493. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  1494. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  1495. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  1496. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  1497. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  1498. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  1499. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  1500. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  1501. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  1502. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  1503. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  1504. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  1505. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  1506. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  1507. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  1508. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  1509. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  1510. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  1511. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  1512. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  1513. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  1514. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  1515. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  1516. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  1517. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  1518. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  1519. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  1520. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  1521. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  1522. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  1523. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  1524. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  1525. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  1526. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  1527. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  1528. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  1529. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  1530. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  1531. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  1532. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  1533. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  1534. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  1535. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  1536. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  1537. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  1538. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  1539. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  1540. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  1541. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  1542. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  1543. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  1544. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  1545. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  1546. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  1547. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  1548. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  1549. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  1550. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  1551. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  1552. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  1553. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  1554. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  1555. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  1556. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  1557. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  1558. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  1559. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  1560. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  1561. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  1562. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI.pm +0 -822
  1563. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  1564. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  1565. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  1566. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  1567. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  1568. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  1569. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  1570. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  1571. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  1572. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  1573. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  1574. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  1575. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  1576. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  1577. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  1578. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  1579. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  1580. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  1581. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  1582. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  1583. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  1584. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  1585. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  1586. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  1587. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  1588. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  1589. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  1590. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  1591. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  1592. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  1593. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  1594. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1595. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1596. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1597. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1598. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1599. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1600. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1601. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1602. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1603. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1604. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1605. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1606. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1607. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1608. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1609. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1610. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1611. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1612. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1613. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1614. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1615. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1616. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1617. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1618. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1619. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1620. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1621. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1622. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1623. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1624. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1625. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1626. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1627. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1628. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1629. package/Binaries/Perl/Windows/X64/lib/Javonet/Javonet.pm +0 -82
  1630. package/Binaries/Perl/Windows/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1631. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1632. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1633. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1634. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1635. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1636. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1637. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1638. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1639. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1640. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1641. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1642. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1643. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1644. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1645. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1646. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1647. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1648. package/Binaries/Python/javonet/core/__init__.py +0 -0
  1649. package/Binaries/Python/javonet/core/callback/__init__.py +0 -0
  1650. package/Binaries/Python/javonet/core/callback/callbackFunc.py +0 -7
  1651. package/Binaries/Python/javonet/core/delegateCache/DelegatesCache.py +0 -39
  1652. package/Binaries/Python/javonet/core/delegateCache/__init__.py +0 -0
  1653. package/Binaries/Python/javonet/core/handler/AbstractCommandHandler.py +0 -20
  1654. package/Binaries/Python/javonet/core/handler/AbstractHandler.py +0 -3
  1655. package/Binaries/Python/javonet/core/handler/ArrayGetItemHandler.py +0 -27
  1656. package/Binaries/Python/javonet/core/handler/ArrayGetRankHandler.py +0 -25
  1657. package/Binaries/Python/javonet/core/handler/ArrayGetSizeHandler.py +0 -24
  1658. package/Binaries/Python/javonet/core/handler/ArrayHandler.py +0 -13
  1659. package/Binaries/Python/javonet/core/handler/ArraySetItemHandler.py +0 -39
  1660. package/Binaries/Python/javonet/core/handler/CastingHandler.py +0 -6
  1661. package/Binaries/Python/javonet/core/handler/CreateClassInstanceHandler.py +0 -22
  1662. package/Binaries/Python/javonet/core/handler/DestructReferenceHandler.py +0 -13
  1663. package/Binaries/Python/javonet/core/handler/EnableNamespaceHandler.py +0 -28
  1664. package/Binaries/Python/javonet/core/handler/EnableTypeHandler.py +0 -28
  1665. package/Binaries/Python/javonet/core/handler/GetEnumItemHandler.py +0 -29
  1666. package/Binaries/Python/javonet/core/handler/GetEnumNameHandler.py +0 -22
  1667. package/Binaries/Python/javonet/core/handler/GetEnumValueHandler.py +0 -22
  1668. package/Binaries/Python/javonet/core/handler/GetInstanceFieldHandler.py +0 -27
  1669. package/Binaries/Python/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -29
  1670. package/Binaries/Python/javonet/core/handler/GetStaticFieldHandler.py +0 -27
  1671. package/Binaries/Python/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -31
  1672. package/Binaries/Python/javonet/core/handler/GetTypeHandler.py +0 -85
  1673. package/Binaries/Python/javonet/core/handler/Handler.py +0 -100
  1674. package/Binaries/Python/javonet/core/handler/HandlerDictionary.py +0 -8
  1675. package/Binaries/Python/javonet/core/handler/InvokeDelegateHandler.py +0 -27
  1676. package/Binaries/Python/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -46
  1677. package/Binaries/Python/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -31
  1678. package/Binaries/Python/javonet/core/handler/InvokeStaticMethodHandler.py +0 -33
  1679. package/Binaries/Python/javonet/core/handler/LoadLibraryHandler.py +0 -40
  1680. package/Binaries/Python/javonet/core/handler/PassDelegateHandler.py +0 -21
  1681. package/Binaries/Python/javonet/core/handler/ResolveInstanceHandler.py +0 -19
  1682. package/Binaries/Python/javonet/core/handler/SetInstanceFieldHandler.py +0 -29
  1683. package/Binaries/Python/javonet/core/handler/SetStaticFieldHandler.py +0 -29
  1684. package/Binaries/Python/javonet/core/handler/ValueHandler.py +0 -6
  1685. package/Binaries/Python/javonet/core/handler/__init__.py +0 -0
  1686. package/Binaries/Python/javonet/core/interpreter/Interpreter.py +0 -55
  1687. package/Binaries/Python/javonet/core/interpreter/__init__.py +0 -0
  1688. package/Binaries/Python/javonet/core/namespaceCache/NamespaceCache.py +0 -44
  1689. package/Binaries/Python/javonet/core/namespaceCache/__init__.py +0 -0
  1690. package/Binaries/Python/javonet/core/protocol/CommandDeserializer.py +0 -164
  1691. package/Binaries/Python/javonet/core/protocol/CommandSerializer.py +0 -29
  1692. package/Binaries/Python/javonet/core/protocol/TypeDeserializer.py +0 -64
  1693. package/Binaries/Python/javonet/core/protocol/TypeSerializer.py +0 -96
  1694. package/Binaries/Python/javonet/core/protocol/__init__.py +0 -0
  1695. package/Binaries/Python/javonet/core/receiver/Receiver.py +0 -42
  1696. package/Binaries/Python/javonet/core/receiver/__init__.py +0 -0
  1697. package/Binaries/Python/javonet/core/referenceCache/ReferencesCache.py +0 -39
  1698. package/Binaries/Python/javonet/core/referenceCache/__init__.py +0 -0
  1699. package/Binaries/Python/javonet/core/transmitter/Transmitter.py +0 -20
  1700. package/Binaries/Python/javonet/core/transmitter/TransmitterWrapper.py +0 -110
  1701. package/Binaries/Python/javonet/core/transmitter/__init__.py +0 -0
  1702. package/Binaries/Python/javonet/core/typeCache/TypeCache.py +0 -44
  1703. package/Binaries/Python/javonet/core/typeCache/__init__.py +0 -0
  1704. package/Binaries/Python/javonet/core/webSocketClient/WebSocketClient.py +0 -32
  1705. package/Binaries/Python/javonet/utils/Command.py +0 -90
  1706. package/Binaries/Python/javonet/utils/CommandType.py +0 -46
  1707. package/Binaries/Python/javonet/utils/ConnectionType.py +0 -7
  1708. package/Binaries/Python/javonet/utils/ExceptionType.py +0 -55
  1709. package/Binaries/Python/javonet/utils/RuntimeLogger.py +0 -30
  1710. package/Binaries/Python/javonet/utils/RuntimeName.py +0 -18
  1711. package/Binaries/Python/javonet/utils/RuntimeNameHandler.py +0 -30
  1712. package/Binaries/Python/javonet/utils/StringEncodingMode.py +0 -8
  1713. package/Binaries/Python/javonet/utils/Type.py +0 -16
  1714. package/Binaries/Python/javonet/utils/UtilsConst.py +0 -42
  1715. package/Binaries/Python/javonet/utils/__init__.py +0 -0
  1716. package/Binaries/Python/javonet/utils/connectionData/IConnectionData.py +0 -18
  1717. package/Binaries/Python/javonet/utils/connectionData/InMemoryConnectionData.py +0 -23
  1718. package/Binaries/Python/javonet/utils/connectionData/TcpConnectionData.py +0 -67
  1719. package/Binaries/Python/javonet/utils/connectionData/WsConnectionData.py +0 -30
  1720. package/Binaries/Python/javonet/utils/connectionData/__init__.py +0 -0
  1721. package/Binaries/Python/javonet/utils/exception/ExceptionSerializer.py +0 -66
  1722. package/Binaries/Python/javonet/utils/exception/ExceptionThrower.py +0 -81
  1723. package/Binaries/Python/javonet/utils/exception/JavonetException.py +0 -10
  1724. package/Binaries/Python/javonet/utils/exception/__init__.py +0 -0
  1725. package/Binaries/Python/javonet/utils/messageHelper/MessageHelper.py +0 -86
  1726. package/Binaries/Python/javonet/utils/messageHelper/__init__.py +0 -0
  1727. package/Binaries/Python2/javonet/__init__.py +0 -32
  1728. package/Binaries/Python2/javonet/core/__init__.py +0 -1
  1729. package/Binaries/Python2/javonet/core/callback/__init__.py +0 -4
  1730. package/Binaries/Python2/javonet/core/callback/callbackFunc.py +0 -20
  1731. package/Binaries/Python2/javonet/core/delegateCache/DelegatesCache.py +0 -73
  1732. package/Binaries/Python2/javonet/core/delegateCache/__init__.py +0 -4
  1733. package/Binaries/Python2/javonet/core/handler/AbstractCommandHandler.py +0 -45
  1734. package/Binaries/Python2/javonet/core/handler/AbstractHandler.py +0 -9
  1735. package/Binaries/Python2/javonet/core/handler/ArrayGetItemHandler.py +0 -51
  1736. package/Binaries/Python2/javonet/core/handler/ArrayGetRankHandler.py +0 -41
  1737. package/Binaries/Python2/javonet/core/handler/ArrayGetSizeHandler.py +0 -45
  1738. package/Binaries/Python2/javonet/core/handler/ArrayHandler.py +0 -25
  1739. package/Binaries/Python2/javonet/core/handler/ArraySetItemHandler.py +0 -60
  1740. package/Binaries/Python2/javonet/core/handler/CastingHandler.py +0 -11
  1741. package/Binaries/Python2/javonet/core/handler/CreateClassInstanceHandler.py +0 -39
  1742. package/Binaries/Python2/javonet/core/handler/DestructReferenceHandler.py +0 -25
  1743. package/Binaries/Python2/javonet/core/handler/EnableNamespaceHandler.py +0 -43
  1744. package/Binaries/Python2/javonet/core/handler/EnableTypeHandler.py +0 -43
  1745. package/Binaries/Python2/javonet/core/handler/GetEnumItemHandler.py +0 -54
  1746. package/Binaries/Python2/javonet/core/handler/GetEnumNameHandler.py +0 -44
  1747. package/Binaries/Python2/javonet/core/handler/GetEnumValueHandler.py +0 -36
  1748. package/Binaries/Python2/javonet/core/handler/GetInstanceFieldHandler.py +0 -40
  1749. package/Binaries/Python2/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -43
  1750. package/Binaries/Python2/javonet/core/handler/GetStaticFieldHandler.py +0 -41
  1751. package/Binaries/Python2/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -43
  1752. package/Binaries/Python2/javonet/core/handler/GetTypeHandler.py +0 -115
  1753. package/Binaries/Python2/javonet/core/handler/Handler.py +0 -152
  1754. package/Binaries/Python2/javonet/core/handler/HandlerDictionary.py +0 -23
  1755. package/Binaries/Python2/javonet/core/handler/InvokeDelegateHandler.py +0 -56
  1756. package/Binaries/Python2/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -78
  1757. package/Binaries/Python2/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -45
  1758. package/Binaries/Python2/javonet/core/handler/InvokeStaticMethodHandler.py +0 -45
  1759. package/Binaries/Python2/javonet/core/handler/LoadLibraryHandler.py +0 -62
  1760. package/Binaries/Python2/javonet/core/handler/PassDelegateHandler.py +0 -36
  1761. package/Binaries/Python2/javonet/core/handler/ResolveInstanceHandler.py +0 -33
  1762. package/Binaries/Python2/javonet/core/handler/SetInstanceFieldHandler.py +0 -42
  1763. package/Binaries/Python2/javonet/core/handler/SetStaticFieldHandler.py +0 -43
  1764. package/Binaries/Python2/javonet/core/handler/ValueHandler.py +0 -27
  1765. package/Binaries/Python2/javonet/core/handler/__init__.py +0 -1
  1766. package/Binaries/Python2/javonet/core/interpreter/Interpreter.py +0 -36
  1767. package/Binaries/Python2/javonet/core/interpreter/__init__.py +0 -0
  1768. package/Binaries/Python2/javonet/core/namespaceCache/NamespaceCache.py +0 -69
  1769. package/Binaries/Python2/javonet/core/namespaceCache/__init__.py +0 -4
  1770. package/Binaries/Python2/javonet/core/protocol/CommandDeserializer.py +0 -237
  1771. package/Binaries/Python2/javonet/core/protocol/CommandSerializer.py +0 -56
  1772. package/Binaries/Python2/javonet/core/protocol/TypeDeserializer.py +0 -154
  1773. package/Binaries/Python2/javonet/core/protocol/TypeSerializer.py +0 -187
  1774. package/Binaries/Python2/javonet/core/protocol/__init__.py +0 -0
  1775. package/Binaries/Python2/javonet/core/receiver/Receiver.py +0 -35
  1776. package/Binaries/Python2/javonet/core/receiver/__init__.py +0 -1
  1777. package/Binaries/Python2/javonet/core/referenceCache/ReferencesCache.py +0 -57
  1778. package/Binaries/Python2/javonet/core/referenceCache/__init__.py +0 -0
  1779. package/Binaries/Python2/javonet/core/transmitter/Transmitter.py +0 -59
  1780. package/Binaries/Python2/javonet/core/transmitter/TransmitterWrapper.py +0 -102
  1781. package/Binaries/Python2/javonet/core/transmitter/__init__.py +0 -0
  1782. package/Binaries/Python2/javonet/core/typeCache/TypeCache.py +0 -69
  1783. package/Binaries/Python2/javonet/core/typeCache/__init__.py +0 -4
  1784. package/Binaries/Python2/javonet/core/webSocketClient/WebSocketClient.py +0 -39
  1785. package/Binaries/Python2/javonet/core/webSocketClient/__init__.py +0 -0
  1786. package/Binaries/Python2/javonet/utils/Command.py +0 -170
  1787. package/Binaries/Python2/javonet/utils/CommandType.py +0 -154
  1788. package/Binaries/Python2/javonet/utils/ConnectionType.py +0 -36
  1789. package/Binaries/Python2/javonet/utils/ExceptionType.py +0 -95
  1790. package/Binaries/Python2/javonet/utils/PythonStringBuilder.py +0 -38
  1791. package/Binaries/Python2/javonet/utils/RuntimeLogger.py +0 -50
  1792. package/Binaries/Python2/javonet/utils/RuntimeName.py +0 -120
  1793. package/Binaries/Python2/javonet/utils/RuntimeNameHandler.py +0 -47
  1794. package/Binaries/Python2/javonet/utils/StringEncodingMode.py +0 -38
  1795. package/Binaries/Python2/javonet/utils/Type.py +0 -68
  1796. package/Binaries/Python2/javonet/utils/UtilsConst.py +0 -38
  1797. package/Binaries/Python2/javonet/utils/__init__.py +0 -4
  1798. package/Binaries/Python2/javonet/utils/connectionData/IConnectionData.py +0 -45
  1799. package/Binaries/Python2/javonet/utils/connectionData/InMemoryConnectionData.py +0 -32
  1800. package/Binaries/Python2/javonet/utils/connectionData/TcpConnectionData.py +0 -142
  1801. package/Binaries/Python2/javonet/utils/connectionData/WsConnectionData.py +0 -75
  1802. package/Binaries/Python2/javonet/utils/connectionData/__init__.py +0 -4
  1803. package/Binaries/Python2/javonet/utils/exception/ExceptionSerializer.py +0 -94
  1804. package/Binaries/Python2/javonet/utils/exception/ExceptionThrower.py +0 -85
  1805. package/Binaries/Python2/javonet/utils/exception/JavonetException.py +0 -31
  1806. package/Binaries/Python2/javonet/utils/exception/__init__.py +0 -4
  1807. package/Binaries/Ruby/Linux/X64/core/handler/abstract_command_handler.rb +0 -24
  1808. package/Binaries/Ruby/Linux/X64/core/handler/abstract_handler.rb +0 -5
  1809. package/Binaries/Ruby/Linux/X64/core/handler/array_get_item_handler.rb +0 -47
  1810. package/Binaries/Ruby/Linux/X64/core/handler/array_get_rank_handler.rb +0 -23
  1811. package/Binaries/Ruby/Linux/X64/core/handler/array_get_size_handler.rb +0 -37
  1812. package/Binaries/Ruby/Linux/X64/core/handler/array_handler.rb +0 -12
  1813. package/Binaries/Ruby/Linux/X64/core/handler/array_set_item_handler.rb +0 -47
  1814. package/Binaries/Ruby/Linux/X64/core/handler/casting_handler.rb +0 -11
  1815. package/Binaries/Ruby/Linux/X64/core/handler/create_class_instance_handler.rb +0 -34
  1816. package/Binaries/Ruby/Linux/X64/core/handler/destruct_reference_handler.rb +0 -21
  1817. package/Binaries/Ruby/Linux/X64/core/handler/enable_namespace_handler.rb +0 -31
  1818. package/Binaries/Ruby/Linux/X64/core/handler/enable_type_handler.rb +0 -32
  1819. package/Binaries/Ruby/Linux/X64/core/handler/get_instance_field_handler.rb +0 -34
  1820. package/Binaries/Ruby/Linux/X64/core/handler/get_static_field_handler.rb +0 -34
  1821. package/Binaries/Ruby/Linux/X64/core/handler/get_type_handler.rb +0 -71
  1822. package/Binaries/Ruby/Linux/X64/core/handler/handler.rb +0 -111
  1823. package/Binaries/Ruby/Linux/X64/core/handler/handler_dictionary.rb +0 -8
  1824. package/Binaries/Ruby/Linux/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1825. package/Binaries/Ruby/Linux/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1826. package/Binaries/Ruby/Linux/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1827. package/Binaries/Ruby/Linux/X64/core/handler/load_library_handler.rb +0 -33
  1828. package/Binaries/Ruby/Linux/X64/core/handler/resolve_instance_handler.rb +0 -24
  1829. package/Binaries/Ruby/Linux/X64/core/handler/set_instance_field_handler.rb +0 -35
  1830. package/Binaries/Ruby/Linux/X64/core/handler/set_static_field_handler.rb +0 -31
  1831. package/Binaries/Ruby/Linux/X64/core/handler/value_handler.rb +0 -7
  1832. package/Binaries/Ruby/Linux/X64/core/interpreter/interpreter.rb +0 -25
  1833. package/Binaries/Ruby/Linux/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1834. package/Binaries/Ruby/Linux/X64/core/protocol/command_deserializer.rb +0 -182
  1835. package/Binaries/Ruby/Linux/X64/core/protocol/command_serializer.rb +0 -35
  1836. package/Binaries/Ruby/Linux/X64/core/protocol/type_deserializer.rb +0 -126
  1837. package/Binaries/Ruby/Linux/X64/core/protocol/type_serializer.rb +0 -259
  1838. package/Binaries/Ruby/Linux/X64/core/receiver/receiver.rb +0 -22
  1839. package/Binaries/Ruby/Linux/X64/core/reference_cache/references_cache.rb +0 -39
  1840. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter.rb +0 -58
  1841. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1842. package/Binaries/Ruby/Linux/X64/core/type_cache/type_cache.rb +0 -42
  1843. package/Binaries/Ruby/Linux/X64/utils/command.rb +0 -93
  1844. package/Binaries/Ruby/Linux/X64/utils/command_type.rb +0 -135
  1845. package/Binaries/Ruby/Linux/X64/utils/connection_type.rb +0 -4
  1846. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_serializer.rb +0 -93
  1847. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_thrower.rb +0 -65
  1848. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_type.rb +0 -10
  1849. package/Binaries/Ruby/Linux/X64/utils/runtime_logger.rb +0 -30
  1850. package/Binaries/Ruby/Linux/X64/utils/runtime_name.rb +0 -13
  1851. package/Binaries/Ruby/Linux/X64/utils/runtime_name_handler.rb +0 -40
  1852. package/Binaries/Ruby/Linux/X64/utils/string_encoding_mode.rb +0 -6
  1853. package/Binaries/Ruby/Linux/X64/utils/tcp_connection_data.rb +0 -37
  1854. package/Binaries/Ruby/Linux/X64/utils/type.rb +0 -14
  1855. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_command_handler.rb +0 -24
  1856. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_handler.rb +0 -5
  1857. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_item_handler.rb +0 -47
  1858. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_rank_handler.rb +0 -23
  1859. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_size_handler.rb +0 -37
  1860. package/Binaries/Ruby/MacOs/X64/core/handler/array_handler.rb +0 -12
  1861. package/Binaries/Ruby/MacOs/X64/core/handler/array_set_item_handler.rb +0 -47
  1862. package/Binaries/Ruby/MacOs/X64/core/handler/casting_handler.rb +0 -11
  1863. package/Binaries/Ruby/MacOs/X64/core/handler/create_class_instance_handler.rb +0 -34
  1864. package/Binaries/Ruby/MacOs/X64/core/handler/destruct_reference_handler.rb +0 -21
  1865. package/Binaries/Ruby/MacOs/X64/core/handler/enable_namespace_handler.rb +0 -31
  1866. package/Binaries/Ruby/MacOs/X64/core/handler/enable_type_handler.rb +0 -32
  1867. package/Binaries/Ruby/MacOs/X64/core/handler/get_instance_field_handler.rb +0 -34
  1868. package/Binaries/Ruby/MacOs/X64/core/handler/get_static_field_handler.rb +0 -34
  1869. package/Binaries/Ruby/MacOs/X64/core/handler/get_type_handler.rb +0 -71
  1870. package/Binaries/Ruby/MacOs/X64/core/handler/handler.rb +0 -111
  1871. package/Binaries/Ruby/MacOs/X64/core/handler/handler_dictionary.rb +0 -8
  1872. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1873. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1874. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1875. package/Binaries/Ruby/MacOs/X64/core/handler/load_library_handler.rb +0 -33
  1876. package/Binaries/Ruby/MacOs/X64/core/handler/resolve_instance_handler.rb +0 -24
  1877. package/Binaries/Ruby/MacOs/X64/core/handler/set_instance_field_handler.rb +0 -35
  1878. package/Binaries/Ruby/MacOs/X64/core/handler/set_static_field_handler.rb +0 -31
  1879. package/Binaries/Ruby/MacOs/X64/core/handler/value_handler.rb +0 -7
  1880. package/Binaries/Ruby/MacOs/X64/core/interpreter/interpreter.rb +0 -25
  1881. package/Binaries/Ruby/MacOs/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1882. package/Binaries/Ruby/MacOs/X64/core/protocol/command_deserializer.rb +0 -182
  1883. package/Binaries/Ruby/MacOs/X64/core/protocol/command_serializer.rb +0 -35
  1884. package/Binaries/Ruby/MacOs/X64/core/protocol/type_deserializer.rb +0 -126
  1885. package/Binaries/Ruby/MacOs/X64/core/protocol/type_serializer.rb +0 -259
  1886. package/Binaries/Ruby/MacOs/X64/core/receiver/receiver.rb +0 -22
  1887. package/Binaries/Ruby/MacOs/X64/core/reference_cache/references_cache.rb +0 -39
  1888. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter.rb +0 -58
  1889. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1890. package/Binaries/Ruby/MacOs/X64/core/type_cache/type_cache.rb +0 -42
  1891. package/Binaries/Ruby/MacOs/X64/utils/command.rb +0 -93
  1892. package/Binaries/Ruby/MacOs/X64/utils/command_type.rb +0 -135
  1893. package/Binaries/Ruby/MacOs/X64/utils/connection_type.rb +0 -4
  1894. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_serializer.rb +0 -93
  1895. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_thrower.rb +0 -65
  1896. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_type.rb +0 -10
  1897. package/Binaries/Ruby/MacOs/X64/utils/runtime_logger.rb +0 -30
  1898. package/Binaries/Ruby/MacOs/X64/utils/runtime_name.rb +0 -13
  1899. package/Binaries/Ruby/MacOs/X64/utils/runtime_name_handler.rb +0 -40
  1900. package/Binaries/Ruby/MacOs/X64/utils/string_encoding_mode.rb +0 -6
  1901. package/Binaries/Ruby/MacOs/X64/utils/tcp_connection_data.rb +0 -37
  1902. package/Binaries/Ruby/MacOs/X64/utils/type.rb +0 -14
  1903. package/Binaries/Ruby/Windows/X64/core/handler/abstract_command_handler.rb +0 -24
  1904. package/Binaries/Ruby/Windows/X64/core/handler/abstract_handler.rb +0 -5
  1905. package/Binaries/Ruby/Windows/X64/core/handler/array_get_item_handler.rb +0 -47
  1906. package/Binaries/Ruby/Windows/X64/core/handler/array_get_rank_handler.rb +0 -23
  1907. package/Binaries/Ruby/Windows/X64/core/handler/array_get_size_handler.rb +0 -37
  1908. package/Binaries/Ruby/Windows/X64/core/handler/array_handler.rb +0 -12
  1909. package/Binaries/Ruby/Windows/X64/core/handler/array_set_item_handler.rb +0 -47
  1910. package/Binaries/Ruby/Windows/X64/core/handler/casting_handler.rb +0 -11
  1911. package/Binaries/Ruby/Windows/X64/core/handler/create_class_instance_handler.rb +0 -34
  1912. package/Binaries/Ruby/Windows/X64/core/handler/destruct_reference_handler.rb +0 -21
  1913. package/Binaries/Ruby/Windows/X64/core/handler/enable_namespace_handler.rb +0 -31
  1914. package/Binaries/Ruby/Windows/X64/core/handler/enable_type_handler.rb +0 -32
  1915. package/Binaries/Ruby/Windows/X64/core/handler/get_instance_field_handler.rb +0 -34
  1916. package/Binaries/Ruby/Windows/X64/core/handler/get_static_field_handler.rb +0 -34
  1917. package/Binaries/Ruby/Windows/X64/core/handler/get_type_handler.rb +0 -71
  1918. package/Binaries/Ruby/Windows/X64/core/handler/handler.rb +0 -111
  1919. package/Binaries/Ruby/Windows/X64/core/handler/handler_dictionary.rb +0 -8
  1920. package/Binaries/Ruby/Windows/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1921. package/Binaries/Ruby/Windows/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1922. package/Binaries/Ruby/Windows/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1923. package/Binaries/Ruby/Windows/X64/core/handler/load_library_handler.rb +0 -33
  1924. package/Binaries/Ruby/Windows/X64/core/handler/resolve_instance_handler.rb +0 -24
  1925. package/Binaries/Ruby/Windows/X64/core/handler/set_instance_field_handler.rb +0 -35
  1926. package/Binaries/Ruby/Windows/X64/core/handler/set_static_field_handler.rb +0 -31
  1927. package/Binaries/Ruby/Windows/X64/core/handler/value_handler.rb +0 -7
  1928. package/Binaries/Ruby/Windows/X64/core/interpreter/interpreter.rb +0 -25
  1929. package/Binaries/Ruby/Windows/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1930. package/Binaries/Ruby/Windows/X64/core/protocol/command_deserializer.rb +0 -182
  1931. package/Binaries/Ruby/Windows/X64/core/protocol/command_serializer.rb +0 -35
  1932. package/Binaries/Ruby/Windows/X64/core/protocol/type_deserializer.rb +0 -126
  1933. package/Binaries/Ruby/Windows/X64/core/protocol/type_serializer.rb +0 -259
  1934. package/Binaries/Ruby/Windows/X64/core/receiver/receiver.rb +0 -22
  1935. package/Binaries/Ruby/Windows/X64/core/reference_cache/references_cache.rb +0 -39
  1936. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter.rb +0 -58
  1937. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1938. package/Binaries/Ruby/Windows/X64/core/type_cache/type_cache.rb +0 -42
  1939. package/Binaries/Ruby/Windows/X64/utils/command.rb +0 -93
  1940. package/Binaries/Ruby/Windows/X64/utils/command_type.rb +0 -135
  1941. package/Binaries/Ruby/Windows/X64/utils/connection_type.rb +0 -4
  1942. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_serializer.rb +0 -93
  1943. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_thrower.rb +0 -65
  1944. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_type.rb +0 -10
  1945. package/Binaries/Ruby/Windows/X64/utils/runtime_logger.rb +0 -30
  1946. package/Binaries/Ruby/Windows/X64/utils/runtime_name.rb +0 -13
  1947. package/Binaries/Ruby/Windows/X64/utils/runtime_name_handler.rb +0 -40
  1948. package/Binaries/Ruby/Windows/X64/utils/string_encoding_mode.rb +0 -6
  1949. package/Binaries/Ruby/Windows/X64/utils/tcp_connection_data.rb +0 -37
  1950. package/Binaries/Ruby/Windows/X64/utils/type.rb +0 -14
  1951. package/Binaries/version.txt +0 -1
  1952. package/addon/JavonetNodejsRuntimeAddon.cpp +0 -299
  1953. package/addon/JavonetNodejsRuntimeAddon.h +0 -70
  1954. package/binding.gyp +0 -8
  1955. package/dist/Javonet.d.ts +0 -4858
  1956. package/dist/index.js +0 -66
  1957. package/dist/lib/core/delegatesCache/DelegatesCache.js +0 -35
  1958. package/dist/lib/core/handler/AbstractHandler.js +0 -41
  1959. package/dist/lib/core/handler/ArrayGetItemHandler.js +0 -38
  1960. package/dist/lib/core/handler/ArrayGetRankHandler.js +0 -28
  1961. package/dist/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  1962. package/dist/lib/core/handler/ArrayHandler.js +0 -18
  1963. package/dist/lib/core/handler/ArraySetItemHandler.js +0 -43
  1964. package/dist/lib/core/handler/CastingHandler.js +0 -10
  1965. package/dist/lib/core/handler/ConvertTypeHandler.js +0 -38
  1966. package/dist/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  1967. package/dist/lib/core/handler/DestructReferenceHandler.js +0 -19
  1968. package/dist/lib/core/handler/EnableNamespaceHandler.js +0 -34
  1969. package/dist/lib/core/handler/EnableTypeHandler.js +0 -35
  1970. package/dist/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  1971. package/dist/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  1972. package/dist/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  1973. package/dist/lib/core/handler/GetStaticFieldHandler.js +0 -36
  1974. package/dist/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  1975. package/dist/lib/core/handler/GetTypeHandler.js +0 -63
  1976. package/dist/lib/core/handler/Handler.js +0 -98
  1977. package/dist/lib/core/handler/InvokeDelegateHandler.js +0 -36
  1978. package/dist/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  1979. package/dist/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  1980. package/dist/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  1981. package/dist/lib/core/handler/LoadLibraryHandler.js +0 -48
  1982. package/dist/lib/core/handler/PassDelegateHandler.js +0 -157
  1983. package/dist/lib/core/handler/ResolveReferenceHandler.js +0 -13
  1984. package/dist/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  1985. package/dist/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  1986. package/dist/lib/core/handler/SetStaticFieldHandler.js +0 -33
  1987. package/dist/lib/core/handler/ValueHandler.js +0 -13
  1988. package/dist/lib/core/interpreter/Interpreter.js +0 -142
  1989. package/dist/lib/core/namespaceCache/NamespaceCache.js +0 -39
  1990. package/dist/lib/core/protocol/CommandDeserializer.js +0 -181
  1991. package/dist/lib/core/protocol/CommandSerializer.js +0 -50
  1992. package/dist/lib/core/protocol/TypeDeserializer.js +0 -83
  1993. package/dist/lib/core/protocol/TypeSerializer.js +0 -143
  1994. package/dist/lib/core/receiver/Receiver.js +0 -32
  1995. package/dist/lib/core/receiver/ReceiverNative.js +0 -13
  1996. package/dist/lib/core/referenceCache/ReferencesCache.js +0 -30
  1997. package/dist/lib/core/transmitter/Transmitter.js +0 -21
  1998. package/dist/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  1999. package/dist/lib/core/transmitter/TransmitterWrapper.js +0 -47
  2000. package/dist/lib/core/typeCache/TypeCache.js +0 -39
  2001. package/dist/lib/core/webSocketClient/WebSocketClient.js +0 -136
  2002. package/dist/lib/declarations.d.ts +0 -64
  2003. package/dist/lib/sdk/ConfigRuntimeFactory.js +0 -155
  2004. package/dist/lib/sdk/InvocationContext.js +0 -485
  2005. package/dist/lib/sdk/Javonet.js +0 -105
  2006. package/dist/lib/sdk/RuntimeContext.js +0 -300
  2007. package/dist/lib/sdk/RuntimeFactory.js +0 -87
  2008. package/dist/lib/sdk/tools/JsonFileResolver.js +0 -101
  2009. package/dist/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2010. package/dist/lib/utils/Command.js +0 -69
  2011. package/dist/lib/utils/CommandType.js +0 -47
  2012. package/dist/lib/utils/ConnectionType.js +0 -8
  2013. package/dist/lib/utils/CustomError.js +0 -8
  2014. package/dist/lib/utils/ExceptionType.js +0 -13
  2015. package/dist/lib/utils/RuntimeLogger.js +0 -30
  2016. package/dist/lib/utils/RuntimeName.js +0 -16
  2017. package/dist/lib/utils/RuntimeNameHandler.js +0 -38
  2018. package/dist/lib/utils/StringEncodingMode.js +0 -9
  2019. package/dist/lib/utils/Type.js +0 -17
  2020. package/dist/lib/utils/TypesConverter.js +0 -91
  2021. package/dist/lib/utils/connectionData/IConnectionData.js +0 -15
  2022. package/dist/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  2023. package/dist/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2024. package/dist/lib/utils/connectionData/WsConnectionData.js +0 -50
  2025. package/dist/lib/utils/exception/ExceptionSerializer.js +0 -64
  2026. package/dist/lib/utils/exception/ExceptionThrower.js +0 -95
  2027. package/dist/lib/utils/guid/generateGuid.js +0 -9
  2028. package/dist/lib/utils/uuid/REGEX.js +0 -2
  2029. package/dist/lib/utils/uuid/rng.js +0 -12
  2030. package/dist/lib/utils/uuid/stringify.js +0 -51
  2031. package/dist/lib/utils/uuid/v4.js +0 -27
  2032. package/dist/lib/utils/uuid/validate.js +0 -6
  2033. package/lib/sdk/tools/JsonFileResolver.js +0 -101
  2034. package/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2035. package/lib/utils/TypesConverter.js +0 -91
  2036. package/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2037. package/lib/utils/uuid/REGEX.js +0 -2
  2038. package/lib/utils/uuid/rng.js +0 -12
  2039. package/lib/utils/uuid/stringify.js +0 -51
  2040. package/lib/utils/uuid/v4.js +0 -27
  2041. package/lib/utils/uuid/validate.js +0 -6
@@ -1,1268 +0,0 @@
1
- use strict;
2
- use warnings;
3
- package Moose; # git description: 2.2206-2-ge01558bb6
4
- our $VERSION = '2.2207';
5
- our $AUTHORITY = 'cpan:STEVAN';
6
-
7
- use 5.008003;
8
-
9
- use Scalar::Util ();
10
- use Carp 'carp';
11
- use Module::Runtime 'module_notional_filename';
12
- use Class::Load 'is_class_loaded';
13
-
14
- use Moose::Deprecated;
15
- use Moose::Exporter;
16
-
17
- use Class::MOP;
18
-
19
- die "Class::MOP version $Moose::VERSION required--this is version $Class::MOP::VERSION"
20
- if $Class::MOP::VERSION ne $Moose::VERSION;
21
-
22
- use Moose::Meta::Class;
23
- use Moose::Meta::TypeConstraint;
24
- use Moose::Meta::TypeCoercion;
25
- use Moose::Meta::Attribute;
26
- use Moose::Meta::Instance;
27
-
28
- use Moose::Object;
29
-
30
- use Moose::Meta::Role;
31
- use Moose::Meta::Role::Composite;
32
- use Moose::Meta::Role::Application;
33
- use Moose::Meta::Role::Application::RoleSummation;
34
- use Moose::Meta::Role::Application::ToClass;
35
- use Moose::Meta::Role::Application::ToRole;
36
- use Moose::Meta::Role::Application::ToInstance;
37
-
38
- use Moose::Util::TypeConstraints;
39
- use Moose::Util 'throw_exception';
40
-
41
- use Moose::Meta::Attribute::Native;
42
-
43
- sub extends {
44
- my $meta = shift;
45
-
46
- unless ( @_ )
47
- {
48
- throw_exception( ExtendsMissingArgs => class_name => $meta->name );
49
- }
50
- # this checks the metaclass to make sure
51
- # it is correct, sometimes it can get out
52
- # of sync when the classes are being built
53
- $meta->superclasses(@_);
54
- }
55
-
56
- sub with {
57
- Moose::Util::apply_all_roles(shift, @_);
58
- }
59
-
60
- sub throw_error {
61
- shift;
62
- Class::MOP::Object->throw_error(@_);
63
- }
64
-
65
- sub has {
66
- my $meta = shift;
67
- my $name = shift;
68
-
69
- my %context = Moose::Util::_caller_info;
70
- $context{context} = 'has declaration';
71
- $context{type} = 'class';
72
- my @options = ( definition_context => \%context, @_ );
73
- my $attrs = ( ref($name) eq 'ARRAY' ) ? $name : [ ($name) ];
74
- $meta->add_attribute( $_, @options ) for @$attrs;
75
- }
76
-
77
- sub before {
78
- Moose::Util::add_method_modifier(shift, 'before', \@_);
79
- }
80
-
81
- sub after {
82
- Moose::Util::add_method_modifier(shift, 'after', \@_);
83
- }
84
-
85
- sub around {
86
- Moose::Util::add_method_modifier(shift, 'around', \@_);
87
- }
88
-
89
- our $SUPER_PACKAGE;
90
- our $SUPER_BODY;
91
- our @SUPER_ARGS;
92
-
93
- sub super {
94
- if (@_) {
95
- carp 'Arguments passed to super() are ignored';
96
- }
97
-
98
- # This check avoids a recursion loop - see
99
- # t/bugs/super_recursion.t
100
- return if defined $SUPER_PACKAGE && $SUPER_PACKAGE ne caller();
101
- return unless $SUPER_BODY; $SUPER_BODY->(@SUPER_ARGS);
102
- }
103
-
104
- sub override {
105
- my $meta = shift;
106
- my ( $name, $method ) = @_;
107
- $meta->add_override_method_modifier( $name => $method );
108
- }
109
-
110
- sub inner {
111
- my $pkg = caller();
112
- our ( %INNER_BODY, %INNER_ARGS );
113
-
114
- if ( my $body = $INNER_BODY{$pkg} ) {
115
- my @args = @{ $INNER_ARGS{$pkg} };
116
- local $INNER_ARGS{$pkg};
117
- local $INNER_BODY{$pkg};
118
- return $body->(@args);
119
- } else {
120
- return;
121
- }
122
- }
123
-
124
- sub augment {
125
- my $meta = shift;
126
- my ( $name, $method ) = @_;
127
- $meta->add_augment_method_modifier( $name => $method );
128
- }
129
-
130
- Moose::Exporter->setup_import_methods(
131
- with_meta => [
132
- qw( extends with has before after around override augment )
133
- ],
134
- as_is => [
135
- qw( super inner ),
136
- 'Carp::confess',
137
- 'Scalar::Util::blessed',
138
- ],
139
- );
140
-
141
- sub init_meta {
142
- shift;
143
- my %args = @_;
144
-
145
- my $class = $args{for_class}
146
- or throw_exception( InitMetaRequiresClass => params => \%args );
147
-
148
- my $base_class = $args{base_class} || 'Moose::Object';
149
- my $metaclass = $args{metaclass} || 'Moose::Meta::Class';
150
- my $meta_name = exists $args{meta_name} ? $args{meta_name} : 'meta';
151
-
152
- throw_exception( MetaclassNotLoaded => class_name => $metaclass )
153
- unless is_class_loaded($metaclass);
154
-
155
- throw_exception( MetaclassMustBeASubclassOfMooseMetaClass => class_name => $metaclass )
156
- unless $metaclass->isa('Moose::Meta::Class');
157
-
158
- # make a subtype for each Moose class
159
- class_type($class)
160
- unless find_type_constraint($class);
161
-
162
- my $meta;
163
-
164
- if ( $meta = Class::MOP::get_metaclass_by_name($class) ) {
165
- unless ( $meta->isa("Moose::Meta::Class") ) {
166
- if ( $meta->isa('Moose::Meta::Role') ) {
167
- throw_exception( MetaclassIsARoleNotASubclassOfGivenMetaclass => role_name => $class,
168
- metaclass => $metaclass,
169
- role => $meta
170
- );
171
- } else {
172
- throw_exception( MetaclassIsNotASubclassOfGivenMetaclass => class_name => $class,
173
- metaclass => $metaclass,
174
- class => $meta
175
- );
176
- }
177
- }
178
- } else {
179
- # no metaclass
180
-
181
- # now we check whether our ancestors have metaclass, and if so borrow that
182
- my ( undef, @isa ) = @{ mro::get_linear_isa($class) };
183
-
184
- foreach my $ancestor ( @isa ) {
185
- my $ancestor_meta = Class::MOP::get_metaclass_by_name($ancestor) || next;
186
-
187
- my $ancestor_meta_class = $ancestor_meta->_real_ref_name;
188
-
189
- # if we have an ancestor metaclass that inherits $metaclass, we use
190
- # that. This is like _fix_metaclass_incompatibility, but we can do it now.
191
-
192
- # the case of having an ancestry is not very common, but arises in
193
- # e.g. Reaction
194
- unless ( $metaclass->isa( $ancestor_meta_class ) ) {
195
- if ( $ancestor_meta_class->isa($metaclass) ) {
196
- $metaclass = $ancestor_meta_class;
197
- }
198
- }
199
- }
200
-
201
- $meta = $metaclass->initialize($class);
202
- my $filename = module_notional_filename($meta->name);
203
- $INC{$filename} = '(set by Moose)'
204
- unless exists $INC{$filename};
205
- }
206
-
207
- if (defined $meta_name) {
208
- # also check for inherited non moose 'meta' method?
209
- my $existing = $meta->get_method($meta_name);
210
- if ($existing && !$existing->isa('Class::MOP::Method::Meta')) {
211
- Carp::cluck "Moose is overwriting an existing method named "
212
- . "$meta_name in class $class with a method "
213
- . "which returns the class's metaclass. If this is "
214
- . "actually what you want, you should remove the "
215
- . "existing method, otherwise, you should rename or "
216
- . "disable this generated method using the "
217
- . "'-meta_name' option to 'use Moose'.";
218
- }
219
- $meta->_add_meta_method($meta_name);
220
- }
221
-
222
- # make sure they inherit from Moose::Object
223
- $meta->superclasses($base_class)
224
- unless $meta->superclasses();
225
-
226
- return $meta;
227
- }
228
-
229
- # This may be used in some older MooseX extensions.
230
- sub _get_caller {
231
- goto &Moose::Exporter::_get_caller;
232
- }
233
-
234
- ## make 'em all immutable
235
-
236
- $_->make_immutable(
237
- inline_constructor => 1,
238
- constructor_name => "_new",
239
- # these are Class::MOP accessors, so they need inlining
240
- inline_accessors => 1
241
- ) for grep { $_->is_mutable }
242
- map { $_->meta }
243
- qw(
244
- Moose::Meta::Attribute
245
- Moose::Meta::Class
246
- Moose::Meta::Instance
247
-
248
- Moose::Meta::TypeCoercion
249
- Moose::Meta::TypeCoercion::Union
250
-
251
- Moose::Meta::Method
252
- Moose::Meta::Method::Constructor
253
- Moose::Meta::Method::Destructor
254
- Moose::Meta::Method::Overridden
255
- Moose::Meta::Method::Augmented
256
-
257
- Moose::Meta::Role
258
- Moose::Meta::Role::Attribute
259
- Moose::Meta::Role::Method
260
- Moose::Meta::Role::Method::Required
261
- Moose::Meta::Role::Method::Conflicting
262
-
263
- Moose::Meta::Role::Composite
264
-
265
- Moose::Meta::Role::Application
266
- Moose::Meta::Role::Application::RoleSummation
267
- Moose::Meta::Role::Application::ToClass
268
- Moose::Meta::Role::Application::ToRole
269
- Moose::Meta::Role::Application::ToInstance
270
- );
271
-
272
- $_->make_immutable(
273
- inline_constructor => 0,
274
- constructor_name => undef,
275
- # these are Class::MOP accessors, so they need inlining
276
- inline_accessors => 1
277
- ) for grep { $_->is_mutable }
278
- map { $_->meta }
279
- qw(
280
- Moose::Meta::Method::Accessor
281
- Moose::Meta::Method::Delegation
282
- Moose::Meta::Mixin::AttributeCore
283
- );
284
-
285
- 1;
286
-
287
- # ABSTRACT: A postmodern object system for Perl 5
288
-
289
- __END__
290
-
291
- =pod
292
-
293
- =encoding UTF-8
294
-
295
- =head1 NAME
296
-
297
- Moose - A postmodern object system for Perl 5
298
-
299
- =head1 VERSION
300
-
301
- version 2.2207
302
-
303
- =head1 SYNOPSIS
304
-
305
- package Point;
306
- use Moose; # automatically turns on strict and warnings
307
-
308
- has 'x' => (is => 'rw', isa => 'Int');
309
- has 'y' => (is => 'rw', isa => 'Int');
310
-
311
- sub clear {
312
- my $self = shift;
313
- $self->x(0);
314
- $self->y(0);
315
- }
316
-
317
- package Point3D;
318
- use Moose;
319
-
320
- extends 'Point';
321
-
322
- has 'z' => (is => 'rw', isa => 'Int');
323
-
324
- after 'clear' => sub {
325
- my $self = shift;
326
- $self->z(0);
327
- };
328
-
329
- =head1 DESCRIPTION
330
-
331
- Moose is an extension of the Perl 5 object system.
332
-
333
- The main goal of Moose is to make Perl 5 Object Oriented programming
334
- easier, more consistent, and less tedious. With Moose you can think
335
- more about what you want to do and less about the mechanics of OOP.
336
-
337
- Additionally, Moose is built on top of L<Class::MOP>, which is a
338
- metaclass system for Perl 5. This means that Moose not only makes
339
- building normal Perl 5 objects better, but it provides the power of
340
- metaclass programming as well.
341
-
342
- =head2 New to Moose?
343
-
344
- If you're new to Moose, the best place to start is the
345
- L<Moose::Manual> docs, followed by the L<Moose::Cookbook>. The intro
346
- will show you what Moose is, and how it makes Perl 5 OO better.
347
-
348
- The cookbook recipes on Moose basics will get you up to speed with
349
- many of Moose's features quickly. Once you have an idea of what Moose
350
- can do, you can use the API documentation to get more detail on
351
- features which interest you.
352
-
353
- =head2 Moose Extensions
354
-
355
- The C<MooseX::> namespace is the official place to find Moose extensions.
356
- These extensions can be found on the CPAN. The easiest way to find them
357
- is to search for them (L<https://metacpan.org/search?q=MooseX::>),
358
- or to examine L<Task::Moose> which aims to keep an up-to-date, easily
359
- installable list of Moose extensions.
360
-
361
- =head1 TRANSLATIONS
362
-
363
- Much of the Moose documentation has been translated into other languages.
364
-
365
- =over 4
366
-
367
- =item Japanese
368
-
369
- Japanese docs can be found at
370
- L<http://perldoc.perlassociation.org/pod/Moose-Doc-JA/index.html>. The
371
- source POD files can be found in GitHub:
372
- L<http://github.com/jpa/Moose-Doc-JA>
373
-
374
- =back
375
-
376
- =head1 BUILDING CLASSES WITH MOOSE
377
-
378
- Moose makes every attempt to provide as much convenience as possible during
379
- class construction/definition, but still stay out of your way if you want it
380
- to. Here are a few items to note when building classes with Moose.
381
-
382
- When you C<use Moose>, Moose will set the class's parent class to
383
- L<Moose::Object>, I<unless> the class using Moose already has a parent
384
- class. In addition, specifying a parent with C<extends> will change the parent
385
- class.
386
-
387
- Moose will also manage all attributes (including inherited ones) that are
388
- defined with C<has>. And (assuming you call C<new>, which is inherited from
389
- L<Moose::Object>) this includes properly initializing all instance slots,
390
- setting defaults where appropriate, and performing any type constraint checking
391
- or coercion.
392
-
393
- =head1 PROVIDED METHODS
394
-
395
- Moose provides a number of methods to all your classes, mostly through the
396
- inheritance of L<Moose::Object>. There is however, one exception. By default,
397
- Moose will install a method named C<meta> in any class which uses
398
- C<Moose>. This method returns the current class's metaclass.
399
-
400
- If you'd like to rename this method, you can do so by passing the
401
- C<-meta_name> option when using Moose:
402
-
403
- use Moose -meta_name => 'my_meta';
404
-
405
- However, the L<Moose::Object> class I<also> provides a method named C<meta>
406
- which does the same thing. If your class inherits from L<Moose::Object> (which
407
- is the default), then you will still have a C<meta> method. However, if your
408
- class inherits from a parent which provides a C<meta> method of its own, your
409
- class will inherit that instead.
410
-
411
- If you'd like for Moose to not install a meta method at all, you can pass
412
- C<undef> as the C<-meta_name> option:
413
-
414
- use Moose -meta_name => undef;
415
-
416
- Again, you will still inherit C<meta> from L<Moose::Object> in this case.
417
-
418
- =head1 EXPORTED FUNCTIONS
419
-
420
- Moose will export a number of functions into the class's namespace which
421
- may then be used to set up the class. These functions all work directly
422
- on the current class.
423
-
424
- =head2 extends (@superclasses)
425
-
426
- This function will set the superclass(es) for the current class. If the parent
427
- classes are not yet loaded, then C<extends> tries to load them.
428
-
429
- This approach is recommended instead of C<use L<base>>/C<use L<parent>>, because
430
- C<use base> actually C<push>es onto the class's C<@ISA>, whereas C<extends> will
431
- replace it. This is important to ensure that classes which do not have
432
- superclasses still properly inherit from L<Moose::Object>.
433
-
434
- Each superclass can be followed by a hash reference with options. Currently,
435
- only L<-version|Class::MOP/Class Loading Options> is recognized:
436
-
437
- extends 'My::Parent' => { -version => 0.01 },
438
- 'My::OtherParent' => { -version => 0.03 };
439
-
440
- An exception will be thrown if the version requirements are not
441
- satisfied.
442
-
443
- =head2 with (@roles)
444
-
445
- This will apply a given set of C<@roles> to the local class.
446
-
447
- Like with C<extends>, each specified role can be followed by a hash
448
- reference with a L<-version|Class::MOP/Class Loading Options> option:
449
-
450
- with 'My::Role' => { -version => 0.32 },
451
- 'My::Otherrole' => { -version => 0.23 };
452
-
453
- The specified version requirements must be satisfied, otherwise an
454
- exception will be thrown.
455
-
456
- If your role takes options or arguments, they can be passed along in the
457
- hash reference as well.
458
-
459
- You should only use one C<with>, even if you are consuming multiple roles. If
460
- you consume roles using multiple C<with> statements Moose cannot detect method
461
- conflicts between those roles.
462
-
463
- =head2 has $name|@$names =E<gt> %options
464
-
465
- This will install an attribute of a given C<$name> into the current class. If
466
- the first parameter is an array reference, it will create an attribute for
467
- every C<$name> in the list. The C<%options> will be passed to the constructor
468
- for L<Moose::Meta::Attribute> (which inherits from L<Class::MOP::Attribute>),
469
- so the full documentation for the valid options can be found there. These are
470
- the most commonly used options:
471
-
472
- =over 4
473
-
474
- =item I<is =E<gt> 'rw'|'ro'>
475
-
476
- The I<is> option accepts either I<rw> (for read/write) or I<ro> (for read
477
- only). These will create either a read/write accessor or a read-only
478
- accessor respectively, using the same name as the C<$name> of the attribute.
479
-
480
- If you need more control over how your accessors are named, you can
481
- use the L<reader|Class::MOP::Attribute/reader>,
482
- L<writer|Class::MOP::Attribute/writer> and
483
- L<accessor|Class::MOP::Attribute/accessor> options inherited from
484
- L<Class::MOP::Attribute>, however if you use those, you won't need the
485
- I<is> option.
486
-
487
- =item I<isa =E<gt> $type_name>
488
-
489
- The I<isa> option uses Moose's type constraint facilities to set up runtime
490
- type checking for this attribute. Moose will perform the checks during class
491
- construction, and within any accessors. The C<$type_name> argument must be a
492
- string. The string may be either a class name or a type defined using
493
- Moose's type definition features. (Refer to L<Moose::Util::TypeConstraints>
494
- for information on how to define a new type, and how to retrieve type meta-data).
495
-
496
- =item I<coerce =E<gt> (1|0)>
497
-
498
- This will attempt to use coercion with the supplied type constraint to change
499
- the value passed into any accessors or constructors. You B<must> supply a type
500
- constraint, and that type constraint B<must> define a coercion. See
501
- L<Moose::Cookbook::Basics::HTTP_SubtypesAndCoercion> for an example.
502
-
503
- =item I<does =E<gt> $role_name>
504
-
505
- This will accept the name of a role which the value stored in this attribute
506
- is expected to have consumed.
507
-
508
- =item I<required =E<gt> (1|0)>
509
-
510
- This marks the attribute as being required. This means a value must be
511
- supplied during class construction, I<or> the attribute must be lazy
512
- and have either a default or a builder. Note that C<required> does not
513
- say anything about the attribute's value, which can be C<undef>.
514
-
515
- =item I<weak_ref =E<gt> (1|0)>
516
-
517
- This will tell the class to store the value of this attribute as a weakened
518
- reference. If an attribute is a weakened reference, it B<cannot> also be
519
- coerced. Note that when a weak ref expires, the attribute's value becomes
520
- undefined, and is still considered to be set for purposes of predicate,
521
- default, etc.
522
-
523
- =item I<lazy =E<gt> (1|0)>
524
-
525
- This will tell the class to not create this slot until absolutely necessary.
526
- If an attribute is marked as lazy it B<must> have a default or builder
527
- supplied.
528
-
529
- =item I<trigger =E<gt> $code>
530
-
531
- The I<trigger> option is a CODE reference which will be called after
532
- the value of the attribute is set. The CODE ref is passed the
533
- instance itself, the updated value, and the original value if the
534
- attribute was already set.
535
-
536
- You B<can> have a trigger on a read-only attribute.
537
-
538
- B<NOTE:> Triggers will only fire when you B<assign> to the attribute,
539
- either in the constructor, or using the writer. Default and built values will
540
- B<not> cause the trigger to be fired.
541
-
542
- =item I<handles =E<gt> ARRAY | HASH | REGEXP | ROLE | ROLETYPE | DUCKTYPE | CODE>
543
-
544
- The I<handles> option provides Moose classes with automated delegation features.
545
- This is a pretty complex and powerful option. It accepts many different option
546
- formats, each with its own benefits and drawbacks.
547
-
548
- B<NOTE:> The class being delegated to does not need to be a Moose based class,
549
- which is why this feature is especially useful when wrapping non-Moose classes.
550
-
551
- All I<handles> option formats share the following traits:
552
-
553
- You cannot override a locally defined method with a delegated method; an
554
- exception will be thrown if you try. That is to say, if you define C<foo> in
555
- your class, you cannot override it with a delegated C<foo>. This is almost never
556
- something you would want to do, and if it is, you should do it by hand and not
557
- use Moose.
558
-
559
- You cannot override any of the methods found in Moose::Object, or the C<BUILD>
560
- and C<DEMOLISH> methods. These will not throw an exception, but will silently
561
- move on to the next method in the list. My reasoning for this is that you would
562
- almost never want to do this, since it usually breaks your class. As with
563
- overriding locally defined methods, if you do want to do this, you should do it
564
- manually, not with Moose.
565
-
566
- You do not I<need> to have a reader (or accessor) for the attribute in order
567
- to delegate to it. Moose will create a means of accessing the value for you,
568
- however this will be several times B<less> efficient then if you had given
569
- the attribute a reader (or accessor) to use.
570
-
571
- Below is the documentation for each option format:
572
-
573
- =over 4
574
-
575
- =item C<ARRAY>
576
-
577
- This is the most common usage for I<handles>. You basically pass a list of
578
- method names to be delegated, and Moose will install a delegation method
579
- for each one.
580
-
581
- =item C<HASH>
582
-
583
- This is the second most common usage for I<handles>. Instead of a list of
584
- method names, you pass a HASH ref where each key is the method name you
585
- want installed locally, and its value is the name of the original method
586
- in the class being delegated to.
587
-
588
- This can be very useful for recursive classes like trees. Here is a
589
- quick example (soon to be expanded into a Moose::Cookbook recipe):
590
-
591
- package Tree;
592
- use Moose;
593
-
594
- has 'node' => (is => 'rw', isa => 'Any');
595
-
596
- has 'children' => (
597
- is => 'ro',
598
- isa => 'ArrayRef',
599
- default => sub { [] }
600
- );
601
-
602
- has 'parent' => (
603
- is => 'rw',
604
- isa => 'Tree',
605
- weak_ref => 1,
606
- handles => {
607
- parent_node => 'node',
608
- siblings => 'children',
609
- }
610
- );
611
-
612
- In this example, the Tree package gets C<parent_node> and C<siblings> methods,
613
- which delegate to the C<node> and C<children> methods (respectively) of the Tree
614
- instance stored in the C<parent> slot.
615
-
616
- You may also use an array reference to curry arguments to the original method.
617
-
618
- has 'thing' => (
619
- ...
620
- handles => { set_foo => [ set => 'foo' ] },
621
- );
622
-
623
- # $self->set_foo(...) calls $self->thing->set('foo', ...)
624
-
625
- The first element of the array reference is the original method name, and the
626
- rest is a list of curried arguments.
627
-
628
- =item C<REGEXP>
629
-
630
- The regexp option works very similar to the ARRAY option, except that it builds
631
- the list of methods for you. It starts by collecting all possible methods of the
632
- class being delegated to, then filters that list using the regexp supplied here.
633
-
634
- B<NOTE:> An I<isa> option is required when using the regexp option format. This
635
- is so that we can determine (at compile time) the method list from the class.
636
- Without an I<isa> this is just not possible.
637
-
638
- =item C<ROLE> or C<ROLETYPE>
639
-
640
- With the role option, you specify the name of a role or a
641
- L<role type|Moose::Meta::TypeConstraint::Role> whose "interface" then becomes
642
- the list of methods to handle. The "interface" can be defined as; the methods
643
- of the role and any required methods of the role. It should be noted that this
644
- does B<not> include any method modifiers or generated attribute methods (which
645
- is consistent with role composition).
646
-
647
- =item C<DUCKTYPE>
648
-
649
- With the duck type option, you pass a duck type object whose "interface" then
650
- becomes the list of methods to handle. The "interface" can be defined as the
651
- list of methods passed to C<duck_type> to create a duck type object. For more
652
- information on C<duck_type> please check
653
- L<Moose::Util::TypeConstraints>.
654
-
655
- =item C<CODE>
656
-
657
- This is the option to use when you really want to do something funky. You should
658
- only use it if you really know what you are doing, as it involves manual
659
- metaclass twiddling.
660
-
661
- This takes a code reference, which should expect two arguments. The first is the
662
- attribute meta-object this I<handles> is attached to. The second is the
663
- metaclass of the class being delegated to. It expects you to return a hash (not
664
- a HASH ref) of the methods you want mapped.
665
-
666
- =back
667
-
668
- =item I<traits =E<gt> [ @role_names ]>
669
-
670
- This tells Moose to take the list of C<@role_names> and apply them to the
671
- attribute meta-object. Custom attribute metaclass traits are useful for
672
- extending the capabilities of the I<has> keyword: they are the simplest way to
673
- extend the MOP, but they are still a fairly advanced topic and too much to
674
- cover here.
675
-
676
- See L<Metaclass and Trait Name Resolution> for details on how a trait name is
677
- resolved to a role name.
678
-
679
- Also see L<Moose::Cookbook::Meta::Labeled_AttributeTrait> for a metaclass
680
- trait example.
681
-
682
- =item I<builder> => Str
683
-
684
- The value of this key is the name of the method that will be called to obtain
685
- the value used to initialize the attribute. See the L<builder option docs in
686
- Class::MOP::Attribute|Class::MOP::Attribute/builder> and/or
687
- L<Moose::Cookbook::Basics::BinaryTree_BuilderAndLazyBuild> for more
688
- information.
689
-
690
- =item I<default> => SCALAR | CODE
691
-
692
- The value of this key is the default value which will initialize the attribute.
693
-
694
- NOTE: If the value is a simple scalar (string or number), then it can
695
- be just passed as is. However, if you wish to initialize it with a
696
- HASH or ARRAY ref, then you need to wrap that inside a CODE reference.
697
- See the L<default option docs in
698
- Class::MOP::Attribute|Class::MOP::Attribute/default> for more
699
- information.
700
-
701
- =item I<clearer> => Str
702
-
703
- Creates a method allowing you to clear the value. See the L<clearer option
704
- docs in Class::MOP::Attribute|Class::MOP::Attribute/clearer> for more
705
- information.
706
-
707
- =item I<predicate> => Str
708
-
709
- Creates a method to perform a basic test to see if a value has been set in the
710
- attribute. See the L<predicate option docs in
711
- Class::MOP::Attribute|Class::MOP::Attribute/predicate> for more information.
712
-
713
- Note that the predicate will return true even for a C<weak_ref> attribute
714
- whose value has expired.
715
-
716
- =item I<documentation> => $string
717
-
718
- An arbitrary string that can be retrieved later by calling C<<
719
- $attr->documentation >>.
720
-
721
- =back
722
-
723
- =head2 has +$name =E<gt> %options
724
-
725
- This is variation on the normal attribute creator C<has> which allows you to
726
- clone and extend an attribute from a superclass or from a role. Here is an
727
- example of the superclass usage:
728
-
729
- package Foo;
730
- use Moose;
731
-
732
- has 'message' => (
733
- is => 'rw',
734
- isa => 'Str',
735
- default => 'Hello, I am a Foo'
736
- );
737
-
738
- package My::Foo;
739
- use Moose;
740
-
741
- extends 'Foo';
742
-
743
- has '+message' => (default => 'Hello I am My::Foo');
744
-
745
- What is happening here is that B<My::Foo> is cloning the C<message> attribute
746
- from its parent class B<Foo>, retaining the C<is =E<gt> 'rw'> and C<isa =E<gt>
747
- 'Str'> characteristics, but changing the value in C<default>.
748
-
749
- Here is another example, but within the context of a role:
750
-
751
- package Foo::Role;
752
- use Moose::Role;
753
-
754
- has 'message' => (
755
- is => 'rw',
756
- isa => 'Str',
757
- default => 'Hello, I am a Foo'
758
- );
759
-
760
- package My::Foo;
761
- use Moose;
762
-
763
- with 'Foo::Role';
764
-
765
- has '+message' => (default => 'Hello I am My::Foo');
766
-
767
- In this case, we are basically taking the attribute which the role supplied
768
- and altering it within the bounds of this feature.
769
-
770
- Note that you can only extend an attribute from either a superclass or a role,
771
- you cannot extend an attribute in a role that composes over an attribute from
772
- another role.
773
-
774
- Aside from where the attributes come from (one from superclass, the other
775
- from a role), this feature works exactly the same. This feature is restricted
776
- somewhat, so as to try and force at least I<some> sanity into it. Most options work the same, but there are some exceptions:
777
-
778
- =over 4
779
-
780
- =item I<reader>
781
-
782
- =item I<writer>
783
-
784
- =item I<accessor>
785
-
786
- =item I<clearer>
787
-
788
- =item I<predicate>
789
-
790
- These options can be added, but cannot override a superclass definition.
791
-
792
- =item I<traits>
793
-
794
- You are allowed to B<add> additional traits to the C<traits> definition.
795
- These traits will be composed into the attribute, but preexisting traits
796
- B<are not> overridden, or removed.
797
-
798
- =back
799
-
800
- =head2 before $name|@names|\@names|qr/.../ =E<gt> sub { ... }
801
-
802
- =head2 after $name|@names|\@names|qr/.../ =E<gt> sub { ... }
803
-
804
- =head2 around $name|@names|\@names|qr/.../ =E<gt> sub { ... }
805
-
806
- These three items are syntactic sugar for the before, after, and around method
807
- modifier features that L<Class::MOP> provides. More information on these may be
808
- found in L<Moose::Manual::MethodModifiers> and the
809
- L<Class::MOP::Class documentation|Class::MOP::Class/"Method Modifiers">.
810
-
811
- =head2 override ($name, &sub)
812
-
813
- An C<override> method is a way of explicitly saying "I am overriding this
814
- method from my superclass". You can call C<super> within this method, and
815
- it will work as expected. The same thing I<can> be accomplished with a normal
816
- method call and the C<SUPER::> pseudo-package; it is really your choice.
817
-
818
- =head2 super
819
-
820
- The keyword C<super> is a no-op when called outside of an C<override> method. In
821
- the context of an C<override> method, it will call the next most appropriate
822
- superclass method with the same arguments as the original method.
823
-
824
- =head2 augment ($name, &sub)
825
-
826
- An C<augment> method, is a way of explicitly saying "I am augmenting this
827
- method from my superclass". Once again, the details of how C<inner> and
828
- C<augment> work is best described in the
829
- L<Moose::Cookbook::Basics::Document_AugmentAndInner>.
830
-
831
- =head2 inner
832
-
833
- The keyword C<inner>, much like C<super>, is a no-op outside of the context of
834
- an C<augment> method. You can think of C<inner> as being the inverse of
835
- C<super>; the details of how C<inner> and C<augment> work is best described in
836
- the L<Moose::Cookbook::Basics::Document_AugmentAndInner>.
837
-
838
- =head2 blessed
839
-
840
- This is the C<Scalar::Util::blessed> function. It is highly recommended that
841
- this is used instead of C<ref> anywhere you need to test for an object's class
842
- name.
843
-
844
- =head2 confess
845
-
846
- This is the C<Carp::confess> function, and exported here for historical
847
- reasons.
848
-
849
- =head1 METACLASS
850
-
851
- When you use Moose, you can specify traits which will be applied to your
852
- metaclass:
853
-
854
- use Moose -traits => 'My::Trait';
855
-
856
- This is very similar to the attribute traits feature. When you do
857
- this, your class's C<meta> object will have the specified traits
858
- applied to it.
859
-
860
- =head2 Metaclass and Trait Name Resolution
861
-
862
- By default, when given a trait name, Moose simply tries to load a
863
- class of the same name. If such a class does not exist, it then looks
864
- for a class matching
865
- B<Moose::Meta::$type::Custom::Trait::$trait_name>. The C<$type>
866
- variable here will be one of B<Attribute> or B<Class>, depending on
867
- what the trait is being applied to.
868
-
869
- If a class with this long name exists, Moose checks to see if it has
870
- the method C<register_implementation>. This method is expected to
871
- return the I<real> class name of the trait. If there is no
872
- C<register_implementation> method, it will fall back to using
873
- B<Moose::Meta::$type::Custom::Trait::$trait> as the trait name.
874
-
875
- The lookup method for metaclasses is the same, except that it looks
876
- for a class matching B<Moose::Meta::$type::Custom::$metaclass_name>.
877
-
878
- If all this is confusing, take a look at
879
- L<Moose::Cookbook::Meta::Labeled_AttributeTrait>, which demonstrates how to
880
- create an attribute trait.
881
-
882
- =head1 UNIMPORTING FUNCTIONS
883
-
884
- =head2 B<unimport>
885
-
886
- Moose offers a way to remove the keywords it exports, through the C<unimport>
887
- method. You simply have to say C<no Moose> at the bottom of your code for this
888
- to work. Here is an example:
889
-
890
- package Person;
891
- use Moose;
892
-
893
- has 'first_name' => (is => 'rw', isa => 'Str');
894
- has 'last_name' => (is => 'rw', isa => 'Str');
895
-
896
- sub full_name {
897
- my $self = shift;
898
- $self->first_name . ' ' . $self->last_name
899
- }
900
-
901
- no Moose; # keywords are removed from the Person package
902
-
903
- =head1 EXTENDING AND EMBEDDING MOOSE
904
-
905
- To learn more about extending Moose, we recommend checking out the
906
- "Extending" recipes in the L<Moose::Cookbook>, starting with
907
- L<Moose::Cookbook::Extending::ExtensionOverview>, which provides an overview of
908
- all the different ways you might extend Moose. L<Moose::Exporter> and
909
- L<Moose::Util::MetaRole> are the modules which provide the majority of the
910
- extension functionality, so reading their documentation should also be helpful.
911
-
912
- =head2 The MooseX:: namespace
913
-
914
- Generally if you're writing an extension I<for> Moose itself you'll want
915
- to put your extension in the C<MooseX::> namespace. This namespace is
916
- specifically for extensions that make Moose better or different in some
917
- fundamental way. It is traditionally B<not> for a package that just happens
918
- to use Moose. This namespace follows from the examples of the C<LWPx::>
919
- and C<DBIx::> namespaces that perform the same function for C<LWP> and C<DBI>
920
- respectively.
921
-
922
- =head1 METACLASS COMPATIBILITY AND MOOSE
923
-
924
- Metaclass compatibility is a thorny subject. You should start by
925
- reading the "About Metaclass compatibility" section in the
926
- L<Class::MOP> docs.
927
-
928
- Moose will attempt to resolve a few cases of metaclass incompatibility
929
- when you set the superclasses for a class, in addition to the cases that
930
- L<Class::MOP> handles.
931
-
932
- Moose tries to determine if the metaclasses only "differ by roles". This
933
- means that the parent and child's metaclass share a common ancestor in
934
- their respective hierarchies, and that the subclasses under the common
935
- ancestor are only different because of role applications. This case is
936
- actually fairly common when you mix and match various C<MooseX::*>
937
- modules, many of which apply roles to the metaclass.
938
-
939
- If the parent and child do differ by roles, Moose replaces the
940
- metaclass in the child with a newly created metaclass. This metaclass
941
- is a subclass of the parent's metaclass which does all of the roles that
942
- the child's metaclass did before being replaced. Effectively, this
943
- means the new metaclass does all of the roles done by both the
944
- parent's and child's original metaclasses.
945
-
946
- Ultimately, this is all transparent to you except in the case of an
947
- unresolvable conflict.
948
-
949
- =head1 CAVEATS
950
-
951
- It should be noted that C<super> and C<inner> B<cannot> be used in the same
952
- method. However, they may be combined within the same class hierarchy; see
953
- F<t/basics/override_augment_inner_super.t> for an example.
954
-
955
- The reason for this is that C<super> is only valid within a method
956
- with the C<override> modifier, and C<inner> will never be valid within an
957
- C<override> method. In fact, C<augment> will skip over any C<override> methods
958
- when searching for its appropriate C<inner>.
959
-
960
- This might seem like a restriction, but I am of the opinion that keeping these
961
- two features separate (yet interoperable) actually makes them easy to use, since
962
- their behavior is then easier to predict. Time will tell whether I am right or
963
- not (UPDATE: so far so good).
964
-
965
- =head1 GETTING HELP
966
-
967
- We offer both a mailing list and a very active IRC channel.
968
-
969
- The mailing list is L<mailto:moose@perl.org>. You must be subscribed to send
970
- a message. To subscribe, send an empty message to
971
- L<mailto:moose-subscribe@perl.org>
972
-
973
- You can also visit us at C<#moose> on L<irc://irc.perl.org/#moose>
974
- This channel is quite active, and questions at all levels (on Moose-related
975
- topics ;) are welcome.
976
-
977
- =head1 WHAT DOES MOOSE STAND FOR?
978
-
979
- Moose doesn't stand for one thing in particular, however, if you want, here
980
- are a few of our favorites. Feel free to contribute more!
981
-
982
- =over 4
983
-
984
- =item * Make Other Object Systems Envious
985
-
986
- =item * Makes Object Orientation So Easy
987
-
988
- =item * Makes Object Orientation Spiffy- Er (sorry ingy)
989
-
990
- =item * Most Other Object Systems Emasculate
991
-
992
- =item * Moose Often Ovulate Sorta Early
993
-
994
- =item * Moose Offers Often Super Extensions
995
-
996
- =item * Meta Object Obligates Salivary Excitation
997
-
998
- =item * Meta Object Orientation Syntax Extensions
999
-
1000
- =item * Moo, Only Overengineered, Slow, and Execrable (blame rjbs!)
1001
-
1002
- =item * Massive Object-Oriented Stacktrace Emitter
1003
-
1004
- =back
1005
-
1006
- =head1 ACKNOWLEDGEMENTS
1007
-
1008
- =over 4
1009
-
1010
- =item I blame Sam Vilain for introducing me to the insanity that is meta-models.
1011
-
1012
- =item I blame Audrey Tang for then encouraging my meta-model habit in #perl6.
1013
-
1014
- =item Without Yuval "nothingmuch" Kogman this module would not be possible,
1015
- and it certainly wouldn't have this name ;P
1016
-
1017
- =item The basis of the TypeContraints module was Rob Kinyon's idea
1018
- originally, I just ran with it.
1019
-
1020
- =item Thanks to mst & chansen and the whole #moose posse for all the
1021
- early ideas/feature-requests/encouragement/bug-finding.
1022
-
1023
- =item Thanks to David "Theory" Wheeler for meta-discussions and spelling fixes.
1024
-
1025
- =back
1026
-
1027
- =head1 SEE ALSO
1028
-
1029
- =over 4
1030
-
1031
- =item L<http://moose.perl.org/>
1032
-
1033
- This is the official web home of Moose. It contains links to our public git
1034
- repository, as well as links to a number of talks and articles on Moose and
1035
- Moose related technologies.
1036
-
1037
- =item the L<Moose manual|Moose::Manual>
1038
-
1039
- This is an introduction to Moose which covers most of the basics.
1040
-
1041
- =item Modern Perl, by chromatic
1042
-
1043
- This is an introduction to modern Perl programming, which includes a section on
1044
- Moose. It is available in print and as a free download from
1045
- L<http://onyxneon.com/books/modern_perl/>.
1046
-
1047
- =item The Moose is flying, a tutorial by Randal Schwartz
1048
-
1049
- Part 1 - L<http://www.stonehenge.com/merlyn/LinuxMag/col94.html>
1050
-
1051
- Part 2 - L<http://www.stonehenge.com/merlyn/LinuxMag/col95.html>
1052
-
1053
- =item Several Moose extension modules in the C<MooseX::> namespace.
1054
-
1055
- See L<https://metacpan.org/search?q=MooseX::> for extensions.
1056
-
1057
- =back
1058
-
1059
- =head2 Books
1060
-
1061
- =over 4
1062
-
1063
- =item The Art of the MetaObject Protocol
1064
-
1065
- I mention this in the L<Class::MOP> docs too, as this book was critical in
1066
- the development of both modules and is highly recommended.
1067
-
1068
- =back
1069
-
1070
- =head2 Papers
1071
-
1072
- =over 4
1073
-
1074
- =item L<http://www.cs.utah.edu/plt/publications/oopsla04-gff.pdf>
1075
-
1076
- This paper (suggested by lbr on #moose) was what lead to the implementation
1077
- of the C<super>/C<override> and C<inner>/C<augment> features. If you really
1078
- want to understand them, I suggest you read this.
1079
-
1080
- =back
1081
-
1082
- =head1 BUGS
1083
-
1084
- All complex software has bugs lurking in it, and this module is no
1085
- exception.
1086
-
1087
- Please report any bugs to C<bug-moose@rt.cpan.org>, or through the web
1088
- interface at L<http://rt.cpan.org>. You can also submit a C<TODO> test as a
1089
- pull request at L<https://github.com/moose/Moose>.
1090
-
1091
- You can also discuss feature requests or possible bugs on the Moose mailing
1092
- list (moose@perl.org) or on IRC at L<irc://irc.perl.org/#moose>.
1093
-
1094
- =head1 FEATURE REQUESTS
1095
-
1096
- We are very strict about what features we add to the Moose core, especially
1097
- the user-visible features. Instead we have made sure that the underlying
1098
- meta-system of Moose is as extensible as possible so that you can add your
1099
- own features easily.
1100
-
1101
- That said, occasionally there is a feature needed in the meta-system
1102
- to support your planned extension, in which case you should either
1103
- email the mailing list (moose@perl.org) or join us on IRC at
1104
- L<irc://irc.perl.org/#moose> to discuss. The
1105
- L<Moose::Manual::Contributing> has more detail about how and when you
1106
- can contribute.
1107
-
1108
- =head1 CABAL
1109
-
1110
- There are only a few people with the rights to release a new version
1111
- of Moose. The Moose Cabal are the people to go to with questions regarding
1112
- the wider purview of Moose. They help maintain not just the code
1113
- but the community as well. See the list below under L</AUTHORS>.
1114
-
1115
- =head1 CONTRIBUTORS
1116
-
1117
- Moose is a community project, and as such, involves the work of many, many
1118
- members of the community beyond just the members in the cabal. In particular:
1119
-
1120
- Dave (autarch) Rolsky wrote most of the documentation in L<Moose::Manual>.
1121
-
1122
- John (jgoulah) Goulah wrote L<Moose::Cookbook::Snack::Keywords>.
1123
-
1124
- Jess (castaway) Robinson wrote L<Moose::Cookbook::Snack::Types>.
1125
-
1126
- Aran (bluefeet) Clary Deltac wrote
1127
- L<Moose::Cookbook::Basics::Genome_OverloadingSubtypesAndCoercion>.
1128
-
1129
- Anders (Debolaz) Nor Berle contributed L<Test::Moose> and L<Moose::Util>.
1130
-
1131
- Also, the code in L<Moose::Meta::Attribute::Native> is based on code from the
1132
- L<MooseX::AttributeHelpers> distribution, which had contributions from:
1133
-
1134
- Chris (perigrin) Prather
1135
-
1136
- Cory (gphat) Watson
1137
-
1138
- Evan Carroll
1139
-
1140
- Florian (rafl) Ragwitz
1141
-
1142
- Jason May
1143
-
1144
- Jay Hannah
1145
-
1146
- Jesse (doy) Luehrs
1147
-
1148
- Paul (frodwith) Driver
1149
-
1150
- Robert (rlb3) Boone
1151
-
1152
- Robert Buels
1153
-
1154
- Robert (phaylon) Sedlacek
1155
-
1156
- Shawn (Sartak) Moore
1157
-
1158
- Stevan Little
1159
-
1160
- Tom (dec) Lanyon
1161
-
1162
- Yuval Kogman
1163
-
1164
- Finally, these people also contributed various tests, bug fixes,
1165
- documentation, and features to the Moose codebase:
1166
-
1167
- Aankhen
1168
-
1169
- Adam (Alias) Kennedy
1170
-
1171
- Christian (chansen) Hansen
1172
-
1173
- Cory (gphat) Watson
1174
-
1175
- Dylan Hardison (doc fixes)
1176
-
1177
- Eric (ewilhelm) Wilhelm
1178
-
1179
- Evan Carroll
1180
-
1181
- Guillermo (groditi) Roditi
1182
-
1183
- Jason May
1184
-
1185
- Jay Hannah
1186
-
1187
- Jonathan (jrockway) Rockway
1188
-
1189
- Matt (mst) Trout
1190
-
1191
- Nathan (kolibrie) Gray
1192
-
1193
- Paul (frodwith) Driver
1194
-
1195
- Piotr (dexter) Roszatycki
1196
-
1197
- Robert Buels
1198
-
1199
- Robert (phaylon) Sedlacek
1200
-
1201
- Robert (rlb3) Boone
1202
-
1203
- Sam (mugwump) Vilain
1204
-
1205
- Scott (konobi) McWhirter
1206
-
1207
- Shlomi (rindolf) Fish
1208
-
1209
- Tom (dec) Lanyon
1210
-
1211
- Wallace (wreis) Reis
1212
-
1213
- ... and many other #moose folks
1214
-
1215
- =head1 AUTHORS
1216
-
1217
- =over 4
1218
-
1219
- =item *
1220
-
1221
- Stevan Little <stevan@cpan.org>
1222
-
1223
- =item *
1224
-
1225
- Dave Rolsky <autarch@urth.org>
1226
-
1227
- =item *
1228
-
1229
- Jesse Luehrs <doy@cpan.org>
1230
-
1231
- =item *
1232
-
1233
- Shawn M Moore <sartak@cpan.org>
1234
-
1235
- =item *
1236
-
1237
- יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
1238
-
1239
- =item *
1240
-
1241
- Karen Etheridge <ether@cpan.org>
1242
-
1243
- =item *
1244
-
1245
- Florian Ragwitz <rafl@debian.org>
1246
-
1247
- =item *
1248
-
1249
- Hans Dieter Pearcey <hdp@cpan.org>
1250
-
1251
- =item *
1252
-
1253
- Chris Prather <chris@prather.org>
1254
-
1255
- =item *
1256
-
1257
- Matt S Trout <mstrout@cpan.org>
1258
-
1259
- =back
1260
-
1261
- =head1 COPYRIGHT AND LICENSE
1262
-
1263
- This software is copyright (c) 2006 by Infinity Interactive, Inc.
1264
-
1265
- This is free software; you can redistribute it and/or modify it under
1266
- the same terms as the Perl 5 programming language system itself.
1267
-
1268
- =cut