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,4124 +0,0 @@
1
- # PODNAME: Moose::Manual::Exceptions::Manifest
2
- # ABSTRACT: Moose's Exception Types
3
-
4
- __END__
5
-
6
- =pod
7
-
8
- =encoding UTF-8
9
-
10
- =head1 NAME
11
-
12
- Moose::Manual::Exceptions::Manifest - Moose's Exception Types
13
-
14
- =head1 VERSION
15
-
16
- version 2.2207
17
-
18
- =head1 DESCRIPTION
19
-
20
- This document contains a manifest of all the exception classes that are thrown
21
- as Moose internal errors.
22
-
23
- =head1 COMMON ELEMENTS
24
-
25
- Unless otherwise stated, all classes are subclasses of L<Moose::Exception>.
26
-
27
- Similarly, all classes provide the following attribute reader methods:
28
-
29
- =head2 $exception->message
30
-
31
- This method returns the error message for the exception.
32
-
33
- =head2 $exception->trace
34
-
35
- This method returns a L<Devel::StackTrace> object.
36
-
37
- =head1 EXCEPTION CLASSES
38
-
39
- Moose ships with the following exception classes:
40
-
41
- =head2 Moose::Exception::AccessorMustReadWrite
42
-
43
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
44
-
45
- This class has the following methods:
46
-
47
- =over 4
48
-
49
- =item * $exception->attribute_name()
50
-
51
- Returns a Str value.
52
-
53
- =item * $exception->params()
54
-
55
- Returns a HashRef value.
56
-
57
- =back
58
-
59
- =head2 Moose::Exception::AddParameterizableTypeTakesParameterizableType
60
-
61
- This class has the following methods:
62
-
63
- =over 4
64
-
65
- =item * $exception->type_name()
66
-
67
- Returns a Str value.
68
-
69
- =back
70
-
71
- =head2 Moose::Exception::AddRoleTakesAMooseMetaRoleInstance
72
-
73
- This class consumes the Moose::Exception::Role::Class role.
74
-
75
- This class has the following methods:
76
-
77
- =over 4
78
-
79
- =item * $exception->class_name()
80
-
81
- Returns a Str value.
82
-
83
- This attribute can be used for fetching metaclass instance:
84
-
85
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
86
-
87
-
88
- =item * $exception->role_to_be_added()
89
-
90
- =back
91
-
92
- =head2 Moose::Exception::AddRoleToARoleTakesAMooseMetaRole
93
-
94
- This class consumes the Moose::Exception::Role::Role role.
95
-
96
- This class has the following methods:
97
-
98
- =over 4
99
-
100
- =item * $exception->role_name()
101
-
102
- Returns a Str value.
103
-
104
- This attribute can be used for fetching the class's metaclass instance:
105
-
106
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
107
-
108
-
109
- =item * $exception->role_to_be_added()
110
-
111
- =back
112
-
113
- =head2 Moose::Exception::ApplyTakesABlessedInstance
114
-
115
- This class consumes the Moose::Exception::Role::Role role.
116
-
117
- This class has the following methods:
118
-
119
- =over 4
120
-
121
- =item * $exception->param()
122
-
123
- =item * $exception->role_name()
124
-
125
- Returns a Str value.
126
-
127
- This attribute can be used for fetching the class's metaclass instance:
128
-
129
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
130
-
131
-
132
- =back
133
-
134
- =head2 Moose::Exception::AttachToClassNeedsAClassMOPClassInstanceOrASubclass
135
-
136
- This class consumes the Moose::Exception::Role::Attribute role.
137
-
138
- This class has the following methods:
139
-
140
- =over 4
141
-
142
- =item * $exception->attribute()
143
-
144
- Returns a L<Class::MOP::Attribute> object.
145
-
146
- =item * $exception->class()
147
-
148
- =back
149
-
150
- =head2 Moose::Exception::AttributeConflictInRoles
151
-
152
- This class consumes the Moose::Exception::Role::Role role.
153
-
154
- This class has the following methods:
155
-
156
- =over 4
157
-
158
- =item * $exception->attribute_name()
159
-
160
- Returns a Str value.
161
-
162
- =item * $exception->role_name()
163
-
164
- Returns a Str value.
165
-
166
- This attribute can be used for fetching the class's metaclass instance:
167
-
168
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
169
-
170
-
171
- =item * $exception->second_role_name()
172
-
173
- Returns a Str value.
174
-
175
- =back
176
-
177
- =head2 Moose::Exception::AttributeConflictInSummation
178
-
179
- This class consumes the Moose::Exception::Role::AttributeName and Moose::Exception::Role::Role roles.
180
-
181
- This class has the following methods:
182
-
183
- =over 4
184
-
185
- =item * $exception->attribute_name()
186
-
187
- Returns a Str value.
188
-
189
- =item * $exception->role_name()
190
-
191
- Returns a Str value.
192
-
193
- This attribute can be used for fetching the class's metaclass instance:
194
-
195
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
196
-
197
-
198
- =item * $exception->second_role_name()
199
-
200
- Returns a Str value.
201
-
202
- =back
203
-
204
- =head2 Moose::Exception::AttributeExtensionIsNotSupportedInRoles
205
-
206
- This class consumes the Moose::Exception::Role::Role role.
207
-
208
- This class has the following methods:
209
-
210
- =over 4
211
-
212
- =item * $exception->attribute_name()
213
-
214
- Returns a Str value.
215
-
216
- =item * $exception->role_name()
217
-
218
- Returns a Str value.
219
-
220
- This attribute can be used for fetching the class's metaclass instance:
221
-
222
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
223
-
224
-
225
- =back
226
-
227
- =head2 Moose::Exception::AttributeIsRequired
228
-
229
- This class consumes the Moose::Exception::Role::Class role.
230
-
231
- This class has the following methods:
232
-
233
- =over 4
234
-
235
- =item * $exception->attribute_init_arg()
236
-
237
- Returns a Str value.
238
-
239
- =item * $exception->attribute_name()
240
-
241
- Returns a Str value.
242
-
243
- This attribute can be used for fetching attribute instance:
244
-
245
- my $class = Moose::Util::find_meta( $exception->class_name );
246
- my $attribute = $class->get_attribute( $exception->attribute_name );
247
-
248
-
249
- =item * $exception->class_name()
250
-
251
- Returns a Str value.
252
-
253
- This attribute can be used for fetching metaclass instance:
254
-
255
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
256
-
257
-
258
- =item * $exception->params()
259
-
260
- Returns a HashRef value.
261
-
262
- =back
263
-
264
- =head2 Moose::Exception::AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass
265
-
266
- This class consumes the Moose::Exception::Role::Class role.
267
-
268
- This class has the following methods:
269
-
270
- =over 4
271
-
272
- =item * $exception->attribute()
273
-
274
- =item * $exception->class_name()
275
-
276
- Returns a Str value.
277
-
278
- This attribute can be used for fetching metaclass instance:
279
-
280
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
281
-
282
-
283
- =back
284
-
285
- =head2 Moose::Exception::AttributeNamesDoNotMatch
286
-
287
- This class has the following methods:
288
-
289
- =over 4
290
-
291
- =item * $exception->attribute()
292
-
293
- Returns a L<Class::MOP::Attribute> object.
294
-
295
- =item * $exception->attribute_name()
296
-
297
- Returns a Str value.
298
-
299
- =back
300
-
301
- =head2 Moose::Exception::AttributeValueIsNotAnObject
302
-
303
- This class consumes the Moose::Exception::Role::Attribute and Moose::Exception::Role::Instance roles.
304
-
305
- This class has the following methods:
306
-
307
- =over 4
308
-
309
- =item * $exception->attribute()
310
-
311
- Returns a L<Class::MOP::Attribute> object.
312
-
313
- =item * $exception->given_value()
314
-
315
- =item * $exception->instance()
316
-
317
- Returns an Object value.
318
-
319
- =item * $exception->method()
320
-
321
- Returns a L<Moose::Meta::Method::Delegation> object.
322
-
323
- =back
324
-
325
- =head2 Moose::Exception::AttributeValueIsNotDefined
326
-
327
- This class consumes the Moose::Exception::Role::Attribute and Moose::Exception::Role::Instance roles.
328
-
329
- This class has the following methods:
330
-
331
- =over 4
332
-
333
- =item * $exception->attribute()
334
-
335
- Returns a L<Class::MOP::Attribute> object.
336
-
337
- =item * $exception->instance()
338
-
339
- Returns an Object value.
340
-
341
- =item * $exception->method()
342
-
343
- Returns a L<Moose::Meta::Method::Delegation> object.
344
-
345
- =back
346
-
347
- =head2 Moose::Exception::AutoDeRefNeedsArrayRefOrHashRef
348
-
349
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
350
-
351
- This class has the following methods:
352
-
353
- =over 4
354
-
355
- =item * $exception->attribute_name()
356
-
357
- Returns a Str value.
358
-
359
- =item * $exception->params()
360
-
361
- Returns a HashRef value.
362
-
363
- =back
364
-
365
- =head2 Moose::Exception::BadOptionFormat
366
-
367
- This class consumes the Moose::Exception::Role::Attribute role.
368
-
369
- This class has the following methods:
370
-
371
- =over 4
372
-
373
- =item * $exception->attribute()
374
-
375
- Returns a L<Class::MOP::Attribute> object.
376
-
377
- =item * $exception->option_name()
378
-
379
- Returns a Str value.
380
-
381
- =item * $exception->option_value()
382
-
383
- =back
384
-
385
- =head2 Moose::Exception::BothBuilderAndDefaultAreNotAllowed
386
-
387
- This class consumes the Moose::Exception::Role::ParamsHash role.
388
-
389
- This class has the following methods:
390
-
391
- =over 4
392
-
393
- =item * $exception->class()
394
-
395
- Returns a Str value.
396
-
397
- =item * $exception->params()
398
-
399
- Returns a HashRef value.
400
-
401
- =back
402
-
403
- =head2 Moose::Exception::BuilderDoesNotExist
404
-
405
- This class consumes the Moose::Exception::Role::Attribute and Moose::Exception::Role::Instance roles.
406
-
407
- This class has the following methods:
408
-
409
- =over 4
410
-
411
- =item * $exception->attribute()
412
-
413
- Returns a L<Class::MOP::Attribute> object.
414
-
415
- =item * $exception->instance()
416
-
417
- Returns an Object value.
418
-
419
- =back
420
-
421
- =head2 Moose::Exception::BuilderMethodNotSupportedForAttribute
422
-
423
- This class consumes the Moose::Exception::Role::Attribute and Moose::Exception::Role::Instance roles.
424
-
425
- This class has the following methods:
426
-
427
- =over 4
428
-
429
- =item * $exception->attribute()
430
-
431
- Returns a L<Class::MOP::Attribute> object.
432
-
433
- =item * $exception->instance()
434
-
435
- Returns an Object value.
436
-
437
- =back
438
-
439
- =head2 Moose::Exception::BuilderMethodNotSupportedForInlineAttribute
440
-
441
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::Instance roles.
442
-
443
- This class has the following methods:
444
-
445
- =over 4
446
-
447
- =item * $exception->attribute_name()
448
-
449
- Returns a Str value.
450
-
451
- =item * $exception->builder()
452
-
453
- Returns a Str value.
454
-
455
- =item * $exception->class_name()
456
-
457
- Returns a Str value.
458
-
459
- This attribute can be used for fetching metaclass instance:
460
-
461
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
462
-
463
-
464
- =item * $exception->instance()
465
-
466
- Returns an Object value.
467
-
468
- =back
469
-
470
- =head2 Moose::Exception::BuilderMustBeAMethodName
471
-
472
- This class consumes the Moose::Exception::Role::ParamsHash role.
473
-
474
- This class has the following methods:
475
-
476
- =over 4
477
-
478
- =item * $exception->class()
479
-
480
- Returns a Str value.
481
-
482
- =item * $exception->params()
483
-
484
- Returns a HashRef value.
485
-
486
- =back
487
-
488
- =head2 Moose::Exception::CallingMethodOnAnImmutableInstance
489
-
490
- This class has the following methods:
491
-
492
- =over 4
493
-
494
- =item * $exception->method_name()
495
-
496
- Returns a Str value.
497
-
498
- =back
499
-
500
- =head2 Moose::Exception::CallingReadOnlyMethodOnAnImmutableInstance
501
-
502
- This class has the following methods:
503
-
504
- =over 4
505
-
506
- =item * $exception->method_name()
507
-
508
- Returns a Str value.
509
-
510
- =back
511
-
512
- =head2 Moose::Exception::CanExtendOnlyClasses
513
-
514
- This class consumes the Moose::Exception::Role::Role role.
515
-
516
- This class has the following methods:
517
-
518
- =over 4
519
-
520
- =item * $exception->role_name()
521
-
522
- Returns a Str value.
523
-
524
- This attribute can be used for fetching the class's metaclass instance:
525
-
526
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
527
-
528
-
529
- =back
530
-
531
- =head2 Moose::Exception::CanOnlyConsumeRole
532
-
533
- This class has the following methods:
534
-
535
- =over 4
536
-
537
- =item * $exception->role_name()
538
-
539
- Returns a Str value.
540
-
541
- =back
542
-
543
- =head2 Moose::Exception::CanOnlyWrapBlessedCode
544
-
545
- This class consumes the Moose::Exception::Role::ParamsHash role.
546
-
547
- This class has the following methods:
548
-
549
- =over 4
550
-
551
- =item * $exception->class()
552
-
553
- Returns a Str value.
554
-
555
- =item * $exception->code()
556
-
557
- =item * $exception->params()
558
-
559
- Returns a HashRef value.
560
-
561
- =back
562
-
563
- =head2 Moose::Exception::CanReblessOnlyIntoASubclass
564
-
565
- This class consumes the Moose::Exception::Role::Class, Moose::Exception::Role::Instance, Moose::Exception::Role::InstanceClass, and Moose::Exception::Role::ParamsHash roles.
566
-
567
- This class has the following methods:
568
-
569
- =over 4
570
-
571
- =item * $exception->class_name()
572
-
573
- Returns a Str value.
574
-
575
- This attribute can be used for fetching metaclass instance:
576
-
577
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
578
-
579
-
580
- =item * $exception->instance()
581
-
582
- Returns an Object value.
583
-
584
- =item * $exception->instance_class()
585
-
586
- Returns a Str value.
587
-
588
- =item * $exception->params()
589
-
590
- Returns a HashRef value.
591
-
592
- =back
593
-
594
- =head2 Moose::Exception::CanReblessOnlyIntoASuperclass
595
-
596
- This class consumes the Moose::Exception::Role::Class, Moose::Exception::Role::Instance, and Moose::Exception::Role::InstanceClass roles.
597
-
598
- This class has the following methods:
599
-
600
- =over 4
601
-
602
- =item * $exception->class_name()
603
-
604
- Returns a Str value.
605
-
606
- This attribute can be used for fetching metaclass instance:
607
-
608
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
609
-
610
-
611
- =item * $exception->instance()
612
-
613
- Returns an Object value.
614
-
615
- =item * $exception->instance_class()
616
-
617
- Returns a Str value.
618
-
619
- =back
620
-
621
- =head2 Moose::Exception::CannotAddAdditionalTypeCoercionsToUnion
622
-
623
- This class has the following methods:
624
-
625
- =over 4
626
-
627
- =item * $exception->type_coercion_union_object()
628
-
629
- Returns a L<Moose::Meta::TypeCoercion::Union> object.
630
-
631
- =back
632
-
633
- =head2 Moose::Exception::CannotAddAsAnAttributeToARole
634
-
635
- This class consumes the Moose::Exception::Role::Role role.
636
-
637
- This class has the following methods:
638
-
639
- =over 4
640
-
641
- =item * $exception->attribute_class()
642
-
643
- Returns a Str value.
644
-
645
- =item * $exception->role_name()
646
-
647
- Returns a Str value.
648
-
649
- This attribute can be used for fetching the class's metaclass instance:
650
-
651
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
652
-
653
-
654
- =back
655
-
656
- =head2 Moose::Exception::CannotApplyBaseClassRolesToRole
657
-
658
- This class consumes the Moose::Exception::Role::ParamsHash and Moose::Exception::Role::Role roles.
659
-
660
- This class has the following methods:
661
-
662
- =over 4
663
-
664
- =item * $exception->params()
665
-
666
- Returns a HashRef value.
667
-
668
- =item * $exception->role_name()
669
-
670
- Returns a Str value.
671
-
672
- This attribute can be used for fetching the class's metaclass instance:
673
-
674
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
675
-
676
-
677
- =back
678
-
679
- =head2 Moose::Exception::CannotAssignValueToReadOnlyAccessor
680
-
681
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::EitherAttributeOrAttributeName roles.
682
-
683
- This class has the following methods:
684
-
685
- =over 4
686
-
687
- =item * $exception->attribute()
688
-
689
- Returns a L<Class::MOP::Attribute> object.
690
-
691
- =item * $exception->attribute_name()
692
-
693
- Returns a Str value.
694
-
695
- =item * $exception->class_name()
696
-
697
- Returns a Str value.
698
-
699
- This attribute can be used for fetching metaclass instance:
700
-
701
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
702
-
703
-
704
- =item * $exception->params()
705
-
706
- Returns a HashRef value.
707
-
708
- =item * $exception->value()
709
-
710
- =back
711
-
712
- =head2 Moose::Exception::CannotAugmentIfLocalMethodPresent
713
-
714
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::Method roles.
715
-
716
- This class has the following methods:
717
-
718
- =over 4
719
-
720
- =item * $exception->class_name()
721
-
722
- Returns a Str value.
723
-
724
- This attribute can be used for fetching metaclass instance:
725
-
726
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
727
-
728
-
729
- =item * $exception->method()
730
-
731
- Returns a L<Moose::Meta::Method> object.
732
-
733
- =back
734
-
735
- =head2 Moose::Exception::CannotAugmentNoSuperMethod
736
-
737
- This class consumes the Moose::Exception::Role::ParamsHash role.
738
-
739
- This class has the following methods:
740
-
741
- =over 4
742
-
743
- =item * $exception->class()
744
-
745
- Returns a Str value.
746
-
747
- =item * $exception->method_name()
748
-
749
- Returns a Str value.
750
-
751
- =item * $exception->params()
752
-
753
- Returns a HashRef value.
754
-
755
- =back
756
-
757
- =head2 Moose::Exception::CannotAutoDerefWithoutIsa
758
-
759
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
760
-
761
- This class has the following methods:
762
-
763
- =over 4
764
-
765
- =item * $exception->attribute_name()
766
-
767
- Returns a Str value.
768
-
769
- =item * $exception->params()
770
-
771
- Returns a HashRef value.
772
-
773
- =back
774
-
775
- =head2 Moose::Exception::CannotAutoDereferenceTypeConstraint
776
-
777
- This class consumes the Moose::Exception::Role::Attribute, Moose::Exception::Role::Instance, and Moose::Exception::Role::TypeConstraint roles.
778
-
779
- This class has the following methods:
780
-
781
- =over 4
782
-
783
- =item * $exception->attribute()
784
-
785
- Returns a L<Class::MOP::Attribute> object.
786
-
787
- =item * $exception->instance()
788
-
789
- Returns an Object value.
790
-
791
- =item * $exception->type_name()
792
-
793
- Returns a Str value.
794
-
795
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
796
-
797
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
798
-
799
-
800
- =back
801
-
802
- =head2 Moose::Exception::CannotCalculateNativeType
803
-
804
- This class consumes the Moose::Exception::Role::Instance role.
805
-
806
- This class has the following methods:
807
-
808
- =over 4
809
-
810
- =item * $exception->instance()
811
-
812
- Returns an Object value.
813
-
814
- =back
815
-
816
- =head2 Moose::Exception::CannotCallAnAbstractBaseMethod
817
-
818
- This class has the following methods:
819
-
820
- =over 4
821
-
822
- =item * $exception->package_name()
823
-
824
- Returns a Str value.
825
-
826
- =back
827
-
828
- =head2 Moose::Exception::CannotCallAnAbstractMethod
829
-
830
- This class has no attributes except for C<message> and C<trace()>.
831
-
832
- =head2 Moose::Exception::CannotCoerceAWeakRef
833
-
834
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
835
-
836
- This class has the following methods:
837
-
838
- =over 4
839
-
840
- =item * $exception->attribute_name()
841
-
842
- Returns a Str value.
843
-
844
- =item * $exception->params()
845
-
846
- Returns a HashRef value.
847
-
848
- =back
849
-
850
- =head2 Moose::Exception::CannotCoerceAttributeWhichHasNoCoercion
851
-
852
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions, Moose::Exception::Role::ParamsHash, and Moose::Exception::Role::TypeConstraint roles.
853
-
854
- This class has the following methods:
855
-
856
- =over 4
857
-
858
- =item * $exception->attribute_name()
859
-
860
- Returns a Str value.
861
-
862
- =item * $exception->params()
863
-
864
- Returns a HashRef value.
865
-
866
- =item * $exception->type_name()
867
-
868
- Returns a Str value.
869
-
870
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
871
-
872
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
873
-
874
-
875
- =back
876
-
877
- =head2 Moose::Exception::CannotCreateHigherOrderTypeWithoutATypeParameter
878
-
879
- This class consumes the Moose::Exception::Role::TypeConstraint role.
880
-
881
- This class has the following methods:
882
-
883
- =over 4
884
-
885
- =item * $exception->type_name()
886
-
887
- Returns a Str value.
888
-
889
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
890
-
891
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
892
-
893
-
894
- =back
895
-
896
- =head2 Moose::Exception::CannotCreateMethodAliasLocalMethodIsPresent
897
-
898
- This class consumes the Moose::Exception::Role::Method and Moose::Exception::Role::Role roles.
899
-
900
- This class has the following methods:
901
-
902
- =over 4
903
-
904
- =item * $exception->aliased_method_name()
905
-
906
- Returns a Str value.
907
-
908
- =item * $exception->method()
909
-
910
- Returns a L<Moose::Meta::Method> object.
911
-
912
- =item * $exception->role_being_applied_name()
913
-
914
- Returns a Str value.
915
-
916
- =item * $exception->role_name()
917
-
918
- Returns a Str value.
919
-
920
- This attribute can be used for fetching the class's metaclass instance:
921
-
922
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
923
-
924
-
925
- =back
926
-
927
- =head2 Moose::Exception::CannotCreateMethodAliasLocalMethodIsPresentInClass
928
-
929
- This class consumes the Moose::Exception::Role::Class, Moose::Exception::Role::Method, and Moose::Exception::Role::Role roles.
930
-
931
- This class has the following methods:
932
-
933
- =over 4
934
-
935
- =item * $exception->aliased_method_name()
936
-
937
- Returns a Str value.
938
-
939
- =item * $exception->class_name()
940
-
941
- Returns a Str value.
942
-
943
- This attribute can be used for fetching metaclass instance:
944
-
945
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
946
-
947
-
948
- =item * $exception->method()
949
-
950
- Returns a L<Moose::Meta::Method> object.
951
-
952
- =item * $exception->role_name()
953
-
954
- Returns a Str value.
955
-
956
- This attribute can be used for fetching the class's metaclass instance:
957
-
958
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
959
-
960
-
961
- =back
962
-
963
- =head2 Moose::Exception::CannotDelegateLocalMethodIsPresent
964
-
965
- This class consumes the Moose::Exception::Role::Attribute and Moose::Exception::Role::Method roles.
966
-
967
- This class has the following methods:
968
-
969
- =over 4
970
-
971
- =item * $exception->attribute()
972
-
973
- Returns a L<Class::MOP::Attribute> object.
974
-
975
- =item * $exception->method()
976
-
977
- Returns a L<Moose::Meta::Method> object.
978
-
979
- =back
980
-
981
- =head2 Moose::Exception::CannotDelegateWithoutIsa
982
-
983
- This class consumes the Moose::Exception::Role::Attribute role.
984
-
985
- This class has the following methods:
986
-
987
- =over 4
988
-
989
- =item * $exception->attribute()
990
-
991
- Returns a L<Class::MOP::Attribute> object.
992
-
993
- =back
994
-
995
- =head2 Moose::Exception::CannotFindDelegateMetaclass
996
-
997
- This class consumes the Moose::Exception::Role::Attribute role.
998
-
999
- This class has the following methods:
1000
-
1001
- =over 4
1002
-
1003
- =item * $exception->attribute()
1004
-
1005
- Returns a L<Class::MOP::Attribute> object.
1006
-
1007
- =back
1008
-
1009
- =head2 Moose::Exception::CannotFindType
1010
-
1011
- This class has the following methods:
1012
-
1013
- =over 4
1014
-
1015
- =item * $exception->type_name()
1016
-
1017
- Returns a Str value.
1018
-
1019
- =back
1020
-
1021
- =head2 Moose::Exception::CannotFindTypeGivenToMatchOnType
1022
-
1023
- This class has the following methods:
1024
-
1025
- =over 4
1026
-
1027
- =item * $exception->action()
1028
-
1029
- =item * $exception->to_match()
1030
-
1031
- =item * $exception->type()
1032
-
1033
- =back
1034
-
1035
- =head2 Moose::Exception::CannotFixMetaclassCompatibility
1036
-
1037
- This class consumes the Moose::Exception::Role::Class role.
1038
-
1039
- This class has the following methods:
1040
-
1041
- =over 4
1042
-
1043
- =item * $exception->class_name()
1044
-
1045
- Returns a Str value.
1046
-
1047
- This attribute can be used for fetching metaclass instance:
1048
-
1049
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
1050
-
1051
-
1052
- =item * $exception->metaclass_type()
1053
-
1054
- Returns a Str value.
1055
-
1056
- =item * $exception->superclass()
1057
-
1058
- Returns an Object value.
1059
-
1060
- =back
1061
-
1062
- =head2 Moose::Exception::CannotGenerateInlineConstraint
1063
-
1064
- This class consumes the Moose::Exception::Role::TypeConstraint role.
1065
-
1066
- This class has the following methods:
1067
-
1068
- =over 4
1069
-
1070
- =item * $exception->parameterizable_type_object_name()
1071
-
1072
- Returns a Str value.
1073
-
1074
- This attribute can be used for fetching parameterizable type constraint(Moose::Meta::TypeConstraint::Parameterizable):
1075
-
1076
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
1077
-
1078
-
1079
- =item * $exception->type_name()
1080
-
1081
- Returns a Str value.
1082
-
1083
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
1084
-
1085
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
1086
-
1087
-
1088
- =item * $exception->value()
1089
-
1090
- Returns a Str value.
1091
-
1092
- =back
1093
-
1094
- =head2 Moose::Exception::CannotInitializeMooseMetaRoleComposite
1095
-
1096
- This class has the following methods:
1097
-
1098
- =over 4
1099
-
1100
- =item * $exception->args()
1101
-
1102
- Returns an ArrayRef value.
1103
-
1104
- =item * $exception->old_meta()
1105
-
1106
- =item * $exception->role_composite()
1107
-
1108
- Returns a L<Moose::Meta::Role::Composite> object.
1109
-
1110
- =back
1111
-
1112
- =head2 Moose::Exception::CannotInlineTypeConstraintCheck
1113
-
1114
- This class consumes the Moose::Exception::Role::TypeConstraint role.
1115
-
1116
- This class has the following methods:
1117
-
1118
- =over 4
1119
-
1120
- =item * $exception->type_name()
1121
-
1122
- Returns a Str value.
1123
-
1124
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
1125
-
1126
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
1127
-
1128
-
1129
- =back
1130
-
1131
- =head2 Moose::Exception::CannotLocatePackageInINC
1132
-
1133
- This class consumes the Moose::Exception::Role::ParamsHash role.
1134
-
1135
- This class has the following methods:
1136
-
1137
- =over 4
1138
-
1139
- =item * $exception->INC()
1140
-
1141
- Returns an ArrayRef value.
1142
-
1143
- =item * $exception->metaclass_name()
1144
-
1145
- Returns a Str value.
1146
-
1147
- =item * $exception->params()
1148
-
1149
- Returns a HashRef value.
1150
-
1151
- =item * $exception->possible_packages()
1152
-
1153
- Returns a Str value.
1154
-
1155
- =item * $exception->type()
1156
-
1157
- Returns a Str value.
1158
-
1159
- =back
1160
-
1161
- =head2 Moose::Exception::CannotMakeMetaclassCompatible
1162
-
1163
- This class consumes the Moose::Exception::Role::Class role.
1164
-
1165
- This class has the following methods:
1166
-
1167
- =over 4
1168
-
1169
- =item * $exception->class_name()
1170
-
1171
- Returns a Str value.
1172
-
1173
- This attribute can be used for fetching metaclass instance:
1174
-
1175
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
1176
-
1177
-
1178
- =item * $exception->superclass_name()
1179
-
1180
- Returns a Str value.
1181
-
1182
- =back
1183
-
1184
- =head2 Moose::Exception::CannotOverrideALocalMethod
1185
-
1186
- This class consumes the Moose::Exception::Role::Role role.
1187
-
1188
- This class has the following methods:
1189
-
1190
- =over 4
1191
-
1192
- =item * $exception->method_name()
1193
-
1194
- Returns a Str value.
1195
-
1196
- =item * $exception->role_name()
1197
-
1198
- Returns a Str value.
1199
-
1200
- This attribute can be used for fetching the class's metaclass instance:
1201
-
1202
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
1203
-
1204
-
1205
- =back
1206
-
1207
- =head2 Moose::Exception::CannotOverrideBodyOfMetaMethods
1208
-
1209
- This class consumes the Moose::Exception::Role::ParamsHash role.
1210
-
1211
- This class has the following methods:
1212
-
1213
- =over 4
1214
-
1215
- =item * $exception->class()
1216
-
1217
- Returns a Str value.
1218
-
1219
- =item * $exception->params()
1220
-
1221
- Returns a HashRef value.
1222
-
1223
- =back
1224
-
1225
- =head2 Moose::Exception::CannotOverrideLocalMethodIsPresent
1226
-
1227
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::Method roles.
1228
-
1229
- This class has the following methods:
1230
-
1231
- =over 4
1232
-
1233
- =item * $exception->class_name()
1234
-
1235
- Returns a Str value.
1236
-
1237
- This attribute can be used for fetching metaclass instance:
1238
-
1239
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
1240
-
1241
-
1242
- =item * $exception->method()
1243
-
1244
- Returns a L<Moose::Meta::Method> object.
1245
-
1246
- =back
1247
-
1248
- =head2 Moose::Exception::CannotOverrideNoSuperMethod
1249
-
1250
- This class consumes the Moose::Exception::Role::ParamsHash role.
1251
-
1252
- This class has the following methods:
1253
-
1254
- =over 4
1255
-
1256
- =item * $exception->class()
1257
-
1258
- Returns a Str value.
1259
-
1260
- =item * $exception->method_name()
1261
-
1262
- Returns a Str value.
1263
-
1264
- =item * $exception->params()
1265
-
1266
- Returns a HashRef value.
1267
-
1268
- =back
1269
-
1270
- =head2 Moose::Exception::CannotRegisterUnnamedTypeConstraint
1271
-
1272
- This class has no attributes except for C<message> and C<trace()>.
1273
-
1274
- =head2 Moose::Exception::CannotUseLazyBuildAndDefaultSimultaneously
1275
-
1276
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
1277
-
1278
- This class has the following methods:
1279
-
1280
- =over 4
1281
-
1282
- =item * $exception->attribute_name()
1283
-
1284
- Returns a Str value.
1285
-
1286
- =item * $exception->params()
1287
-
1288
- Returns a HashRef value.
1289
-
1290
- =back
1291
-
1292
- =head2 Moose::Exception::CircularReferenceInAlso
1293
-
1294
- This class has the following methods:
1295
-
1296
- =over 4
1297
-
1298
- =item * $exception->also_parameter()
1299
-
1300
- Returns a Str value.
1301
-
1302
- =item * $exception->stack()
1303
-
1304
- Returns an ArrayRef value.
1305
-
1306
- =back
1307
-
1308
- =head2 Moose::Exception::ClassDoesNotHaveInitMeta
1309
-
1310
- This class consumes the Moose::Exception::Role::Class role.
1311
-
1312
- This class has the following methods:
1313
-
1314
- =over 4
1315
-
1316
- =item * $exception->class_name()
1317
-
1318
- Returns a Str value.
1319
-
1320
- This attribute can be used for fetching metaclass instance:
1321
-
1322
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
1323
-
1324
-
1325
- =item * $exception->traits()
1326
-
1327
- Returns an ArrayRef value.
1328
-
1329
- =back
1330
-
1331
- =head2 Moose::Exception::ClassDoesTheExcludedRole
1332
-
1333
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::Role roles.
1334
-
1335
- This class has the following methods:
1336
-
1337
- =over 4
1338
-
1339
- =item * $exception->class_name()
1340
-
1341
- Returns a Str value.
1342
-
1343
- This attribute can be used for fetching metaclass instance:
1344
-
1345
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
1346
-
1347
-
1348
- =item * $exception->excluded_role_name()
1349
-
1350
- Returns a Str value.
1351
-
1352
- =item * $exception->role_name()
1353
-
1354
- Returns a Str value.
1355
-
1356
- This attribute can be used for fetching the class's metaclass instance:
1357
-
1358
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
1359
-
1360
-
1361
- =back
1362
-
1363
- =head2 Moose::Exception::ClassNamesDoNotMatch
1364
-
1365
- This class has the following methods:
1366
-
1367
- =over 4
1368
-
1369
- =item * $exception->class()
1370
-
1371
- Returns a L<Class::MOP::Class> object.
1372
-
1373
- =item * $exception->class_name()
1374
-
1375
- Returns a Str value.
1376
-
1377
- =back
1378
-
1379
- =head2 Moose::Exception::CloneObjectExpectsAnInstanceOfMetaclass
1380
-
1381
- This class consumes the Moose::Exception::Role::Class role.
1382
-
1383
- This class has the following methods:
1384
-
1385
- =over 4
1386
-
1387
- =item * $exception->class_name()
1388
-
1389
- Returns a Str value.
1390
-
1391
- This attribute can be used for fetching metaclass instance:
1392
-
1393
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
1394
-
1395
-
1396
- =item * $exception->instance()
1397
-
1398
- =back
1399
-
1400
- =head2 Moose::Exception::CodeBlockMustBeACodeRef
1401
-
1402
- This class consumes the Moose::Exception::Role::Instance and Moose::Exception::Role::ParamsHash roles.
1403
-
1404
- This class has the following methods:
1405
-
1406
- =over 4
1407
-
1408
- =item * $exception->instance()
1409
-
1410
- Returns an Object value.
1411
-
1412
- =item * $exception->params()
1413
-
1414
- Returns a HashRef value.
1415
-
1416
- =back
1417
-
1418
- =head2 Moose::Exception::CoercingWithoutCoercions
1419
-
1420
- This class consumes the Moose::Exception::Role::TypeConstraint role.
1421
-
1422
- This class has the following methods:
1423
-
1424
- =over 4
1425
-
1426
- =item * $exception->type_name()
1427
-
1428
- Returns a Str value.
1429
-
1430
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
1431
-
1432
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
1433
-
1434
-
1435
- =back
1436
-
1437
- =head2 Moose::Exception::CoercionAlreadyExists
1438
-
1439
- This class consumes the Moose::Exception::Role::Instance role.
1440
-
1441
- This class has the following methods:
1442
-
1443
- =over 4
1444
-
1445
- =item * $exception->constraint_name()
1446
-
1447
- Returns a Str value.
1448
-
1449
- =item * $exception->instance()
1450
-
1451
- Returns an Object value.
1452
-
1453
- =back
1454
-
1455
- =head2 Moose::Exception::CoercionNeedsTypeConstraint
1456
-
1457
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
1458
-
1459
- This class has the following methods:
1460
-
1461
- =over 4
1462
-
1463
- =item * $exception->attribute_name()
1464
-
1465
- Returns a Str value.
1466
-
1467
- =item * $exception->params()
1468
-
1469
- Returns a HashRef value.
1470
-
1471
- =back
1472
-
1473
- =head2 Moose::Exception::ConflictDetectedInCheckRoleExclusions
1474
-
1475
- This class consumes the Moose::Exception::Role::Role role.
1476
-
1477
- This class has the following methods:
1478
-
1479
- =over 4
1480
-
1481
- =item * $exception->excluded_role_name()
1482
-
1483
- Returns a Str value.
1484
-
1485
- =item * $exception->role_name()
1486
-
1487
- Returns a Str value.
1488
-
1489
- This attribute can be used for fetching the class's metaclass instance:
1490
-
1491
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
1492
-
1493
-
1494
- =back
1495
-
1496
- =head2 Moose::Exception::ConflictDetectedInCheckRoleExclusionsInToClass
1497
-
1498
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::Role roles.
1499
-
1500
- This class has the following methods:
1501
-
1502
- =over 4
1503
-
1504
- =item * $exception->class_name()
1505
-
1506
- Returns a Str value.
1507
-
1508
- This attribute can be used for fetching metaclass instance:
1509
-
1510
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
1511
-
1512
-
1513
- =item * $exception->role_name()
1514
-
1515
- Returns a Str value.
1516
-
1517
- This attribute can be used for fetching the class's metaclass instance:
1518
-
1519
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
1520
-
1521
-
1522
- =back
1523
-
1524
- =head2 Moose::Exception::ConstructClassInstanceTakesPackageName
1525
-
1526
- This class has no attributes except for C<message> and C<trace()>.
1527
-
1528
- =head2 Moose::Exception::CouldNotCreateMethod
1529
-
1530
- This class consumes the Moose::Exception::Role::Attribute role.
1531
-
1532
- This class has the following methods:
1533
-
1534
- =over 4
1535
-
1536
- =item * $exception->attribute()
1537
-
1538
- Returns a L<Class::MOP::Attribute> object.
1539
-
1540
- =item * $exception->error()
1541
-
1542
- Returns a Str value.
1543
-
1544
- =item * $exception->option_name()
1545
-
1546
- Returns a Str value.
1547
-
1548
- =item * $exception->option_value()
1549
-
1550
- =back
1551
-
1552
- =head2 Moose::Exception::CouldNotCreateWriter
1553
-
1554
- This class consumes the Moose::Exception::Role::EitherAttributeOrAttributeName and Moose::Exception::Role::Instance roles.
1555
-
1556
- This class has the following methods:
1557
-
1558
- =over 4
1559
-
1560
- =item * $exception->attribute()
1561
-
1562
- Returns a L<Class::MOP::Attribute> object.
1563
-
1564
- =item * $exception->attribute_name()
1565
-
1566
- Returns a Str value.
1567
-
1568
- =item * $exception->error()
1569
-
1570
- Returns a Str value.
1571
-
1572
- =item * $exception->instance()
1573
-
1574
- Returns an Object value.
1575
-
1576
- =item * $exception->params()
1577
-
1578
- Returns a HashRef value.
1579
-
1580
- =back
1581
-
1582
- =head2 Moose::Exception::CouldNotEvalConstructor
1583
-
1584
- This class has the following methods:
1585
-
1586
- =over 4
1587
-
1588
- =item * $exception->constructor_method()
1589
-
1590
- Returns a L<Class::MOP::Method::Constructor> object.
1591
-
1592
- =item * $exception->error()
1593
-
1594
- Returns a Str value.
1595
-
1596
- =item * $exception->source()
1597
-
1598
- Returns a Str value.
1599
-
1600
- =back
1601
-
1602
- =head2 Moose::Exception::CouldNotEvalDestructor
1603
-
1604
- This class has the following methods:
1605
-
1606
- =over 4
1607
-
1608
- =item * $exception->error()
1609
-
1610
- Returns a Str value.
1611
-
1612
- =item * $exception->method_destructor_object()
1613
-
1614
- Returns a L<Moose::Meta::Method::Destructor> object.
1615
-
1616
- =item * $exception->source()
1617
-
1618
- Returns a Str value.
1619
-
1620
- =back
1621
-
1622
- =head2 Moose::Exception::CouldNotFindTypeConstraintToCoerceFrom
1623
-
1624
- This class consumes the Moose::Exception::Role::Instance role.
1625
-
1626
- This class has the following methods:
1627
-
1628
- =over 4
1629
-
1630
- =item * $exception->constraint_name()
1631
-
1632
- Returns a Str value.
1633
-
1634
- =item * $exception->instance()
1635
-
1636
- Returns an Object value.
1637
-
1638
- =back
1639
-
1640
- =head2 Moose::Exception::CouldNotGenerateInlineAttributeMethod
1641
-
1642
- This class consumes the Moose::Exception::Role::Instance role.
1643
-
1644
- This class has the following methods:
1645
-
1646
- =over 4
1647
-
1648
- =item * $exception->error()
1649
-
1650
- Returns a Moose::Exception|Str value.
1651
-
1652
- =item * $exception->instance()
1653
-
1654
- Returns an Object value.
1655
-
1656
- =item * $exception->option()
1657
-
1658
- Returns a Str value.
1659
-
1660
- =back
1661
-
1662
- =head2 Moose::Exception::CouldNotLocateTypeConstraintForUnion
1663
-
1664
- This class consumes the Moose::Exception::Role::TypeConstraint role.
1665
-
1666
- This class has the following methods:
1667
-
1668
- =over 4
1669
-
1670
- =item * $exception->type_name()
1671
-
1672
- Returns a Str value.
1673
-
1674
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
1675
-
1676
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
1677
-
1678
-
1679
- =back
1680
-
1681
- =head2 Moose::Exception::CouldNotParseType
1682
-
1683
- This class has the following methods:
1684
-
1685
- =over 4
1686
-
1687
- =item * $exception->position()
1688
-
1689
- Returns an Int value.
1690
-
1691
- =item * $exception->type()
1692
-
1693
- Returns a Str value.
1694
-
1695
- =back
1696
-
1697
- =head2 Moose::Exception::CreateMOPClassTakesArrayRefOfAttributes
1698
-
1699
- This class consumes the Moose::Exception::Role::ParamsHash and Moose::Exception::Role::RoleForCreateMOPClass roles.
1700
-
1701
- This class has the following methods:
1702
-
1703
- =over 4
1704
-
1705
- =item * $exception->class()
1706
-
1707
- Returns a Str value.
1708
-
1709
- =item * $exception->params()
1710
-
1711
- Returns a HashRef value.
1712
-
1713
- =back
1714
-
1715
- =head2 Moose::Exception::CreateMOPClassTakesArrayRefOfSuperclasses
1716
-
1717
- This class consumes the Moose::Exception::Role::ParamsHash and Moose::Exception::Role::RoleForCreateMOPClass roles.
1718
-
1719
- This class has the following methods:
1720
-
1721
- =over 4
1722
-
1723
- =item * $exception->class()
1724
-
1725
- Returns a Str value.
1726
-
1727
- =item * $exception->params()
1728
-
1729
- Returns a HashRef value.
1730
-
1731
- =back
1732
-
1733
- =head2 Moose::Exception::CreateMOPClassTakesHashRefOfMethods
1734
-
1735
- This class consumes the Moose::Exception::Role::ParamsHash and Moose::Exception::Role::RoleForCreateMOPClass roles.
1736
-
1737
- This class has the following methods:
1738
-
1739
- =over 4
1740
-
1741
- =item * $exception->class()
1742
-
1743
- Returns a Str value.
1744
-
1745
- =item * $exception->params()
1746
-
1747
- Returns a HashRef value.
1748
-
1749
- =back
1750
-
1751
- =head2 Moose::Exception::CreateTakesArrayRefOfRoles
1752
-
1753
- This class consumes the Moose::Exception::Role::ParamsHash and Moose::Exception::Role::RoleForCreate roles.
1754
-
1755
- This class has the following methods:
1756
-
1757
- =over 4
1758
-
1759
- =item * $exception->attribute_class()
1760
-
1761
- Returns a Str value.
1762
-
1763
- =item * $exception->params()
1764
-
1765
- Returns a HashRef value.
1766
-
1767
- =back
1768
-
1769
- =head2 Moose::Exception::CreateTakesHashRefOfAttributes
1770
-
1771
- This class consumes the Moose::Exception::Role::ParamsHash and Moose::Exception::Role::RoleForCreate roles.
1772
-
1773
- This class has the following methods:
1774
-
1775
- =over 4
1776
-
1777
- =item * $exception->attribute_class()
1778
-
1779
- Returns a Str value.
1780
-
1781
- =item * $exception->params()
1782
-
1783
- Returns a HashRef value.
1784
-
1785
- =back
1786
-
1787
- =head2 Moose::Exception::CreateTakesHashRefOfMethods
1788
-
1789
- This class consumes the Moose::Exception::Role::ParamsHash and Moose::Exception::Role::RoleForCreate roles.
1790
-
1791
- This class has the following methods:
1792
-
1793
- =over 4
1794
-
1795
- =item * $exception->attribute_class()
1796
-
1797
- Returns a Str value.
1798
-
1799
- =item * $exception->params()
1800
-
1801
- Returns a HashRef value.
1802
-
1803
- =back
1804
-
1805
- =head2 Moose::Exception::DefaultToMatchOnTypeMustBeCodeRef
1806
-
1807
- This class has the following methods:
1808
-
1809
- =over 4
1810
-
1811
- =item * $exception->cases_to_be_matched()
1812
-
1813
- Returns an ArrayRef value.
1814
-
1815
- =item * $exception->default_action()
1816
-
1817
- =item * $exception->to_match()
1818
-
1819
- =back
1820
-
1821
- =head2 Moose::Exception::DelegationToAClassWhichIsNotLoaded
1822
-
1823
- This class consumes the Moose::Exception::Role::Attribute role.
1824
-
1825
- This class has the following methods:
1826
-
1827
- =over 4
1828
-
1829
- =item * $exception->attribute()
1830
-
1831
- Returns a L<Class::MOP::Attribute> object.
1832
-
1833
- =item * $exception->class_name()
1834
-
1835
- Returns a Str value.
1836
-
1837
- =back
1838
-
1839
- =head2 Moose::Exception::DelegationToARoleWhichIsNotLoaded
1840
-
1841
- This class consumes the Moose::Exception::Role::Attribute role.
1842
-
1843
- This class has the following methods:
1844
-
1845
- =over 4
1846
-
1847
- =item * $exception->attribute()
1848
-
1849
- Returns a L<Class::MOP::Attribute> object.
1850
-
1851
- =item * $exception->role_name()
1852
-
1853
- Returns a Str value.
1854
-
1855
- =back
1856
-
1857
- =head2 Moose::Exception::DelegationToATypeWhichIsNotAClass
1858
-
1859
- This class consumes the Moose::Exception::Role::Attribute role.
1860
-
1861
- This class has the following methods:
1862
-
1863
- =over 4
1864
-
1865
- =item * $exception->attribute()
1866
-
1867
- Returns a L<Class::MOP::Attribute> object.
1868
-
1869
- =back
1870
-
1871
- =head2 Moose::Exception::DoesRequiresRoleName
1872
-
1873
- This class consumes the Moose::Exception::Role::Class role.
1874
-
1875
- This class has the following methods:
1876
-
1877
- =over 4
1878
-
1879
- =item * $exception->class_name()
1880
-
1881
- Returns a Str value.
1882
-
1883
- This attribute can be used for fetching metaclass instance:
1884
-
1885
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
1886
-
1887
-
1888
- =back
1889
-
1890
- =head2 Moose::Exception::EnumCalledWithAnArrayRefAndAdditionalArgs
1891
-
1892
- This class has the following methods:
1893
-
1894
- =over 4
1895
-
1896
- =item * $exception->args()
1897
-
1898
- Returns an ArrayRef value.
1899
-
1900
- =item * $exception->array()
1901
-
1902
- Returns an ArrayRef value.
1903
-
1904
- =back
1905
-
1906
- =head2 Moose::Exception::EnumValuesMustBeString
1907
-
1908
- This class consumes the Moose::Exception::Role::ParamsHash role.
1909
-
1910
- This class has the following methods:
1911
-
1912
- =over 4
1913
-
1914
- =item * $exception->class()
1915
-
1916
- Returns a Str value.
1917
-
1918
- =item * $exception->params()
1919
-
1920
- Returns a HashRef value.
1921
-
1922
- =item * $exception->value()
1923
-
1924
- =back
1925
-
1926
- =head2 Moose::Exception::ExtendsMissingArgs
1927
-
1928
- This class consumes the Moose::Exception::Role::Class role.
1929
-
1930
- This class has the following methods:
1931
-
1932
- =over 4
1933
-
1934
- =item * $exception->class_name()
1935
-
1936
- Returns a Str value.
1937
-
1938
- This attribute can be used for fetching metaclass instance:
1939
-
1940
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
1941
-
1942
-
1943
- =back
1944
-
1945
- =head2 Moose::Exception::HandlesMustBeAHashRef
1946
-
1947
- This class consumes the Moose::Exception::Role::Instance role.
1948
-
1949
- This class has the following methods:
1950
-
1951
- =over 4
1952
-
1953
- =item * $exception->given_handles()
1954
-
1955
- =item * $exception->instance()
1956
-
1957
- Returns an Object value.
1958
-
1959
- =back
1960
-
1961
- =head2 Moose::Exception::IllegalInheritedOptions
1962
-
1963
- This class consumes the Moose::Exception::Role::ParamsHash role.
1964
-
1965
- This class has the following methods:
1966
-
1967
- =over 4
1968
-
1969
- =item * $exception->illegal_options()
1970
-
1971
- Returns an ArrayRef value.
1972
-
1973
- =item * $exception->params()
1974
-
1975
- Returns a HashRef value.
1976
-
1977
- =back
1978
-
1979
- =head2 Moose::Exception::IllegalMethodTypeToAddMethodModifier
1980
-
1981
- This class has the following methods:
1982
-
1983
- =over 4
1984
-
1985
- =item * $exception->class_or_object()
1986
-
1987
- =item * $exception->modifier_name()
1988
-
1989
- Returns a Str value.
1990
-
1991
- =item * $exception->params()
1992
-
1993
- Returns an ArrayRef value.
1994
-
1995
- =back
1996
-
1997
- =head2 Moose::Exception::IncompatibleMetaclassOfSuperclass
1998
-
1999
- This class consumes the Moose::Exception::Role::Class role.
2000
-
2001
- This class has the following methods:
2002
-
2003
- =over 4
2004
-
2005
- =item * $exception->class_meta_type()
2006
-
2007
- Returns a Str value.
2008
-
2009
- =item * $exception->class_name()
2010
-
2011
- Returns a Str value.
2012
-
2013
- This attribute can be used for fetching metaclass instance:
2014
-
2015
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2016
-
2017
-
2018
- =item * $exception->superclass_meta_type()
2019
-
2020
- Returns a Str value.
2021
-
2022
- =item * $exception->superclass_name()
2023
-
2024
- Returns a Str value.
2025
-
2026
- =back
2027
-
2028
- =head2 Moose::Exception::InitMetaRequiresClass
2029
-
2030
- This class consumes the Moose::Exception::Role::ParamsHash role.
2031
-
2032
- This class has the following methods:
2033
-
2034
- =over 4
2035
-
2036
- =item * $exception->params()
2037
-
2038
- Returns a HashRef value.
2039
-
2040
- =back
2041
-
2042
- =head2 Moose::Exception::InitializeTakesUnBlessedPackageName
2043
-
2044
- This class has the following methods:
2045
-
2046
- =over 4
2047
-
2048
- =item * $exception->package_name()
2049
-
2050
- =back
2051
-
2052
- =head2 Moose::Exception::InstanceBlessedIntoWrongClass
2053
-
2054
- This class consumes the Moose::Exception::Role::Class, Moose::Exception::Role::Instance, and Moose::Exception::Role::ParamsHash roles.
2055
-
2056
- This class has the following methods:
2057
-
2058
- =over 4
2059
-
2060
- =item * $exception->class_name()
2061
-
2062
- Returns a Str value.
2063
-
2064
- This attribute can be used for fetching metaclass instance:
2065
-
2066
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2067
-
2068
-
2069
- =item * $exception->instance()
2070
-
2071
- Returns an Object value.
2072
-
2073
- =item * $exception->params()
2074
-
2075
- Returns a HashRef value.
2076
-
2077
- =back
2078
-
2079
- =head2 Moose::Exception::InstanceMustBeABlessedReference
2080
-
2081
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::ParamsHash roles.
2082
-
2083
- This class has the following methods:
2084
-
2085
- =over 4
2086
-
2087
- =item * $exception->class_name()
2088
-
2089
- Returns a Str value.
2090
-
2091
- This attribute can be used for fetching metaclass instance:
2092
-
2093
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2094
-
2095
-
2096
- =item * $exception->instance()
2097
-
2098
- =item * $exception->params()
2099
-
2100
- Returns a HashRef value.
2101
-
2102
- =back
2103
-
2104
- =head2 Moose::Exception::InvalidArgPassedToMooseUtilMetaRole
2105
-
2106
- This class has the following methods:
2107
-
2108
- =over 4
2109
-
2110
- =item * $exception->argument()
2111
-
2112
- =back
2113
-
2114
- =head2 Moose::Exception::InvalidArgumentToMethod
2115
-
2116
- This class has the following methods:
2117
-
2118
- =over 4
2119
-
2120
- =item * $exception->argument()
2121
-
2122
- =item * $exception->argument_noun()
2123
-
2124
- Returns a Str value.
2125
-
2126
- =item * $exception->method_name()
2127
-
2128
- Returns a Str value.
2129
-
2130
- =item * $exception->ordinal()
2131
-
2132
- Returns a Str value.
2133
-
2134
- =item * $exception->type()
2135
-
2136
- Returns a Str value.
2137
-
2138
- =item * $exception->type_of_argument()
2139
-
2140
- Returns a Str value.
2141
-
2142
- =back
2143
-
2144
- =head2 Moose::Exception::InvalidArgumentsToTraitAliases
2145
-
2146
- This class consumes the Moose::Exception::Role::Class role.
2147
-
2148
- This class has the following methods:
2149
-
2150
- =over 4
2151
-
2152
- =item * $exception->alias()
2153
-
2154
- =item * $exception->class_name()
2155
-
2156
- Returns a Str value.
2157
-
2158
- This attribute can be used for fetching metaclass instance:
2159
-
2160
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2161
-
2162
-
2163
- =item * $exception->package_name()
2164
-
2165
- Returns a Str value.
2166
-
2167
- =back
2168
-
2169
- =head2 Moose::Exception::InvalidBaseTypeGivenToCreateParameterizedTypeConstraint
2170
-
2171
- This class consumes the Moose::Exception::Role::TypeConstraint role.
2172
-
2173
- This class has the following methods:
2174
-
2175
- =over 4
2176
-
2177
- =item * $exception->type_name()
2178
-
2179
- Returns a Str value.
2180
-
2181
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
2182
-
2183
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
2184
-
2185
-
2186
- =back
2187
-
2188
- =head2 Moose::Exception::InvalidHandleValue
2189
-
2190
- This class consumes the Moose::Exception::Role::Instance role.
2191
-
2192
- This class has the following methods:
2193
-
2194
- =over 4
2195
-
2196
- =item * $exception->handle_value()
2197
-
2198
- =item * $exception->instance()
2199
-
2200
- Returns an Object value.
2201
-
2202
- =back
2203
-
2204
- =head2 Moose::Exception::InvalidHasProvidedInARole
2205
-
2206
- This class consumes the Moose::Exception::Role::Role role.
2207
-
2208
- This class has the following methods:
2209
-
2210
- =over 4
2211
-
2212
- =item * $exception->attribute_name()
2213
-
2214
- Returns a Str value.
2215
-
2216
- =item * $exception->role_name()
2217
-
2218
- Returns a Str value.
2219
-
2220
- This attribute can be used for fetching the class's metaclass instance:
2221
-
2222
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
2223
-
2224
-
2225
- =back
2226
-
2227
- =head2 Moose::Exception::InvalidNameForType
2228
-
2229
- This class has the following methods:
2230
-
2231
- =over 4
2232
-
2233
- =item * $exception->name()
2234
-
2235
- Returns a Str value.
2236
-
2237
- =back
2238
-
2239
- =head2 Moose::Exception::InvalidOverloadOperator
2240
-
2241
- This class has the following methods:
2242
-
2243
- =over 4
2244
-
2245
- =item * $exception->operator()
2246
-
2247
- Returns a Defined value.
2248
-
2249
- =back
2250
-
2251
- =head2 Moose::Exception::InvalidRoleApplication
2252
-
2253
- This class consumes the Moose::Exception::Role::Class role.
2254
-
2255
- This class has the following methods:
2256
-
2257
- =over 4
2258
-
2259
- =item * $exception->application()
2260
-
2261
- =item * $exception->class_name()
2262
-
2263
- Returns a Str value.
2264
-
2265
- This attribute can be used for fetching metaclass instance:
2266
-
2267
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2268
-
2269
-
2270
- =back
2271
-
2272
- =head2 Moose::Exception::InvalidTypeConstraint
2273
-
2274
- This class has the following methods:
2275
-
2276
- =over 4
2277
-
2278
- =item * $exception->registry_object()
2279
-
2280
- Returns a L<Moose::Meta::TypeConstraint::Registry> object.
2281
-
2282
- =item * $exception->type()
2283
-
2284
- =back
2285
-
2286
- =head2 Moose::Exception::InvalidTypeGivenToCreateParameterizedTypeConstraint
2287
-
2288
- This class consumes the Moose::Exception::Role::TypeConstraint role.
2289
-
2290
- This class has the following methods:
2291
-
2292
- =over 4
2293
-
2294
- =item * $exception->type_name()
2295
-
2296
- Returns a Str value.
2297
-
2298
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
2299
-
2300
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
2301
-
2302
-
2303
- =back
2304
-
2305
- =head2 Moose::Exception::InvalidValueForIs
2306
-
2307
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
2308
-
2309
- This class has the following methods:
2310
-
2311
- =over 4
2312
-
2313
- =item * $exception->attribute_name()
2314
-
2315
- Returns a Str value.
2316
-
2317
- =item * $exception->params()
2318
-
2319
- Returns a HashRef value.
2320
-
2321
- =back
2322
-
2323
- =head2 Moose::Exception::IsaDoesNotDoTheRole
2324
-
2325
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
2326
-
2327
- This class has the following methods:
2328
-
2329
- =over 4
2330
-
2331
- =item * $exception->attribute_name()
2332
-
2333
- Returns a Str value.
2334
-
2335
- =item * $exception->params()
2336
-
2337
- Returns a HashRef value.
2338
-
2339
- =back
2340
-
2341
- =head2 Moose::Exception::IsaLacksDoesMethod
2342
-
2343
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
2344
-
2345
- This class has the following methods:
2346
-
2347
- =over 4
2348
-
2349
- =item * $exception->attribute_name()
2350
-
2351
- Returns a Str value.
2352
-
2353
- =item * $exception->params()
2354
-
2355
- Returns a HashRef value.
2356
-
2357
- =back
2358
-
2359
- =head2 Moose::Exception::LazyAttributeNeedsADefault
2360
-
2361
- This class consumes the Moose::Exception::Role::EitherAttributeOrAttributeName role.
2362
-
2363
- This class has the following methods:
2364
-
2365
- =over 4
2366
-
2367
- =item * $exception->attribute()
2368
-
2369
- Returns a L<Class::MOP::Attribute> object.
2370
-
2371
- =item * $exception->attribute_name()
2372
-
2373
- Returns a Str value.
2374
-
2375
- =item * $exception->params()
2376
-
2377
- Returns a HashRef value.
2378
-
2379
- =back
2380
-
2381
- =head2 Moose::Exception::Legacy
2382
-
2383
- This class has no attributes except for C<message> and C<trace()>.
2384
-
2385
- =head2 Moose::Exception::MOPAttributeNewNeedsAttributeName
2386
-
2387
- This class consumes the Moose::Exception::Role::ParamsHash role.
2388
-
2389
- This class has the following methods:
2390
-
2391
- =over 4
2392
-
2393
- =item * $exception->class()
2394
-
2395
- Returns a Str value.
2396
-
2397
- =item * $exception->params()
2398
-
2399
- Returns a HashRef value.
2400
-
2401
- =back
2402
-
2403
- =head2 Moose::Exception::MatchActionMustBeACodeRef
2404
-
2405
- This class consumes the Moose::Exception::Role::TypeConstraint role.
2406
-
2407
- This class has the following methods:
2408
-
2409
- =over 4
2410
-
2411
- =item * $exception->action()
2412
-
2413
- =item * $exception->to_match()
2414
-
2415
- =item * $exception->type_name()
2416
-
2417
- Returns a Str value.
2418
-
2419
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
2420
-
2421
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
2422
-
2423
-
2424
- =back
2425
-
2426
- =head2 Moose::Exception::MessageParameterMustBeCodeRef
2427
-
2428
- This class consumes the Moose::Exception::Role::ParamsHash role.
2429
-
2430
- This class has the following methods:
2431
-
2432
- =over 4
2433
-
2434
- =item * $exception->class()
2435
-
2436
- Returns a Str value.
2437
-
2438
- =item * $exception->params()
2439
-
2440
- Returns a HashRef value.
2441
-
2442
- =back
2443
-
2444
- =head2 Moose::Exception::MetaclassIsAClassNotASubclassOfGivenMetaclass
2445
-
2446
- This class consumes the Moose::Exception::Role::Class role.
2447
-
2448
- This class has the following methods:
2449
-
2450
- =over 4
2451
-
2452
- =item * $exception->class_name()
2453
-
2454
- Returns a Str value.
2455
-
2456
- This attribute can be used for fetching metaclass instance:
2457
-
2458
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2459
-
2460
-
2461
- =item * $exception->metaclass()
2462
-
2463
- Returns a Str value.
2464
-
2465
- =back
2466
-
2467
- =head2 Moose::Exception::MetaclassIsARoleNotASubclassOfGivenMetaclass
2468
-
2469
- This class consumes the Moose::Exception::Role::Role role.
2470
-
2471
- This class has the following methods:
2472
-
2473
- =over 4
2474
-
2475
- =item * $exception->metaclass()
2476
-
2477
- Returns a Str value.
2478
-
2479
- =item * $exception->role_name()
2480
-
2481
- Returns a Str value.
2482
-
2483
- This attribute can be used for fetching the class's metaclass instance:
2484
-
2485
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
2486
-
2487
-
2488
- =back
2489
-
2490
- =head2 Moose::Exception::MetaclassIsNotASubclassOfGivenMetaclass
2491
-
2492
- This class consumes the Moose::Exception::Role::Class role.
2493
-
2494
- This class has the following methods:
2495
-
2496
- =over 4
2497
-
2498
- =item * $exception->class_name()
2499
-
2500
- Returns a Str value.
2501
-
2502
- This attribute can be used for fetching metaclass instance:
2503
-
2504
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2505
-
2506
-
2507
- =item * $exception->metaclass()
2508
-
2509
- Returns a Str value.
2510
-
2511
- =back
2512
-
2513
- =head2 Moose::Exception::MetaclassMustBeASubclassOfMooseMetaClass
2514
-
2515
- This class consumes the Moose::Exception::Role::Class role.
2516
-
2517
- This class has the following methods:
2518
-
2519
- =over 4
2520
-
2521
- =item * $exception->class_name()
2522
-
2523
- Returns a Str value.
2524
-
2525
- This attribute can be used for fetching metaclass instance:
2526
-
2527
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2528
-
2529
-
2530
- =back
2531
-
2532
- =head2 Moose::Exception::MetaclassMustBeASubclassOfMooseMetaRole
2533
-
2534
- This class consumes the Moose::Exception::Role::Role role.
2535
-
2536
- This class has the following methods:
2537
-
2538
- =over 4
2539
-
2540
- =item * $exception->role_name()
2541
-
2542
- Returns a Str value.
2543
-
2544
- This attribute can be used for fetching the class's metaclass instance:
2545
-
2546
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
2547
-
2548
-
2549
- =back
2550
-
2551
- =head2 Moose::Exception::MetaclassMustBeDerivedFromClassMOPClass
2552
-
2553
- This class has the following methods:
2554
-
2555
- =over 4
2556
-
2557
- =item * $exception->class_name()
2558
-
2559
- Returns a Str value.
2560
-
2561
- =back
2562
-
2563
- =head2 Moose::Exception::MetaclassNotLoaded
2564
-
2565
- This class consumes the Moose::Exception::Role::Class role.
2566
-
2567
- This class has the following methods:
2568
-
2569
- =over 4
2570
-
2571
- =item * $exception->class_name()
2572
-
2573
- Returns a Str value.
2574
-
2575
- This attribute can be used for fetching metaclass instance:
2576
-
2577
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2578
-
2579
-
2580
- =back
2581
-
2582
- =head2 Moose::Exception::MetaclassTypeIncompatible
2583
-
2584
- This class consumes the Moose::Exception::Role::Class role.
2585
-
2586
- This class has the following methods:
2587
-
2588
- =over 4
2589
-
2590
- =item * $exception->class_name()
2591
-
2592
- Returns a Str value.
2593
-
2594
- This attribute can be used for fetching metaclass instance:
2595
-
2596
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2597
-
2598
-
2599
- =item * $exception->metaclass_type()
2600
-
2601
- Returns a Str value.
2602
-
2603
- =item * $exception->superclass_name()
2604
-
2605
- Returns a Str value.
2606
-
2607
- =back
2608
-
2609
- =head2 Moose::Exception::MethodExpectedAMetaclassObject
2610
-
2611
- This class has the following methods:
2612
-
2613
- =over 4
2614
-
2615
- =item * $exception->class()
2616
-
2617
- Returns a Str value.
2618
-
2619
- =item * $exception->metaclass()
2620
-
2621
- =back
2622
-
2623
- =head2 Moose::Exception::MethodExpectsFewerArgs
2624
-
2625
- This class has the following methods:
2626
-
2627
- =over 4
2628
-
2629
- =item * $exception->maximum_args()
2630
-
2631
- Returns an Int value.
2632
-
2633
- =item * $exception->method_name()
2634
-
2635
- Returns a Str value.
2636
-
2637
- =back
2638
-
2639
- =head2 Moose::Exception::MethodExpectsMoreArgs
2640
-
2641
- This class has the following methods:
2642
-
2643
- =over 4
2644
-
2645
- =item * $exception->method_name()
2646
-
2647
- Returns a Str value.
2648
-
2649
- =item * $exception->minimum_args()
2650
-
2651
- Returns an Int value.
2652
-
2653
- =back
2654
-
2655
- =head2 Moose::Exception::MethodModifierNeedsMethodName
2656
-
2657
- This class consumes the Moose::Exception::Role::Class role.
2658
-
2659
- This class has the following methods:
2660
-
2661
- =over 4
2662
-
2663
- =item * $exception->class_name()
2664
-
2665
- Returns a Str value.
2666
-
2667
- This attribute can be used for fetching metaclass instance:
2668
-
2669
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2670
-
2671
-
2672
- =back
2673
-
2674
- =head2 Moose::Exception::MethodNameConflictInRoles
2675
-
2676
- This class consumes the Moose::Exception::Role::Class role.
2677
-
2678
- This class has the following methods:
2679
-
2680
- =over 4
2681
-
2682
- =item * $exception->class_name()
2683
-
2684
- Returns a Str value.
2685
-
2686
- This attribute can be used for fetching metaclass instance:
2687
-
2688
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2689
-
2690
-
2691
- =item * $exception->conflict()
2692
-
2693
- Returns an ArrayRef[Moose::Meta::Role::Method::Conflicting] value.
2694
-
2695
- =back
2696
-
2697
- =head2 Moose::Exception::MethodNameNotFoundInInheritanceHierarchy
2698
-
2699
- This class consumes the Moose::Exception::Role::Class role.
2700
-
2701
- This class has the following methods:
2702
-
2703
- =over 4
2704
-
2705
- =item * $exception->class_name()
2706
-
2707
- Returns a Str value.
2708
-
2709
- This attribute can be used for fetching metaclass instance:
2710
-
2711
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2712
-
2713
-
2714
- =item * $exception->method_name()
2715
-
2716
- Returns a Str value.
2717
-
2718
- =back
2719
-
2720
- =head2 Moose::Exception::MethodNameNotGiven
2721
-
2722
- This class consumes the Moose::Exception::Role::Class role.
2723
-
2724
- This class has the following methods:
2725
-
2726
- =over 4
2727
-
2728
- =item * $exception->class_name()
2729
-
2730
- Returns a Str value.
2731
-
2732
- This attribute can be used for fetching metaclass instance:
2733
-
2734
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2735
-
2736
-
2737
- =back
2738
-
2739
- =head2 Moose::Exception::MustDefineAMethodName
2740
-
2741
- This class consumes the Moose::Exception::Role::Instance role.
2742
-
2743
- This class has the following methods:
2744
-
2745
- =over 4
2746
-
2747
- =item * $exception->instance()
2748
-
2749
- Returns an Object value.
2750
-
2751
- =back
2752
-
2753
- =head2 Moose::Exception::MustDefineAnAttributeName
2754
-
2755
- This class consumes the Moose::Exception::Role::Class role.
2756
-
2757
- This class has the following methods:
2758
-
2759
- =over 4
2760
-
2761
- =item * $exception->class_name()
2762
-
2763
- Returns a Str value.
2764
-
2765
- This attribute can be used for fetching metaclass instance:
2766
-
2767
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
2768
-
2769
-
2770
- =back
2771
-
2772
- =head2 Moose::Exception::MustDefineAnOverloadOperator
2773
-
2774
- This class consumes the Moose::Exception::Role::Instance role.
2775
-
2776
- This class has the following methods:
2777
-
2778
- =over 4
2779
-
2780
- =item * $exception->instance()
2781
-
2782
- Returns an Object value.
2783
-
2784
- =back
2785
-
2786
- =head2 Moose::Exception::MustHaveAtLeastOneValueToEnumerate
2787
-
2788
- This class consumes the Moose::Exception::Role::ParamsHash role.
2789
-
2790
- This class has the following methods:
2791
-
2792
- =over 4
2793
-
2794
- =item * $exception->class()
2795
-
2796
- Returns a Str value.
2797
-
2798
- =item * $exception->params()
2799
-
2800
- Returns a HashRef value.
2801
-
2802
- =back
2803
-
2804
- =head2 Moose::Exception::MustPassAHashOfOptions
2805
-
2806
- This class consumes the Moose::Exception::Role::ParamsHash role.
2807
-
2808
- This class has the following methods:
2809
-
2810
- =over 4
2811
-
2812
- =item * $exception->class()
2813
-
2814
- Returns a Str value.
2815
-
2816
- =item * $exception->params()
2817
-
2818
- Returns a HashRef value.
2819
-
2820
- =back
2821
-
2822
- =head2 Moose::Exception::MustPassAMooseMetaRoleInstanceOrSubclass
2823
-
2824
- This class has the following methods:
2825
-
2826
- =over 4
2827
-
2828
- =item * $exception->class()
2829
-
2830
- Returns a Str value.
2831
-
2832
- =item * $exception->role()
2833
-
2834
- =back
2835
-
2836
- =head2 Moose::Exception::MustPassAPackageNameOrAnExistingClassMOPPackageInstance
2837
-
2838
- This class consumes the Moose::Exception::Role::ParamsHash role.
2839
-
2840
- This class has the following methods:
2841
-
2842
- =over 4
2843
-
2844
- =item * $exception->class()
2845
-
2846
- =item * $exception->params()
2847
-
2848
- Returns a HashRef value.
2849
-
2850
- =back
2851
-
2852
- =head2 Moose::Exception::MustPassEvenNumberOfArguments
2853
-
2854
- This class has the following methods:
2855
-
2856
- =over 4
2857
-
2858
- =item * $exception->args()
2859
-
2860
- Returns an ArrayRef value.
2861
-
2862
- =item * $exception->method_name()
2863
-
2864
- Returns a Str value.
2865
-
2866
- =back
2867
-
2868
- =head2 Moose::Exception::MustPassEvenNumberOfAttributeOptions
2869
-
2870
- This class has the following methods:
2871
-
2872
- =over 4
2873
-
2874
- =item * $exception->attribute_name()
2875
-
2876
- Returns a Str value.
2877
-
2878
- =item * $exception->options()
2879
-
2880
- Returns an ArrayRef value.
2881
-
2882
- =back
2883
-
2884
- =head2 Moose::Exception::MustProvideANameForTheAttribute
2885
-
2886
- This class consumes the Moose::Exception::Role::ParamsHash role.
2887
-
2888
- This class has the following methods:
2889
-
2890
- =over 4
2891
-
2892
- =item * $exception->class()
2893
-
2894
- Returns a Str value.
2895
-
2896
- =item * $exception->params()
2897
-
2898
- Returns a HashRef value.
2899
-
2900
- =back
2901
-
2902
- =head2 Moose::Exception::MustSpecifyAtleastOneMethod
2903
-
2904
- This class consumes the Moose::Exception::Role::Role role.
2905
-
2906
- This class has the following methods:
2907
-
2908
- =over 4
2909
-
2910
- =item * $exception->role_name()
2911
-
2912
- Returns a Str value.
2913
-
2914
- This attribute can be used for fetching the class's metaclass instance:
2915
-
2916
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
2917
-
2918
-
2919
- =back
2920
-
2921
- =head2 Moose::Exception::MustSpecifyAtleastOneRole
2922
-
2923
- This class consumes the Moose::Exception::Role::Role role.
2924
-
2925
- This class has the following methods:
2926
-
2927
- =over 4
2928
-
2929
- =item * $exception->role_name()
2930
-
2931
- Returns a Str value.
2932
-
2933
- This attribute can be used for fetching the class's metaclass instance:
2934
-
2935
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
2936
-
2937
-
2938
- =back
2939
-
2940
- =head2 Moose::Exception::MustSpecifyAtleastOneRoleToApplicant
2941
-
2942
- This class has the following methods:
2943
-
2944
- =over 4
2945
-
2946
- =item * $exception->applicant()
2947
-
2948
- =back
2949
-
2950
- =head2 Moose::Exception::MustSupplyAClassMOPAttributeInstance
2951
-
2952
- This class consumes the Moose::Exception::Role::ParamsHash role.
2953
-
2954
- This class has the following methods:
2955
-
2956
- =over 4
2957
-
2958
- =item * $exception->class()
2959
-
2960
- Returns a Str value.
2961
-
2962
- =item * $exception->params()
2963
-
2964
- Returns a HashRef value.
2965
-
2966
- =back
2967
-
2968
- =head2 Moose::Exception::MustSupplyADelegateToMethod
2969
-
2970
- This class consumes the Moose::Exception::Role::ParamsHash role.
2971
-
2972
- This class has the following methods:
2973
-
2974
- =over 4
2975
-
2976
- =item * $exception->class()
2977
-
2978
- Returns a Str value.
2979
-
2980
- =item * $exception->params()
2981
-
2982
- Returns a HashRef value.
2983
-
2984
- =back
2985
-
2986
- =head2 Moose::Exception::MustSupplyAMetaclass
2987
-
2988
- This class consumes the Moose::Exception::Role::ParamsHash role.
2989
-
2990
- This class has the following methods:
2991
-
2992
- =over 4
2993
-
2994
- =item * $exception->class()
2995
-
2996
- Returns a Str value.
2997
-
2998
- =item * $exception->params()
2999
-
3000
- Returns a HashRef value.
3001
-
3002
- =back
3003
-
3004
- =head2 Moose::Exception::MustSupplyAMooseMetaAttributeInstance
3005
-
3006
- This class consumes the Moose::Exception::Role::ParamsHash role.
3007
-
3008
- This class has the following methods:
3009
-
3010
- =over 4
3011
-
3012
- =item * $exception->class()
3013
-
3014
- Returns a Str value.
3015
-
3016
- =item * $exception->params()
3017
-
3018
- Returns a HashRef value.
3019
-
3020
- =back
3021
-
3022
- =head2 Moose::Exception::MustSupplyAnAccessorTypeToConstructWith
3023
-
3024
- This class consumes the Moose::Exception::Role::ParamsHash role.
3025
-
3026
- This class has the following methods:
3027
-
3028
- =over 4
3029
-
3030
- =item * $exception->class()
3031
-
3032
- Returns a Str value.
3033
-
3034
- =item * $exception->params()
3035
-
3036
- Returns a HashRef value.
3037
-
3038
- =back
3039
-
3040
- =head2 Moose::Exception::MustSupplyAnAttributeToConstructWith
3041
-
3042
- This class consumes the Moose::Exception::Role::ParamsHash role.
3043
-
3044
- This class has the following methods:
3045
-
3046
- =over 4
3047
-
3048
- =item * $exception->class()
3049
-
3050
- Returns a Str value.
3051
-
3052
- =item * $exception->params()
3053
-
3054
- Returns a HashRef value.
3055
-
3056
- =back
3057
-
3058
- =head2 Moose::Exception::MustSupplyArrayRefAsCurriedArguments
3059
-
3060
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::ParamsHash roles.
3061
-
3062
- This class has the following methods:
3063
-
3064
- =over 4
3065
-
3066
- =item * $exception->class_name()
3067
-
3068
- Returns a Str value.
3069
-
3070
- This attribute can be used for fetching metaclass instance:
3071
-
3072
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3073
-
3074
-
3075
- =item * $exception->params()
3076
-
3077
- Returns a HashRef value.
3078
-
3079
- =back
3080
-
3081
- =head2 Moose::Exception::MustSupplyPackageNameAndName
3082
-
3083
- This class consumes the Moose::Exception::Role::ParamsHash role.
3084
-
3085
- This class has the following methods:
3086
-
3087
- =over 4
3088
-
3089
- =item * $exception->class()
3090
-
3091
- Returns a Str value.
3092
-
3093
- =item * $exception->params()
3094
-
3095
- Returns a HashRef value.
3096
-
3097
- =back
3098
-
3099
- =head2 Moose::Exception::NeedsTypeConstraintUnionForTypeCoercionUnion
3100
-
3101
- This class consumes the Moose::Exception::Role::TypeConstraint role.
3102
-
3103
- This class has the following methods:
3104
-
3105
- =over 4
3106
-
3107
- =item * $exception->type_coercion_union_object()
3108
-
3109
- Returns a L<Moose::Meta::TypeCoercion::Union> object.
3110
-
3111
- =item * $exception->type_name()
3112
-
3113
- Returns a Str value.
3114
-
3115
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
3116
-
3117
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
3118
-
3119
-
3120
- =back
3121
-
3122
- =head2 Moose::Exception::NeitherAttributeNorAttributeNameIsGiven
3123
-
3124
- This class has no attributes except for C<message> and C<trace()>.
3125
-
3126
- =head2 Moose::Exception::NeitherClassNorClassNameIsGiven
3127
-
3128
- This class has no attributes except for C<message> and C<trace()>.
3129
-
3130
- =head2 Moose::Exception::NeitherRoleNorRoleNameIsGiven
3131
-
3132
- This class has no attributes except for C<message> and C<trace()>.
3133
-
3134
- =head2 Moose::Exception::NeitherTypeNorTypeNameIsGiven
3135
-
3136
- This class has no attributes except for C<message> and C<trace()>.
3137
-
3138
- =head2 Moose::Exception::NoAttributeFoundInSuperClass
3139
-
3140
- This class consumes the Moose::Exception::Role::Class, Moose::Exception::Role::InvalidAttributeOptions, and Moose::Exception::Role::ParamsHash roles.
3141
-
3142
- This class has the following methods:
3143
-
3144
- =over 4
3145
-
3146
- =item * $exception->attribute_name()
3147
-
3148
- Returns a Str value.
3149
-
3150
- =item * $exception->class_name()
3151
-
3152
- Returns a Str value.
3153
-
3154
- This attribute can be used for fetching metaclass instance:
3155
-
3156
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3157
-
3158
-
3159
- =item * $exception->params()
3160
-
3161
- Returns a HashRef value.
3162
-
3163
- =back
3164
-
3165
- =head2 Moose::Exception::NoBodyToInitializeInAnAbstractBaseClass
3166
-
3167
- This class has the following methods:
3168
-
3169
- =over 4
3170
-
3171
- =item * $exception->package_name()
3172
-
3173
- Returns a Str value.
3174
-
3175
- =back
3176
-
3177
- =head2 Moose::Exception::NoCasesMatched
3178
-
3179
- This class has the following methods:
3180
-
3181
- =over 4
3182
-
3183
- =item * $exception->cases_to_be_matched()
3184
-
3185
- Returns an ArrayRef value.
3186
-
3187
- =item * $exception->to_match()
3188
-
3189
- =back
3190
-
3191
- =head2 Moose::Exception::NoConstraintCheckForTypeConstraint
3192
-
3193
- This class consumes the Moose::Exception::Role::TypeConstraint role.
3194
-
3195
- This class has the following methods:
3196
-
3197
- =over 4
3198
-
3199
- =item * $exception->type_name()
3200
-
3201
- Returns a Str value.
3202
-
3203
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
3204
-
3205
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
3206
-
3207
-
3208
- =back
3209
-
3210
- =head2 Moose::Exception::NoDestructorClassSpecified
3211
-
3212
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::ParamsHash roles.
3213
-
3214
- This class has the following methods:
3215
-
3216
- =over 4
3217
-
3218
- =item * $exception->class_name()
3219
-
3220
- Returns a Str value.
3221
-
3222
- This attribute can be used for fetching metaclass instance:
3223
-
3224
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3225
-
3226
-
3227
- =item * $exception->params()
3228
-
3229
- Returns a HashRef value.
3230
-
3231
- =back
3232
-
3233
- =head2 Moose::Exception::NoImmutableTraitSpecifiedForClass
3234
-
3235
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::ParamsHash roles.
3236
-
3237
- This class has the following methods:
3238
-
3239
- =over 4
3240
-
3241
- =item * $exception->class_name()
3242
-
3243
- Returns a Str value.
3244
-
3245
- This attribute can be used for fetching metaclass instance:
3246
-
3247
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3248
-
3249
-
3250
- =item * $exception->params()
3251
-
3252
- Returns a HashRef value.
3253
-
3254
- =back
3255
-
3256
- =head2 Moose::Exception::NoParentGivenToSubtype
3257
-
3258
- This class has the following methods:
3259
-
3260
- =over 4
3261
-
3262
- =item * $exception->name()
3263
-
3264
- Returns a Str value.
3265
-
3266
- =back
3267
-
3268
- =head2 Moose::Exception::OnlyInstancesCanBeCloned
3269
-
3270
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::ParamsHash roles.
3271
-
3272
- This class has the following methods:
3273
-
3274
- =over 4
3275
-
3276
- =item * $exception->class_name()
3277
-
3278
- Returns a Str value.
3279
-
3280
- This attribute can be used for fetching metaclass instance:
3281
-
3282
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3283
-
3284
-
3285
- =item * $exception->instance()
3286
-
3287
- =item * $exception->params()
3288
-
3289
- Returns a HashRef value.
3290
-
3291
- =back
3292
-
3293
- =head2 Moose::Exception::OperatorIsRequired
3294
-
3295
- This class consumes the Moose::Exception::Role::ParamsHash role.
3296
-
3297
- This class has the following methods:
3298
-
3299
- =over 4
3300
-
3301
- =item * $exception->class()
3302
-
3303
- Returns a Str value.
3304
-
3305
- =item * $exception->params()
3306
-
3307
- Returns a HashRef value.
3308
-
3309
- =back
3310
-
3311
- =head2 Moose::Exception::OverloadConflictInSummation
3312
-
3313
- This class has the following methods:
3314
-
3315
- =over 4
3316
-
3317
- =item * $exception->overloaded_op()
3318
-
3319
- Returns a Str value.
3320
-
3321
- =item * $exception->role_application()
3322
-
3323
- Returns a L<Moose::Meta::Role::Application::RoleSummation> object.
3324
-
3325
- =item * $exception->role_names()
3326
-
3327
- =item * $exception->elements()
3328
-
3329
- This attribute is an ArrayRef containing role names, if you want metaobjects
3330
- associated with these role names, then call method roles on the exception object.
3331
-
3332
-
3333
- =back
3334
-
3335
- =head2 Moose::Exception::OverloadRequiresAMetaClass
3336
-
3337
- This class has no attributes except for C<message> and C<trace()>.
3338
-
3339
- =head2 Moose::Exception::OverloadRequiresAMetaMethod
3340
-
3341
- This class has no attributes except for C<message> and C<trace()>.
3342
-
3343
- =head2 Moose::Exception::OverloadRequiresAMetaOverload
3344
-
3345
- This class has no attributes except for C<message> and C<trace()>.
3346
-
3347
- =head2 Moose::Exception::OverloadRequiresAMethodNameOrCoderef
3348
-
3349
- This class has no attributes except for C<message> and C<trace()>.
3350
-
3351
- =head2 Moose::Exception::OverloadRequiresAnOperator
3352
-
3353
- This class has no attributes except for C<message> and C<trace()>.
3354
-
3355
- =head2 Moose::Exception::OverloadRequiresNamesForCoderef
3356
-
3357
- This class has no attributes except for C<message> and C<trace()>.
3358
-
3359
- =head2 Moose::Exception::OverrideConflictInComposition
3360
-
3361
- This class consumes the Moose::Exception::Role::Role role.
3362
-
3363
- This class has the following methods:
3364
-
3365
- =over 4
3366
-
3367
- =item * $exception->method_name()
3368
-
3369
- Returns a Str value.
3370
-
3371
- =item * $exception->role_being_applied_name()
3372
-
3373
- Returns a Str value.
3374
-
3375
- =item * $exception->role_name()
3376
-
3377
- Returns a Str value.
3378
-
3379
- This attribute can be used for fetching the class's metaclass instance:
3380
-
3381
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
3382
-
3383
-
3384
- =item * $exception->two_overrides_found()
3385
-
3386
- Returns a Bool value.
3387
-
3388
- =back
3389
-
3390
- =head2 Moose::Exception::OverrideConflictInSummation
3391
-
3392
- This class has the following methods:
3393
-
3394
- =over 4
3395
-
3396
- =item * $exception->method_name()
3397
-
3398
- Returns a Str value.
3399
-
3400
- =item * $exception->role_application()
3401
-
3402
- Returns a L<Moose::Meta::Role::Application::RoleSummation> object.
3403
-
3404
- =item * $exception->role_names()
3405
-
3406
- =item * $exception->elements()
3407
-
3408
- This attribute is an ArrayRef containing role names, if you want metaobjects
3409
- associated with these role names, then call method roles on the exception object.
3410
-
3411
-
3412
- =item * $exception->two_overrides_found()
3413
-
3414
- Returns a Bool value.
3415
-
3416
- =back
3417
-
3418
- =head2 Moose::Exception::PackageDoesNotUseMooseExporter
3419
-
3420
- This class has the following methods:
3421
-
3422
- =over 4
3423
-
3424
- =item * $exception->is_loaded()
3425
-
3426
- Returns a Bool value.
3427
-
3428
- =item * $exception->package()
3429
-
3430
- Returns a Str value.
3431
-
3432
- =back
3433
-
3434
- =head2 Moose::Exception::PackageNameAndNameParamsNotGivenToWrap
3435
-
3436
- This class consumes the Moose::Exception::Role::ParamsHash role.
3437
-
3438
- This class has the following methods:
3439
-
3440
- =over 4
3441
-
3442
- =item * $exception->class()
3443
-
3444
- Returns a Str value.
3445
-
3446
- =item * $exception->code()
3447
-
3448
- Returns a CodeRef value.
3449
-
3450
- =item * $exception->params()
3451
-
3452
- Returns a HashRef value.
3453
-
3454
- =back
3455
-
3456
- =head2 Moose::Exception::PackagesAndModulesAreNotCachable
3457
-
3458
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::ParamsHash roles.
3459
-
3460
- This class has the following methods:
3461
-
3462
- =over 4
3463
-
3464
- =item * $exception->class_name()
3465
-
3466
- Returns a Str value.
3467
-
3468
- This attribute can be used for fetching metaclass instance:
3469
-
3470
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3471
-
3472
-
3473
- =item * $exception->is_module()
3474
-
3475
- Returns a Bool value.
3476
-
3477
- =item * $exception->params()
3478
-
3479
- Returns a HashRef value.
3480
-
3481
- =back
3482
-
3483
- =head2 Moose::Exception::ParameterIsNotSubtypeOfParent
3484
-
3485
- This class consumes the Moose::Exception::Role::TypeConstraint role.
3486
-
3487
- This class has the following methods:
3488
-
3489
- =over 4
3490
-
3491
- =item * $exception->type_name()
3492
-
3493
- Returns a Str value.
3494
-
3495
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
3496
-
3497
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
3498
-
3499
-
3500
- =item * $exception->type_parameter()
3501
-
3502
- Returns a Str value.
3503
-
3504
- =back
3505
-
3506
- =head2 Moose::Exception::ReferencesAreNotAllowedAsDefault
3507
-
3508
- This class consumes the Moose::Exception::Role::ParamsHash role.
3509
-
3510
- This class has the following methods:
3511
-
3512
- =over 4
3513
-
3514
- =item * $exception->attribute_name()
3515
-
3516
- Returns a Str value.
3517
-
3518
- =item * $exception->class()
3519
-
3520
- Returns a Str value.
3521
-
3522
- =item * $exception->params()
3523
-
3524
- Returns a HashRef value.
3525
-
3526
- =back
3527
-
3528
- =head2 Moose::Exception::RequiredAttributeLacksInitialization
3529
-
3530
- This class consumes the Moose::Exception::Role::ParamsHash role.
3531
-
3532
- This class has the following methods:
3533
-
3534
- =over 4
3535
-
3536
- =item * $exception->class()
3537
-
3538
- Returns a Str value.
3539
-
3540
- =item * $exception->params()
3541
-
3542
- Returns a HashRef value.
3543
-
3544
- =back
3545
-
3546
- =head2 Moose::Exception::RequiredAttributeNeedsADefault
3547
-
3548
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
3549
-
3550
- This class has the following methods:
3551
-
3552
- =over 4
3553
-
3554
- =item * $exception->attribute_name()
3555
-
3556
- Returns a Str value.
3557
-
3558
- =item * $exception->params()
3559
-
3560
- Returns a HashRef value.
3561
-
3562
- =back
3563
-
3564
- =head2 Moose::Exception::RequiredMethodsImportedByClass
3565
-
3566
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::Role roles.
3567
-
3568
- This class has the following methods:
3569
-
3570
- =over 4
3571
-
3572
- =item * $exception->class_name()
3573
-
3574
- Returns a Str value.
3575
-
3576
- This attribute can be used for fetching metaclass instance:
3577
-
3578
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3579
-
3580
-
3581
- =item * $exception->imported_method()
3582
-
3583
- Returns a L<Moose::Meta::Role::Method::Required> object.
3584
-
3585
- =item * $exception->missing_methods()
3586
-
3587
- Returns an ArrayRef[Moose::Meta::Role::Method::Required] value.
3588
-
3589
- =item * $exception->role_name()
3590
-
3591
- Returns a Str value.
3592
-
3593
- This attribute can be used for fetching the class's metaclass instance:
3594
-
3595
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
3596
-
3597
-
3598
- =back
3599
-
3600
- =head2 Moose::Exception::RequiredMethodsNotImplementedByClass
3601
-
3602
- This class consumes the Moose::Exception::Role::Class and Moose::Exception::Role::Role roles.
3603
-
3604
- This class has the following methods:
3605
-
3606
- =over 4
3607
-
3608
- =item * $exception->class_name()
3609
-
3610
- Returns a Str value.
3611
-
3612
- This attribute can be used for fetching metaclass instance:
3613
-
3614
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3615
-
3616
-
3617
- =item * $exception->missing_methods()
3618
-
3619
- Returns an ArrayRef[Moose::Meta::Role::Method::Required] value.
3620
-
3621
- =item * $exception->role_name()
3622
-
3623
- Returns a Str value.
3624
-
3625
- This attribute can be used for fetching the class's metaclass instance:
3626
-
3627
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
3628
-
3629
-
3630
- =back
3631
-
3632
- =head2 Moose::Exception::RoleDoesTheExcludedRole
3633
-
3634
- This class consumes the Moose::Exception::Role::Role role.
3635
-
3636
- This class has the following methods:
3637
-
3638
- =over 4
3639
-
3640
- =item * $exception->excluded_role_name()
3641
-
3642
- Returns a Str value.
3643
-
3644
- =item * $exception->role_name()
3645
-
3646
- Returns a Str value.
3647
-
3648
- This attribute can be used for fetching the class's metaclass instance:
3649
-
3650
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
3651
-
3652
-
3653
- =item * $exception->second_role_name()
3654
-
3655
- Returns a Str value.
3656
-
3657
- =back
3658
-
3659
- =head2 Moose::Exception::RoleExclusionConflict
3660
-
3661
- This class consumes the Moose::Exception::Role::Role role.
3662
-
3663
- This class has the following methods:
3664
-
3665
- =over 4
3666
-
3667
- =item * $exception->role_name()
3668
-
3669
- Returns a Str value.
3670
-
3671
- This attribute can be used for fetching the class's metaclass instance:
3672
-
3673
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
3674
-
3675
-
3676
- =item * $exception->roles()
3677
-
3678
- Returns an ArrayRef value.
3679
-
3680
- =back
3681
-
3682
- =head2 Moose::Exception::RoleNameRequired
3683
-
3684
- This class consumes the Moose::Exception::Role::Class role.
3685
-
3686
- This class has the following methods:
3687
-
3688
- =over 4
3689
-
3690
- =item * $exception->class_name()
3691
-
3692
- Returns a Str value.
3693
-
3694
- This attribute can be used for fetching metaclass instance:
3695
-
3696
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3697
-
3698
-
3699
- =back
3700
-
3701
- =head2 Moose::Exception::RoleNameRequiredForMooseMetaRole
3702
-
3703
- This class consumes the Moose::Exception::Role::Role role.
3704
-
3705
- This class has the following methods:
3706
-
3707
- =over 4
3708
-
3709
- =item * $exception->role_name()
3710
-
3711
- Returns a Str value.
3712
-
3713
- This attribute can be used for fetching the class's metaclass instance:
3714
-
3715
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
3716
-
3717
-
3718
- =back
3719
-
3720
- =head2 Moose::Exception::RolesDoNotSupportAugment
3721
-
3722
- This class has no attributes except for C<message> and C<trace()>.
3723
-
3724
- =head2 Moose::Exception::RolesDoNotSupportExtends
3725
-
3726
- This class has no attributes except for C<message> and C<trace()>.
3727
-
3728
- =head2 Moose::Exception::RolesDoNotSupportInner
3729
-
3730
- This class has no attributes except for C<message> and C<trace()>.
3731
-
3732
- =head2 Moose::Exception::RolesDoNotSupportRegexReferencesForMethodModifiers
3733
-
3734
- This class consumes the Moose::Exception::Role::Role role.
3735
-
3736
- This class has the following methods:
3737
-
3738
- =over 4
3739
-
3740
- =item * $exception->modifier_type()
3741
-
3742
- Returns a Str value.
3743
-
3744
- =item * $exception->role_name()
3745
-
3746
- Returns a Str value.
3747
-
3748
- This attribute can be used for fetching the class's metaclass instance:
3749
-
3750
- my $metaclass_instance = Moose::Util::find_meta( $exception->role_name );
3751
-
3752
-
3753
- =back
3754
-
3755
- =head2 Moose::Exception::RolesInCreateTakesAnArrayRef
3756
-
3757
- This class consumes the Moose::Exception::Role::ParamsHash role.
3758
-
3759
- This class has the following methods:
3760
-
3761
- =over 4
3762
-
3763
- =item * $exception->params()
3764
-
3765
- Returns a HashRef value.
3766
-
3767
- =back
3768
-
3769
- =head2 Moose::Exception::RolesListMustBeInstancesOfMooseMetaRole
3770
-
3771
- This class consumes the Moose::Exception::Role::ParamsHash role.
3772
-
3773
- This class has the following methods:
3774
-
3775
- =over 4
3776
-
3777
- =item * $exception->class()
3778
-
3779
- Returns a Str value.
3780
-
3781
- =item * $exception->params()
3782
-
3783
- Returns a HashRef value.
3784
-
3785
- =item * $exception->role()
3786
-
3787
- =back
3788
-
3789
- =head2 Moose::Exception::SingleParamsToNewMustBeHashRef
3790
-
3791
- This class has no attributes except for C<message> and C<trace()>.
3792
-
3793
- =head2 Moose::Exception::TriggerMustBeACodeRef
3794
-
3795
- This class consumes the Moose::Exception::Role::InvalidAttributeOptions and Moose::Exception::Role::ParamsHash roles.
3796
-
3797
- This class has the following methods:
3798
-
3799
- =over 4
3800
-
3801
- =item * $exception->attribute_name()
3802
-
3803
- Returns a Str value.
3804
-
3805
- =item * $exception->params()
3806
-
3807
- Returns a HashRef value.
3808
-
3809
- =back
3810
-
3811
- =head2 Moose::Exception::TypeConstraintCannotBeUsedForAParameterizableType
3812
-
3813
- This class consumes the Moose::Exception::Role::TypeConstraint role.
3814
-
3815
- This class has the following methods:
3816
-
3817
- =over 4
3818
-
3819
- =item * $exception->parent_type_name()
3820
-
3821
- Returns a Str value.
3822
-
3823
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
3824
-
3825
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->parent_type_name );
3826
-
3827
-
3828
- =item * $exception->type_name()
3829
-
3830
- Returns a Str value.
3831
-
3832
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
3833
-
3834
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
3835
-
3836
-
3837
- =back
3838
-
3839
- =head2 Moose::Exception::TypeConstraintIsAlreadyCreated
3840
-
3841
- This class consumes the Moose::Exception::Role::TypeConstraint role.
3842
-
3843
- This class has the following methods:
3844
-
3845
- =over 4
3846
-
3847
- =item * $exception->package_defined_in()
3848
-
3849
- Returns a Str value.
3850
-
3851
- =item * $exception->type_name()
3852
-
3853
- Returns a Str value.
3854
-
3855
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
3856
-
3857
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
3858
-
3859
-
3860
- =back
3861
-
3862
- =head2 Moose::Exception::TypeParameterMustBeMooseMetaType
3863
-
3864
- This class consumes the Moose::Exception::Role::TypeConstraint role.
3865
-
3866
- This class has the following methods:
3867
-
3868
- =over 4
3869
-
3870
- =item * $exception->type_name()
3871
-
3872
- Returns a Str value.
3873
-
3874
- This attribute can be used for fetching type constraint(Moose::Meta::TypeConstraint):
3875
-
3876
- my $type_constraint = Moose::Util::TypeConstraints::find_type_constraint( $exception->type_name );
3877
-
3878
-
3879
- =back
3880
-
3881
- =head2 Moose::Exception::UnableToCanonicalizeHandles
3882
-
3883
- This class consumes the Moose::Exception::Role::Attribute role.
3884
-
3885
- This class has the following methods:
3886
-
3887
- =over 4
3888
-
3889
- =item * $exception->attribute()
3890
-
3891
- Returns a L<Class::MOP::Attribute> object.
3892
-
3893
- =item * $exception->handles()
3894
-
3895
- =back
3896
-
3897
- =head2 Moose::Exception::UnableToCanonicalizeNonRolePackage
3898
-
3899
- This class consumes the Moose::Exception::Role::Attribute role.
3900
-
3901
- This class has the following methods:
3902
-
3903
- =over 4
3904
-
3905
- =item * $exception->attribute()
3906
-
3907
- Returns a L<Class::MOP::Attribute> object.
3908
-
3909
- =item * $exception->handles()
3910
-
3911
- Returns a Str value.
3912
-
3913
- =back
3914
-
3915
- =head2 Moose::Exception::UnableToRecognizeDelegateMetaclass
3916
-
3917
- This class consumes the Moose::Exception::Role::Attribute role.
3918
-
3919
- This class has the following methods:
3920
-
3921
- =over 4
3922
-
3923
- =item * $exception->attribute()
3924
-
3925
- Returns a L<Class::MOP::Attribute> object.
3926
-
3927
- =item * $exception->delegate_metaclass()
3928
-
3929
- =back
3930
-
3931
- =head2 Moose::Exception::UndefinedHashKeysPassedToMethod
3932
-
3933
- This class has the following methods:
3934
-
3935
- =over 4
3936
-
3937
- =item * $exception->hash_keys()
3938
-
3939
- Returns an ArrayRef value.
3940
-
3941
- =item * $exception->method_name()
3942
-
3943
- Returns a Str value.
3944
-
3945
- =back
3946
-
3947
- =head2 Moose::Exception::UnionCalledWithAnArrayRefAndAdditionalArgs
3948
-
3949
- This class has the following methods:
3950
-
3951
- =over 4
3952
-
3953
- =item * $exception->args()
3954
-
3955
- Returns an ArrayRef value.
3956
-
3957
- =item * $exception->array()
3958
-
3959
- Returns an ArrayRef value.
3960
-
3961
- =back
3962
-
3963
- =head2 Moose::Exception::UnionTakesAtleastTwoTypeNames
3964
-
3965
- This class has no attributes except for C<message> and C<trace()>.
3966
-
3967
- =head2 Moose::Exception::ValidationFailedForInlineTypeConstraint
3968
-
3969
- This class consumes the Moose::Exception::Role::Class role.
3970
-
3971
- This class has the following methods:
3972
-
3973
- =over 4
3974
-
3975
- =item * $exception->attribute_name()
3976
-
3977
- Returns a Str value.
3978
-
3979
- =item * $exception->class_name()
3980
-
3981
- Returns a Str value.
3982
-
3983
- This attribute can be used for fetching metaclass instance:
3984
-
3985
- my $metaclass_instance = Moose::Util::find_meta( $exception->class_name );
3986
-
3987
-
3988
- =item * $exception->new_member()
3989
-
3990
- Returns a Bool value.
3991
-
3992
- =item * $exception->type_constraint_message()
3993
-
3994
- Returns a Str value.
3995
-
3996
- =item * $exception->value()
3997
-
3998
- =back
3999
-
4000
- =head2 Moose::Exception::ValidationFailedForTypeConstraint
4001
-
4002
- This class consumes the Moose::Exception::Role::Attribute role.
4003
-
4004
- This class has the following methods:
4005
-
4006
- =over 4
4007
-
4008
- =item * $exception->attribute()
4009
-
4010
- Returns a L<Class::MOP::Attribute> object.
4011
-
4012
- =item * $exception->type()
4013
-
4014
- Returns a Moose::Util::TypeConstraints value.
4015
-
4016
- =item * $exception->value()
4017
-
4018
- =back
4019
-
4020
- =head2 Moose::Exception::WrapTakesACodeRefToBless
4021
-
4022
- This class consumes the Moose::Exception::Role::ParamsHash role.
4023
-
4024
- This class has the following methods:
4025
-
4026
- =over 4
4027
-
4028
- =item * $exception->class()
4029
-
4030
- Returns a Str value.
4031
-
4032
- =item * $exception->code()
4033
-
4034
- =item * $exception->params()
4035
-
4036
- Returns a HashRef value.
4037
-
4038
- =back
4039
-
4040
- =head2 Moose::Exception::WrongTypeConstraintGiven
4041
-
4042
- This class consumes the Moose::Exception::Role::ParamsHash role.
4043
-
4044
- This class has the following methods:
4045
-
4046
- =over 4
4047
-
4048
- =item * $exception->attribute_name()
4049
-
4050
- Returns a Str value.
4051
-
4052
- =item * $exception->given_type()
4053
-
4054
- Returns a Str value.
4055
-
4056
- =item * $exception->params()
4057
-
4058
- Returns a HashRef value.
4059
-
4060
- =item * $exception->required_type()
4061
-
4062
- Returns a Str value.
4063
-
4064
- =back
4065
-
4066
- =cut
4067
-
4068
-
4069
- =for comment insert generated content here
4070
-
4071
- =head1 AUTHORS
4072
-
4073
- =over 4
4074
-
4075
- =item *
4076
-
4077
- Stevan Little <stevan@cpan.org>
4078
-
4079
- =item *
4080
-
4081
- Dave Rolsky <autarch@urth.org>
4082
-
4083
- =item *
4084
-
4085
- Jesse Luehrs <doy@cpan.org>
4086
-
4087
- =item *
4088
-
4089
- Shawn M Moore <sartak@cpan.org>
4090
-
4091
- =item *
4092
-
4093
- יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
4094
-
4095
- =item *
4096
-
4097
- Karen Etheridge <ether@cpan.org>
4098
-
4099
- =item *
4100
-
4101
- Florian Ragwitz <rafl@debian.org>
4102
-
4103
- =item *
4104
-
4105
- Hans Dieter Pearcey <hdp@cpan.org>
4106
-
4107
- =item *
4108
-
4109
- Chris Prather <chris@prather.org>
4110
-
4111
- =item *
4112
-
4113
- Matt S Trout <mstrout@cpan.org>
4114
-
4115
- =back
4116
-
4117
- =head1 COPYRIGHT AND LICENSE
4118
-
4119
- This software is copyright (c) 2006 by Infinity Interactive, Inc.
4120
-
4121
- This is free software; you can redistribute it and/or modify it under
4122
- the same terms as the Perl 5 programming language system itself.
4123
-
4124
- =cut