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,2312 +0,0 @@
1
- package Class::MOP::Class;
2
- our $VERSION = '2.2207';
3
-
4
- use strict;
5
- use warnings;
6
-
7
- use Class::MOP::Instance;
8
- use Class::MOP::Method::Wrapped;
9
- use Class::MOP::Method::Accessor;
10
- use Class::MOP::Method::Constructor;
11
- use Class::MOP::MiniTrait;
12
-
13
- use Carp 'confess';
14
- use Module::Runtime 'use_package_optimistically';
15
- use Scalar::Util 'blessed';
16
- use Sub::Util 1.40 'set_subname';
17
- use Try::Tiny;
18
- use List::Util 1.33 'all';
19
-
20
- use parent 'Class::MOP::Module',
21
- 'Class::MOP::Mixin::HasAttributes',
22
- 'Class::MOP::Mixin::HasMethods',
23
- 'Class::MOP::Mixin::HasOverloads';
24
-
25
- # Creation
26
-
27
- sub initialize {
28
- my $class = shift;
29
-
30
- my $package_name;
31
-
32
- if ( @_ % 2 ) {
33
- $package_name = shift;
34
- } else {
35
- my %options = @_;
36
- $package_name = $options{package};
37
- }
38
-
39
- ($package_name && !ref($package_name))
40
- || ($class||__PACKAGE__)->_throw_exception( InitializeTakesUnBlessedPackageName => package_name => $package_name );
41
- return Class::MOP::get_metaclass_by_name($package_name)
42
- || $class->_construct_class_instance(package => $package_name, @_);
43
- }
44
-
45
- sub reinitialize {
46
- my ( $class, @args ) = @_;
47
- unshift @args, "package" if @args % 2;
48
- my %options = @args;
49
- my $old_metaclass = blessed($options{package})
50
- ? $options{package}
51
- : Class::MOP::get_metaclass_by_name($options{package});
52
- $options{weaken} = Class::MOP::metaclass_is_weak($old_metaclass->name)
53
- if !exists $options{weaken}
54
- && blessed($old_metaclass)
55
- && $old_metaclass->isa('Class::MOP::Class');
56
- $old_metaclass->_remove_generated_metaobjects
57
- if $old_metaclass && $old_metaclass->isa('Class::MOP::Class');
58
- my $new_metaclass = $class->SUPER::reinitialize(%options);
59
- $new_metaclass->_restore_metaobjects_from($old_metaclass)
60
- if $old_metaclass && $old_metaclass->isa('Class::MOP::Class');
61
- return $new_metaclass;
62
- }
63
-
64
- # NOTE: (meta-circularity)
65
- # this is a special form of _construct_instance
66
- # (see below), which is used to construct class
67
- # meta-object instances for any Class::MOP::*
68
- # class. All other classes will use the more
69
- # normal &construct_instance.
70
- sub _construct_class_instance {
71
- my $class = shift;
72
- my $options = @_ == 1 ? $_[0] : {@_};
73
- my $package_name = $options->{package};
74
- (defined $package_name && $package_name)
75
- || $class->_throw_exception("ConstructClassInstanceTakesPackageName");
76
- # NOTE:
77
- # return the metaclass if we have it cached,
78
- # and it is still defined (it has not been
79
- # reaped by DESTROY yet, which can happen
80
- # annoyingly enough during global destruction)
81
-
82
- if (defined(my $meta = Class::MOP::get_metaclass_by_name($package_name))) {
83
- return $meta;
84
- }
85
-
86
- $class
87
- = ref $class
88
- ? $class->_real_ref_name
89
- : $class;
90
-
91
- # now create the metaclass
92
- my $meta;
93
- if ($class eq 'Class::MOP::Class') {
94
- $meta = $class->_new($options);
95
- }
96
- else {
97
- # NOTE:
98
- # it is safe to use meta here because
99
- # class will always be a subclass of
100
- # Class::MOP::Class, which defines meta
101
- $meta = $class->meta->_construct_instance($options)
102
- }
103
-
104
- # and check the metaclass compatibility
105
- $meta->_check_metaclass_compatibility();
106
-
107
- Class::MOP::store_metaclass_by_name($package_name, $meta);
108
-
109
- # NOTE:
110
- # we need to weaken any anon classes
111
- # so that they can call DESTROY properly
112
- Class::MOP::weaken_metaclass($package_name) if $options->{weaken};
113
-
114
- $meta;
115
- }
116
-
117
- sub _real_ref_name {
118
- my $self = shift;
119
-
120
- # NOTE: we need to deal with the possibility of class immutability here,
121
- # and then get the name of the class appropriately
122
- return $self->is_immutable
123
- ? $self->_get_mutable_metaclass_name()
124
- : ref $self;
125
- }
126
-
127
- sub _new {
128
- my $class = shift;
129
-
130
- return Class::MOP::Class->initialize($class)->new_object(@_)
131
- if $class ne __PACKAGE__;
132
-
133
- my $options = @_ == 1 ? $_[0] : {@_};
134
-
135
- return bless {
136
- # inherited from Class::MOP::Package
137
- 'package' => $options->{package},
138
-
139
- # NOTE:
140
- # since the following attributes will
141
- # actually be loaded from the symbol
142
- # table, and actually bypass the instance
143
- # entirely, we can just leave these things
144
- # listed here for reference, because they
145
- # should not actually have a value associated
146
- # with the slot.
147
- 'namespace' => \undef,
148
- 'methods' => {},
149
-
150
- # inherited from Class::MOP::Module
151
- 'version' => \undef,
152
- 'authority' => \undef,
153
-
154
- # defined in Class::MOP::Class
155
- 'superclasses' => \undef,
156
-
157
- 'attributes' => {},
158
- 'attribute_metaclass' =>
159
- ( $options->{'attribute_metaclass'} || 'Class::MOP::Attribute' ),
160
- 'method_metaclass' =>
161
- ( $options->{'method_metaclass'} || 'Class::MOP::Method' ),
162
- 'wrapped_method_metaclass' => (
163
- $options->{'wrapped_method_metaclass'}
164
- || 'Class::MOP::Method::Wrapped'
165
- ),
166
- 'instance_metaclass' =>
167
- ( $options->{'instance_metaclass'} || 'Class::MOP::Instance' ),
168
- 'immutable_trait' => (
169
- $options->{'immutable_trait'}
170
- || 'Class::MOP::Class::Immutable::Trait'
171
- ),
172
- 'constructor_name' => ( $options->{constructor_name} || 'new' ),
173
- 'constructor_class' => (
174
- $options->{constructor_class} || 'Class::MOP::Method::Constructor'
175
- ),
176
- 'destructor_class' => $options->{destructor_class},
177
- }, $class;
178
- }
179
-
180
- ## Metaclass compatibility
181
- {
182
- my %base_metaclass = (
183
- attribute_metaclass => 'Class::MOP::Attribute',
184
- method_metaclass => 'Class::MOP::Method',
185
- wrapped_method_metaclass => 'Class::MOP::Method::Wrapped',
186
- instance_metaclass => 'Class::MOP::Instance',
187
- constructor_class => 'Class::MOP::Method::Constructor',
188
- destructor_class => 'Class::MOP::Method::Destructor',
189
- );
190
-
191
- sub _base_metaclasses { %base_metaclass }
192
- }
193
-
194
- sub _check_metaclass_compatibility {
195
- my $self = shift;
196
-
197
- my @superclasses = $self->superclasses
198
- or return;
199
-
200
- $self->_fix_metaclass_incompatibility(@superclasses);
201
-
202
- my %base_metaclass = $self->_base_metaclasses;
203
-
204
- # this is always okay ...
205
- return
206
- if ref($self) eq 'Class::MOP::Class'
207
- && all {
208
- my $meta = $self->$_;
209
- !defined($meta) || $meta eq $base_metaclass{$_};
210
- }
211
- keys %base_metaclass;
212
-
213
- for my $superclass (@superclasses) {
214
- $self->_check_class_metaclass_compatibility($superclass);
215
- }
216
-
217
- for my $metaclass_type ( keys %base_metaclass ) {
218
- next unless defined $self->$metaclass_type;
219
- for my $superclass (@superclasses) {
220
- $self->_check_single_metaclass_compatibility( $metaclass_type,
221
- $superclass );
222
- }
223
- }
224
- }
225
-
226
- sub _check_class_metaclass_compatibility {
227
- my $self = shift;
228
- my ( $superclass_name ) = @_;
229
-
230
- if (!$self->_class_metaclass_is_compatible($superclass_name)) {
231
- my $super_meta = Class::MOP::get_metaclass_by_name($superclass_name);
232
-
233
- my $super_meta_type = $super_meta->_real_ref_name;
234
-
235
- $self->_throw_exception( IncompatibleMetaclassOfSuperclass => class_name => $self->name,
236
- class_meta_type => ref( $self ),
237
- superclass_name => $superclass_name,
238
- superclass_meta_type => $super_meta_type
239
- );
240
- }
241
- }
242
-
243
- sub _class_metaclass_is_compatible {
244
- my $self = shift;
245
- my ( $superclass_name ) = @_;
246
-
247
- my $super_meta = Class::MOP::get_metaclass_by_name($superclass_name)
248
- || return 1;
249
-
250
- my $super_meta_name = $super_meta->_real_ref_name;
251
-
252
- return $self->_is_compatible_with($super_meta_name);
253
- }
254
-
255
- sub _check_single_metaclass_compatibility {
256
- my $self = shift;
257
- my ( $metaclass_type, $superclass_name ) = @_;
258
-
259
- if (!$self->_single_metaclass_is_compatible($metaclass_type, $superclass_name)) {
260
- my $super_meta = Class::MOP::get_metaclass_by_name($superclass_name);
261
-
262
- $self->_throw_exception( MetaclassTypeIncompatible => class_name => $self->name,
263
- superclass_name => $superclass_name,
264
- metaclass_type => $metaclass_type
265
- );
266
- }
267
- }
268
-
269
- sub _single_metaclass_is_compatible {
270
- my $self = shift;
271
- my ( $metaclass_type, $superclass_name ) = @_;
272
-
273
- my $super_meta = Class::MOP::get_metaclass_by_name($superclass_name)
274
- || return 1;
275
-
276
- # for instance, Moose::Meta::Class has a error_class attribute, but
277
- # Class::MOP::Class doesn't - this shouldn't be an error
278
- return 1 unless $super_meta->can($metaclass_type);
279
- # for instance, Moose::Meta::Class has a destructor_class, but
280
- # Class::MOP::Class doesn't - this shouldn't be an error
281
- return 1 unless defined $super_meta->$metaclass_type;
282
- # if metaclass is defined in superclass but not here, it's not compatible
283
- # this is a really odd case
284
- return 0 unless defined $self->$metaclass_type;
285
-
286
- return $self->$metaclass_type->_is_compatible_with($super_meta->$metaclass_type);
287
- }
288
-
289
- sub _fix_metaclass_incompatibility {
290
- my $self = shift;
291
- my @supers = map { Class::MOP::Class->initialize($_) } @_;
292
-
293
- my $necessary = 0;
294
- for my $super (@supers) {
295
- $necessary = 1
296
- if $self->_can_fix_metaclass_incompatibility($super);
297
- }
298
- return unless $necessary;
299
-
300
- for my $super (@supers) {
301
- if (!$self->_class_metaclass_is_compatible($super->name)) {
302
- $self->_fix_class_metaclass_incompatibility($super);
303
- }
304
- }
305
-
306
- my %base_metaclass = $self->_base_metaclasses;
307
- for my $metaclass_type (keys %base_metaclass) {
308
- for my $super (@supers) {
309
- if (!$self->_single_metaclass_is_compatible($metaclass_type, $super->name)) {
310
- $self->_fix_single_metaclass_incompatibility(
311
- $metaclass_type, $super
312
- );
313
- }
314
- }
315
- }
316
- }
317
-
318
- sub _can_fix_metaclass_incompatibility {
319
- my $self = shift;
320
- my ($super_meta) = @_;
321
-
322
- return 1 if $self->_class_metaclass_can_be_made_compatible($super_meta);
323
-
324
- my %base_metaclass = $self->_base_metaclasses;
325
- for my $metaclass_type (keys %base_metaclass) {
326
- return 1 if $self->_single_metaclass_can_be_made_compatible($super_meta, $metaclass_type);
327
- }
328
-
329
- return;
330
- }
331
-
332
- sub _class_metaclass_can_be_made_compatible {
333
- my $self = shift;
334
- my ($super_meta) = @_;
335
-
336
- return $self->_can_be_made_compatible_with($super_meta->_real_ref_name);
337
- }
338
-
339
- sub _single_metaclass_can_be_made_compatible {
340
- my $self = shift;
341
- my ($super_meta, $metaclass_type) = @_;
342
-
343
- my $specific_meta = $self->$metaclass_type;
344
-
345
- return unless $super_meta->can($metaclass_type);
346
- my $super_specific_meta = $super_meta->$metaclass_type;
347
-
348
- # for instance, Moose::Meta::Class has a destructor_class, but
349
- # Class::MOP::Class doesn't - this shouldn't be an error
350
- return unless defined $super_specific_meta;
351
-
352
- # if metaclass is defined in superclass but not here, it's fixable
353
- # this is a really odd case
354
- return 1 unless defined $specific_meta;
355
-
356
- return 1 if $specific_meta->_can_be_made_compatible_with($super_specific_meta);
357
- }
358
-
359
- sub _fix_class_metaclass_incompatibility {
360
- my $self = shift;
361
- my ( $super_meta ) = @_;
362
-
363
- if ($self->_class_metaclass_can_be_made_compatible($super_meta)) {
364
- ($self->is_pristine)
365
- || $self->_throw_exception( CannotFixMetaclassCompatibility => class_name => $self->name,
366
- superclass => $super_meta
367
- );
368
-
369
- my $super_meta_name = $super_meta->_real_ref_name;
370
-
371
- $self->_make_compatible_with($super_meta_name);
372
- }
373
- }
374
-
375
- sub _fix_single_metaclass_incompatibility {
376
- my $self = shift;
377
- my ( $metaclass_type, $super_meta ) = @_;
378
-
379
- if ($self->_single_metaclass_can_be_made_compatible($super_meta, $metaclass_type)) {
380
- ($self->is_pristine)
381
- || $self->_throw_exception( CannotFixMetaclassCompatibility => class_name => $self->name,
382
- superclass => $super_meta,
383
- metaclass_type => $metaclass_type
384
- );
385
-
386
- my $new_metaclass = $self->$metaclass_type
387
- ? $self->$metaclass_type->_get_compatible_metaclass($super_meta->$metaclass_type)
388
- : $super_meta->$metaclass_type;
389
- $self->{$metaclass_type} = $new_metaclass;
390
- }
391
- }
392
-
393
- sub _restore_metaobjects_from {
394
- my $self = shift;
395
- my ($old_meta) = @_;
396
-
397
- $self->_restore_metamethods_from($old_meta);
398
- $self->_restore_metaattributes_from($old_meta);
399
- }
400
-
401
- sub _remove_generated_metaobjects {
402
- my $self = shift;
403
-
404
- for my $attr (map { $self->get_attribute($_) } $self->get_attribute_list) {
405
- $attr->remove_accessors;
406
- }
407
- }
408
-
409
- # creating classes with MOP ...
410
-
411
- sub create {
412
- my $class = shift;
413
- my @args = @_;
414
-
415
- unshift @args, 'package' if @args % 2 == 1;
416
- my %options = @args;
417
-
418
- (ref $options{superclasses} eq 'ARRAY')
419
- || __PACKAGE__->_throw_exception( CreateMOPClassTakesArrayRefOfSuperclasses => class => $class,
420
- params => \%options
421
- )
422
- if exists $options{superclasses};
423
-
424
- (ref $options{attributes} eq 'ARRAY')
425
- || __PACKAGE__->_throw_exception( CreateMOPClassTakesArrayRefOfAttributes => class => $class,
426
- params => \%options
427
- )
428
- if exists $options{attributes};
429
-
430
- (ref $options{methods} eq 'HASH')
431
- || __PACKAGE__->_throw_exception( CreateMOPClassTakesHashRefOfMethods => class => $class,
432
- params => \%options
433
- )
434
- if exists $options{methods};
435
-
436
- my $package = delete $options{package};
437
- my $superclasses = delete $options{superclasses};
438
- my $attributes = delete $options{attributes};
439
- my $methods = delete $options{methods};
440
- my $meta_name = exists $options{meta_name}
441
- ? delete $options{meta_name}
442
- : 'meta';
443
-
444
- my $meta = $class->SUPER::create($package => %options);
445
-
446
- $meta->_add_meta_method($meta_name)
447
- if defined $meta_name;
448
-
449
- $meta->superclasses(@{$superclasses})
450
- if defined $superclasses;
451
- # NOTE:
452
- # process attributes first, so that they can
453
- # install accessors, but locally defined methods
454
- # can then overwrite them. It is maybe a little odd, but
455
- # I think this should be the order of things.
456
- if (defined $attributes) {
457
- foreach my $attr (@{$attributes}) {
458
- $meta->add_attribute($attr);
459
- }
460
- }
461
- if (defined $methods) {
462
- foreach my $method_name (keys %{$methods}) {
463
- $meta->add_method($method_name, $methods->{$method_name});
464
- }
465
- }
466
- return $meta;
467
- }
468
-
469
- # XXX: something more intelligent here?
470
- sub _anon_package_prefix { 'Class::MOP::Class::__ANON__::SERIAL::' }
471
-
472
- sub create_anon_class { shift->create_anon(@_) }
473
- sub is_anon_class { shift->is_anon(@_) }
474
-
475
- sub _anon_cache_key {
476
- my $class = shift;
477
- my %options = @_;
478
- # Makes something like Super::Class|Super::Class::2
479
- return join '=' => (
480
- join( '|', sort @{ $options{superclasses} || [] } ),
481
- );
482
- }
483
-
484
- # Instance Construction & Cloning
485
-
486
- sub new_object {
487
- my $class = shift;
488
-
489
- # NOTE:
490
- # we need to protect the integrity of the
491
- # Class::MOP::Class singletons here, so we
492
- # delegate this to &construct_class_instance
493
- # which will deal with the singletons
494
- return $class->_construct_class_instance(@_)
495
- if $class->name->isa('Class::MOP::Class');
496
- return $class->_construct_instance(@_);
497
- }
498
-
499
- sub _construct_instance {
500
- my $class = shift;
501
- my $params = @_ == 1 ? $_[0] : {@_};
502
- my $meta_instance = $class->get_meta_instance();
503
- # FIXME:
504
- # the code below is almost certainly incorrect
505
- # but this is foreign inheritance, so we might
506
- # have to kludge it in the end.
507
- my $instance;
508
- if (my $instance_class = blessed($params->{__INSTANCE__})) {
509
- ($instance_class eq $class->name)
510
- || $class->_throw_exception( InstanceBlessedIntoWrongClass => class_name => $class->name,
511
- params => $params,
512
- instance => $params->{__INSTANCE__}
513
- );
514
- $instance = $params->{__INSTANCE__};
515
- }
516
- elsif (exists $params->{__INSTANCE__}) {
517
- $class->_throw_exception( InstanceMustBeABlessedReference => class_name => $class->name,
518
- params => $params,
519
- instance => $params->{__INSTANCE__}
520
- );
521
- }
522
- else {
523
- $instance = $meta_instance->create_instance();
524
- }
525
- foreach my $attr ($class->get_all_attributes()) {
526
- $attr->initialize_instance_slot($meta_instance, $instance, $params);
527
- }
528
- if (Class::MOP::metaclass_is_weak($class->name)) {
529
- $meta_instance->_set_mop_slot($instance, $class);
530
- }
531
- return $instance;
532
- }
533
-
534
- sub _inline_new_object {
535
- my $self = shift;
536
-
537
- return (
538
- 'my $class = shift;',
539
- '$class = Scalar::Util::blessed($class) || $class;',
540
- $self->_inline_fallback_constructor('$class'),
541
- $self->_inline_params('$params', '$class'),
542
- $self->_inline_generate_instance('$instance', '$class'),
543
- $self->_inline_slot_initializers,
544
- $self->_inline_preserve_weak_metaclasses,
545
- $self->_inline_extra_init,
546
- 'return $instance',
547
- );
548
- }
549
-
550
- sub _inline_fallback_constructor {
551
- my $self = shift;
552
- my ($class) = @_;
553
- return (
554
- 'return ' . $self->_generate_fallback_constructor($class),
555
- 'if ' . $class . ' ne \'' . $self->name . '\';',
556
- );
557
- }
558
-
559
- sub _generate_fallback_constructor {
560
- my $self = shift;
561
- my ($class) = @_;
562
- return 'Class::MOP::Class->initialize(' . $class . ')->new_object(@_)',
563
- }
564
-
565
- sub _inline_params {
566
- my $self = shift;
567
- my ($params, $class) = @_;
568
- return (
569
- 'my ' . $params . ' = @_ == 1 ? $_[0] : {@_};',
570
- );
571
- }
572
-
573
- sub _inline_generate_instance {
574
- my $self = shift;
575
- my ($inst, $class) = @_;
576
- return (
577
- 'my ' . $inst . ' = ' . $self->_inline_create_instance($class) . ';',
578
- );
579
- }
580
-
581
- sub _inline_create_instance {
582
- my $self = shift;
583
-
584
- return $self->get_meta_instance->inline_create_instance(@_);
585
- }
586
-
587
- sub _inline_slot_initializers {
588
- my $self = shift;
589
-
590
- my $idx = 0;
591
-
592
- return map { $self->_inline_slot_initializer($_, $idx++) }
593
- sort { $a->name cmp $b->name } $self->get_all_attributes;
594
- }
595
-
596
- sub _inline_slot_initializer {
597
- my $self = shift;
598
- my ($attr, $idx) = @_;
599
-
600
- if (defined(my $init_arg = $attr->init_arg)) {
601
- my @source = (
602
- 'if (exists $params->{\'' . $init_arg . '\'}) {',
603
- $self->_inline_init_attr_from_constructor($attr, $idx),
604
- '}',
605
- );
606
- if (my @default = $self->_inline_init_attr_from_default($attr, $idx)) {
607
- push @source, (
608
- 'else {',
609
- @default,
610
- '}',
611
- );
612
- }
613
- return @source;
614
- }
615
- elsif (my @default = $self->_inline_init_attr_from_default($attr, $idx)) {
616
- return (
617
- '{',
618
- @default,
619
- '}',
620
- );
621
- }
622
- else {
623
- return ();
624
- }
625
- }
626
-
627
- sub _inline_init_attr_from_constructor {
628
- my $self = shift;
629
- my ($attr, $idx) = @_;
630
-
631
- my @initial_value = $attr->_inline_set_value(
632
- '$instance', '$params->{\'' . $attr->init_arg . '\'}',
633
- );
634
-
635
- push @initial_value, (
636
- '$attrs->[' . $idx . ']->set_initial_value(',
637
- '$instance,',
638
- $attr->_inline_instance_get('$instance'),
639
- ');',
640
- ) if $attr->has_initializer;
641
-
642
- return @initial_value;
643
- }
644
-
645
- sub _inline_init_attr_from_default {
646
- my $self = shift;
647
- my ($attr, $idx) = @_;
648
-
649
- my $default = $self->_inline_default_value($attr, $idx);
650
- return unless $default;
651
-
652
- my @initial_value = $attr->_inline_set_value('$instance', $default);
653
-
654
- push @initial_value, (
655
- '$attrs->[' . $idx . ']->set_initial_value(',
656
- '$instance,',
657
- $attr->_inline_instance_get('$instance'),
658
- ');',
659
- ) if $attr->has_initializer;
660
-
661
- return @initial_value;
662
- }
663
-
664
- sub _inline_default_value {
665
- my $self = shift;
666
- my ($attr, $index) = @_;
667
-
668
- if ($attr->has_default) {
669
- # NOTE:
670
- # default values can either be CODE refs
671
- # in which case we need to call them. Or
672
- # they can be scalars (strings/numbers)
673
- # in which case we can just deal with them
674
- # in the code we eval.
675
- if ($attr->is_default_a_coderef) {
676
- return '$defaults->[' . $index . ']->($instance)';
677
- }
678
- else {
679
- return '$defaults->[' . $index . ']';
680
- }
681
- }
682
- elsif ($attr->has_builder) {
683
- return '$instance->' . $attr->builder;
684
- }
685
- else {
686
- return;
687
- }
688
- }
689
-
690
- sub _inline_preserve_weak_metaclasses {
691
- my $self = shift;
692
- if (Class::MOP::metaclass_is_weak($self->name)) {
693
- return (
694
- $self->_inline_set_mop_slot(
695
- '$instance', 'Class::MOP::class_of($class)'
696
- ) . ';'
697
- );
698
- }
699
- else {
700
- return ();
701
- }
702
- }
703
-
704
- sub _inline_extra_init { }
705
-
706
- sub _eval_environment {
707
- my $self = shift;
708
-
709
- my @attrs = sort { $a->name cmp $b->name } $self->get_all_attributes;
710
-
711
- my $defaults = [map { $_->default } @attrs];
712
-
713
- return {
714
- '$defaults' => \$defaults,
715
- };
716
- }
717
-
718
-
719
- sub get_meta_instance {
720
- my $self = shift;
721
- $self->{'_meta_instance'} ||= $self->_create_meta_instance();
722
- }
723
-
724
- sub _create_meta_instance {
725
- my $self = shift;
726
-
727
- my $instance = $self->instance_metaclass->new(
728
- associated_metaclass => $self,
729
- attributes => [ $self->get_all_attributes() ],
730
- );
731
-
732
- $self->add_meta_instance_dependencies()
733
- if $instance->is_dependent_on_superclasses();
734
-
735
- return $instance;
736
- }
737
-
738
- # TODO: this is actually not being used!
739
- sub _inline_rebless_instance {
740
- my $self = shift;
741
-
742
- return $self->get_meta_instance->inline_rebless_instance_structure(@_);
743
- }
744
-
745
- sub _inline_get_mop_slot {
746
- my $self = shift;
747
-
748
- return $self->get_meta_instance->_inline_get_mop_slot(@_);
749
- }
750
-
751
- sub _inline_set_mop_slot {
752
- my $self = shift;
753
-
754
- return $self->get_meta_instance->_inline_set_mop_slot(@_);
755
- }
756
-
757
- sub _inline_clear_mop_slot {
758
- my $self = shift;
759
-
760
- return $self->get_meta_instance->_inline_clear_mop_slot(@_);
761
- }
762
-
763
- sub clone_object {
764
- my $class = shift;
765
- my $instance = shift;
766
- (blessed($instance) && $instance->isa($class->name))
767
- || $class->_throw_exception( CloneObjectExpectsAnInstanceOfMetaclass => class_name => $class->name,
768
- instance => $instance,
769
- );
770
- # NOTE:
771
- # we need to protect the integrity of the
772
- # Class::MOP::Class singletons here, they
773
- # should not be cloned.
774
- return $instance if $instance->isa('Class::MOP::Class');
775
- $class->_clone_instance($instance, @_);
776
- }
777
-
778
- sub _clone_instance {
779
- my ($class, $instance, %params) = @_;
780
- (blessed($instance))
781
- || $class->_throw_exception( OnlyInstancesCanBeCloned => class_name => $class->name,
782
- instance => $instance,
783
- params => \%params
784
- );
785
- my $meta_instance = $class->get_meta_instance();
786
- my $clone = $meta_instance->clone_instance($instance);
787
- foreach my $attr ($class->get_all_attributes()) {
788
- if ( defined( my $init_arg = $attr->init_arg ) ) {
789
- if (exists $params{$init_arg}) {
790
- $attr->set_value($clone, $params{$init_arg});
791
- }
792
- }
793
- }
794
- return $clone;
795
- }
796
-
797
- sub _force_rebless_instance {
798
- my ($self, $instance, %params) = @_;
799
- my $old_metaclass = Class::MOP::class_of($instance);
800
-
801
- $old_metaclass->rebless_instance_away($instance, $self, %params)
802
- if $old_metaclass;
803
-
804
- my $meta_instance = $self->get_meta_instance;
805
-
806
- if (Class::MOP::metaclass_is_weak($old_metaclass->name)) {
807
- $meta_instance->_clear_mop_slot($instance);
808
- }
809
-
810
- # rebless!
811
- # we use $_[1] here because of t/cmop/rebless_overload.t regressions
812
- # on 5.8.8
813
- $meta_instance->rebless_instance_structure($_[1], $self);
814
-
815
- $self->_fixup_attributes_after_rebless($instance, $old_metaclass, %params);
816
-
817
- if (Class::MOP::metaclass_is_weak($self->name)) {
818
- $meta_instance->_set_mop_slot($instance, $self);
819
- }
820
- }
821
-
822
- sub rebless_instance {
823
- my ($self, $instance, %params) = @_;
824
- my $old_metaclass = Class::MOP::class_of($instance);
825
-
826
- my $old_class = $old_metaclass ? $old_metaclass->name : blessed($instance);
827
- $self->name->isa($old_class)
828
- || $self->_throw_exception( CanReblessOnlyIntoASubclass => class_name => $self->name,
829
- instance => $instance,
830
- instance_class => blessed( $instance ),
831
- params => \%params,
832
- );
833
-
834
- $self->_force_rebless_instance($_[1], %params);
835
-
836
- return $instance;
837
- }
838
-
839
- sub rebless_instance_back {
840
- my ( $self, $instance ) = @_;
841
- my $old_metaclass = Class::MOP::class_of($instance);
842
- my $old_class
843
- = $old_metaclass ? $old_metaclass->name : blessed($instance);
844
- $old_class->isa( $self->name )
845
- || $self->_throw_exception( CanReblessOnlyIntoASuperclass => class_name => $self->name,
846
- instance => $instance,
847
- instance_class => blessed( $instance ),
848
- );
849
-
850
- $self->_force_rebless_instance($_[1]);
851
-
852
- return $instance;
853
- }
854
-
855
- sub rebless_instance_away {
856
- # this intentionally does nothing, it is just a hook
857
- }
858
-
859
- sub _fixup_attributes_after_rebless {
860
- my $self = shift;
861
- my ($instance, $rebless_from, %params) = @_;
862
- my $meta_instance = $self->get_meta_instance;
863
-
864
- for my $attr ( $rebless_from->get_all_attributes ) {
865
- next if $self->find_attribute_by_name( $attr->name );
866
- $meta_instance->deinitialize_slot( $instance, $_ ) for $attr->slots;
867
- }
868
-
869
- foreach my $attr ( $self->get_all_attributes ) {
870
- if ( $attr->has_value($instance) ) {
871
- if ( defined( my $init_arg = $attr->init_arg ) ) {
872
- $params{$init_arg} = $attr->get_value($instance)
873
- unless exists $params{$init_arg};
874
- }
875
- else {
876
- $attr->set_value($instance, $attr->get_value($instance));
877
- }
878
- }
879
- }
880
-
881
- foreach my $attr ($self->get_all_attributes) {
882
- $attr->initialize_instance_slot($meta_instance, $instance, \%params);
883
- }
884
- }
885
-
886
- sub _attach_attribute {
887
- my ($self, $attribute) = @_;
888
- $attribute->attach_to_class($self);
889
- }
890
-
891
- sub _post_add_attribute {
892
- my ( $self, $attribute ) = @_;
893
-
894
- $self->invalidate_meta_instances;
895
-
896
- # invalidate package flag here
897
- try {
898
- local $SIG{__DIE__};
899
- $attribute->install_accessors;
900
- }
901
- catch {
902
- $self->remove_attribute( $attribute->name );
903
- die $_;
904
- };
905
- }
906
-
907
- sub remove_attribute {
908
- my $self = shift;
909
-
910
- my $removed_attribute = $self->SUPER::remove_attribute(@_)
911
- or return;
912
-
913
- $self->invalidate_meta_instances;
914
-
915
- $removed_attribute->remove_accessors;
916
- $removed_attribute->detach_from_class;
917
-
918
- return$removed_attribute;
919
- }
920
-
921
- sub find_attribute_by_name {
922
- my ( $self, $attr_name ) = @_;
923
-
924
- foreach my $class ( $self->linearized_isa ) {
925
- # fetch the meta-class ...
926
- my $meta = Class::MOP::Class->initialize($class);
927
- return $meta->get_attribute($attr_name)
928
- if $meta->has_attribute($attr_name);
929
- }
930
-
931
- return;
932
- }
933
-
934
- sub get_all_attributes {
935
- my $self = shift;
936
- my %attrs = map { %{ Class::MOP::Class->initialize($_)->_attribute_map } }
937
- reverse $self->linearized_isa;
938
- return values %attrs;
939
- }
940
-
941
- # Inheritance
942
-
943
- sub superclasses {
944
- my $self = shift;
945
-
946
- my $isa = $self->get_or_add_package_symbol('@ISA');
947
-
948
- if (@_) {
949
- my @supers = @_;
950
- @{$isa} = @supers;
951
-
952
- # NOTE:
953
- # on 5.8 and below, we need to call
954
- # a method to get Perl to detect
955
- # a cycle in the class hierarchy
956
- my $class = $self->name;
957
- $class->isa($class);
958
-
959
- # NOTE:
960
- # we need to check the metaclass
961
- # compatibility here so that we can
962
- # be sure that the superclass is
963
- # not potentially creating an issues
964
- # we don't know about
965
-
966
- $self->_check_metaclass_compatibility();
967
- $self->_superclasses_updated();
968
- }
969
-
970
- return @{$isa};
971
- }
972
-
973
- sub _superclasses_updated {
974
- my $self = shift;
975
- $self->update_meta_instance_dependencies();
976
- # keep strong references to all our parents, so they don't disappear if
977
- # they are anon classes and don't have any direct instances
978
- $self->_superclass_metas(
979
- map { Class::MOP::class_of($_) } $self->superclasses
980
- );
981
- }
982
-
983
- sub _superclass_metas {
984
- my $self = shift;
985
- $self->{_superclass_metas} = [@_];
986
- }
987
-
988
- sub subclasses {
989
- my $self = shift;
990
- my $super_class = $self->name;
991
-
992
- return @{ $super_class->mro::get_isarev() };
993
- }
994
-
995
- sub direct_subclasses {
996
- my $self = shift;
997
- my $super_class = $self->name;
998
-
999
- return grep {
1000
- grep {
1001
- $_ eq $super_class
1002
- } Class::MOP::Class->initialize($_)->superclasses
1003
- } $self->subclasses;
1004
- }
1005
-
1006
- sub linearized_isa {
1007
- return @{ mro::get_linear_isa( (shift)->name ) };
1008
- }
1009
-
1010
- sub class_precedence_list {
1011
- my $self = shift;
1012
- my $name = $self->name;
1013
-
1014
- unless (Class::MOP::IS_RUNNING_ON_5_10()) {
1015
- # NOTE:
1016
- # We need to check for circular inheritance here
1017
- # if we are not on 5.10, cause 5.8 detects it late.
1018
- # This will do nothing if all is well, and blow up
1019
- # otherwise. Yes, it's an ugly hack, better
1020
- # suggestions are welcome.
1021
- # - SL
1022
- ($name || return)->isa('This is a test for circular inheritance')
1023
- }
1024
-
1025
- # if our mro is c3, we can
1026
- # just grab the linear_isa
1027
- if (mro::get_mro($name) eq 'c3') {
1028
- return @{ mro::get_linear_isa($name) }
1029
- }
1030
- else {
1031
- # NOTE:
1032
- # we can't grab the linear_isa for dfs
1033
- # since it has all the duplicates
1034
- # already removed.
1035
- return (
1036
- $name,
1037
- map {
1038
- Class::MOP::Class->initialize($_)->class_precedence_list()
1039
- } $self->superclasses()
1040
- );
1041
- }
1042
- }
1043
-
1044
- sub _method_lookup_order {
1045
- return (shift->linearized_isa, 'UNIVERSAL');
1046
- }
1047
-
1048
- ## Methods
1049
-
1050
- {
1051
- my $fetch_and_prepare_method = sub {
1052
- my ($self, $method_name) = @_;
1053
- my $wrapped_metaclass = $self->wrapped_method_metaclass;
1054
- # fetch it locally
1055
- my $method = $self->get_method($method_name);
1056
- # if we don't have local ...
1057
- unless ($method) {
1058
- # try to find the next method
1059
- $method = $self->find_next_method_by_name($method_name);
1060
- # die if it does not exist
1061
- (defined $method)
1062
- || $self->_throw_exception( MethodNameNotFoundInInheritanceHierarchy => class_name => $self->name,
1063
- method_name => $method_name
1064
- );
1065
- # and now make sure to wrap it
1066
- # even if it is already wrapped
1067
- # because we need a new sub ref
1068
- $method = $wrapped_metaclass->wrap($method,
1069
- package_name => $self->name,
1070
- name => $method_name,
1071
- );
1072
- }
1073
- else {
1074
- # now make sure we wrap it properly
1075
- $method = $wrapped_metaclass->wrap($method,
1076
- package_name => $self->name,
1077
- name => $method_name,
1078
- ) unless $method->isa($wrapped_metaclass);
1079
- }
1080
- $self->add_method($method_name => $method);
1081
- return $method;
1082
- };
1083
-
1084
- sub add_before_method_modifier {
1085
- my ($self, $method_name, $method_modifier) = @_;
1086
- (defined $method_name && length $method_name)
1087
- || $self->_throw_exception( MethodModifierNeedsMethodName => class_name => $self->name );
1088
- my $method = $fetch_and_prepare_method->($self, $method_name);
1089
- $method->add_before_modifier(
1090
- set_subname(':before' => $method_modifier)
1091
- );
1092
- }
1093
-
1094
- sub add_after_method_modifier {
1095
- my ($self, $method_name, $method_modifier) = @_;
1096
- (defined $method_name && length $method_name)
1097
- || $self->_throw_exception( MethodModifierNeedsMethodName => class_name => $self->name );
1098
- my $method = $fetch_and_prepare_method->($self, $method_name);
1099
- $method->add_after_modifier(
1100
- set_subname(':after' => $method_modifier)
1101
- );
1102
- }
1103
-
1104
- sub add_around_method_modifier {
1105
- my ($self, $method_name, $method_modifier) = @_;
1106
- (defined $method_name && length $method_name)
1107
- || $self->_throw_exception( MethodModifierNeedsMethodName => class_name => $self->name );
1108
- my $method = $fetch_and_prepare_method->($self, $method_name);
1109
- $method->add_around_modifier(
1110
- set_subname(':around' => $method_modifier)
1111
- );
1112
- }
1113
-
1114
- # NOTE:
1115
- # the methods above used to be named like this:
1116
- # ${pkg}::${method}:(before|after|around)
1117
- # but this proved problematic when using one modifier
1118
- # to wrap multiple methods (something which is likely
1119
- # to happen pretty regularly IMO). So instead of naming
1120
- # it like this, I have chosen to just name them purely
1121
- # with their modifier names, like so:
1122
- # :(before|after|around)
1123
- # The fact is that in a stack trace, it will be fairly
1124
- # evident from the context what method they are attached
1125
- # to, and so don't need the fully qualified name.
1126
- }
1127
-
1128
- sub find_method_by_name {
1129
- my ($self, $method_name) = @_;
1130
- (defined $method_name && length $method_name)
1131
- || $self->_throw_exception( MethodNameNotGiven => class_name => $self->name );
1132
- foreach my $class ($self->_method_lookup_order) {
1133
- my $method = Class::MOP::Class->initialize($class)->get_method($method_name);
1134
- return $method if defined $method;
1135
- }
1136
- return;
1137
- }
1138
-
1139
- sub get_all_methods {
1140
- my $self = shift;
1141
-
1142
- my %methods;
1143
- for my $class ( reverse $self->_method_lookup_order ) {
1144
- my $meta = Class::MOP::Class->initialize($class);
1145
-
1146
- $methods{ $_->name } = $_ for $meta->_get_local_methods;
1147
- }
1148
-
1149
- return values %methods;
1150
- }
1151
-
1152
- sub get_all_method_names {
1153
- my $self = shift;
1154
- map { $_->name } $self->get_all_methods;
1155
- }
1156
-
1157
- sub find_all_methods_by_name {
1158
- my ($self, $method_name) = @_;
1159
- (defined $method_name && length $method_name)
1160
- || $self->_throw_exception( MethodNameNotGiven => class_name => $self->name );
1161
- my @methods;
1162
- foreach my $class ($self->_method_lookup_order) {
1163
- # fetch the meta-class ...
1164
- my $meta = Class::MOP::Class->initialize($class);
1165
- push @methods => {
1166
- name => $method_name,
1167
- class => $class,
1168
- code => $meta->get_method($method_name)
1169
- } if $meta->has_method($method_name);
1170
- }
1171
- return @methods;
1172
- }
1173
-
1174
- sub find_next_method_by_name {
1175
- my ($self, $method_name) = @_;
1176
- (defined $method_name && length $method_name)
1177
- || $self->_throw_exception( MethodNameNotGiven => class_name => $self->name );
1178
- my @cpl = ($self->_method_lookup_order);
1179
- shift @cpl; # discard ourselves
1180
- foreach my $class (@cpl) {
1181
- my $method = Class::MOP::Class->initialize($class)->get_method($method_name);
1182
- return $method if defined $method;
1183
- }
1184
- return;
1185
- }
1186
-
1187
- sub update_meta_instance_dependencies {
1188
- my $self = shift;
1189
-
1190
- if ( $self->{meta_instance_dependencies} ) {
1191
- return $self->add_meta_instance_dependencies;
1192
- }
1193
- }
1194
-
1195
- sub add_meta_instance_dependencies {
1196
- my $self = shift;
1197
-
1198
- $self->remove_meta_instance_dependencies;
1199
-
1200
- my @attrs = $self->get_all_attributes();
1201
-
1202
- my %seen;
1203
- my @classes = grep { not $seen{ $_->name }++ }
1204
- map { $_->associated_class } @attrs;
1205
-
1206
- foreach my $class (@classes) {
1207
- $class->add_dependent_meta_instance($self);
1208
- }
1209
-
1210
- $self->{meta_instance_dependencies} = \@classes;
1211
- }
1212
-
1213
- sub remove_meta_instance_dependencies {
1214
- my $self = shift;
1215
-
1216
- if ( my $classes = delete $self->{meta_instance_dependencies} ) {
1217
- foreach my $class (@$classes) {
1218
- $class->remove_dependent_meta_instance($self);
1219
- }
1220
-
1221
- return $classes;
1222
- }
1223
-
1224
- return;
1225
-
1226
- }
1227
-
1228
- sub add_dependent_meta_instance {
1229
- my ( $self, $metaclass ) = @_;
1230
- push @{ $self->{dependent_meta_instances} }, $metaclass;
1231
- }
1232
-
1233
- sub remove_dependent_meta_instance {
1234
- my ( $self, $metaclass ) = @_;
1235
- my $name = $metaclass->name;
1236
- @$_ = grep { $_->name ne $name } @$_
1237
- for $self->{dependent_meta_instances};
1238
- }
1239
-
1240
- sub invalidate_meta_instances {
1241
- my $self = shift;
1242
- $_->invalidate_meta_instance()
1243
- for $self, @{ $self->{dependent_meta_instances} };
1244
- }
1245
-
1246
- sub invalidate_meta_instance {
1247
- my $self = shift;
1248
- undef $self->{_meta_instance};
1249
- }
1250
-
1251
- # check if we can reinitialize
1252
- sub is_pristine {
1253
- my $self = shift;
1254
-
1255
- # if any local attr is defined
1256
- return if $self->get_attribute_list;
1257
-
1258
- # or any non-declared methods
1259
- for my $method ( map { $self->get_method($_) } $self->get_method_list ) {
1260
- return if $method->isa("Class::MOP::Method::Generated");
1261
- # FIXME do we need to enforce this too? return unless $method->isa( $self->method_metaclass );
1262
- }
1263
-
1264
- return 1;
1265
- }
1266
-
1267
- ## Class closing
1268
-
1269
- sub is_mutable { 1 }
1270
- sub is_immutable { 0 }
1271
-
1272
- sub immutable_options { %{ $_[0]{__immutable}{options} || {} } }
1273
-
1274
- sub _immutable_options {
1275
- my ( $self, @args ) = @_;
1276
-
1277
- return (
1278
- inline_accessors => 1,
1279
- inline_constructor => 1,
1280
- inline_destructor => 0,
1281
- debug => 0,
1282
- immutable_trait => $self->immutable_trait,
1283
- constructor_name => $self->constructor_name,
1284
- constructor_class => $self->constructor_class,
1285
- destructor_class => $self->destructor_class,
1286
- @args,
1287
- );
1288
- }
1289
-
1290
- sub make_immutable {
1291
- my ( $self, @args ) = @_;
1292
-
1293
- return $self unless $self->is_mutable;
1294
-
1295
- my ($file, $line) = (caller)[1..2];
1296
-
1297
- $self->_initialize_immutable(
1298
- file => $file,
1299
- line => $line,
1300
- $self->_immutable_options(@args),
1301
- );
1302
- $self->_rebless_as_immutable(@args);
1303
-
1304
- return $self;
1305
- }
1306
-
1307
- sub make_mutable {
1308
- my $self = shift;
1309
-
1310
- if ( $self->is_immutable ) {
1311
- my @args = $self->immutable_options;
1312
- $self->_rebless_as_mutable();
1313
- $self->_remove_inlined_code(@args);
1314
- delete $self->{__immutable};
1315
- return $self;
1316
- }
1317
- else {
1318
- return;
1319
- }
1320
- }
1321
-
1322
- sub _rebless_as_immutable {
1323
- my ( $self, @args ) = @_;
1324
-
1325
- $self->{__immutable}{original_class} = ref $self;
1326
-
1327
- bless $self => $self->_immutable_metaclass(@args);
1328
- }
1329
-
1330
- sub _immutable_metaclass {
1331
- my ( $self, %args ) = @_;
1332
-
1333
- if ( my $class = $args{immutable_metaclass} ) {
1334
- return $class;
1335
- }
1336
-
1337
- my $trait = $args{immutable_trait} = $self->immutable_trait
1338
- || $self->_throw_exception( NoImmutableTraitSpecifiedForClass => class_name => $self->name,
1339
- params => \%args
1340
- );
1341
-
1342
- my $meta = $self->meta;
1343
- my $meta_attr = $meta->find_attribute_by_name("immutable_trait");
1344
-
1345
- my $class_name;
1346
-
1347
- if ( $meta_attr and $trait eq $meta_attr->default ) {
1348
- # if the trait is the same as the default we try and pick a
1349
- # predictable name for the immutable metaclass
1350
- $class_name = 'Class::MOP::Class::Immutable::' . ref($self);
1351
- }
1352
- else {
1353
- $class_name = join '::', 'Class::MOP::Class::Immutable::CustomTrait',
1354
- $trait, 'ForMetaClass', ref($self);
1355
- }
1356
-
1357
- return $class_name
1358
- if Class::MOP::does_metaclass_exist($class_name);
1359
-
1360
- # If the metaclass is a subclass of CMOP::Class which has had
1361
- # metaclass roles applied (via Moose), then we want to make sure
1362
- # that we preserve that anonymous class (see Fey::ORM for an
1363
- # example of where this matters).
1364
- my $meta_name = $meta->_real_ref_name;
1365
-
1366
- my $immutable_meta = $meta_name->create(
1367
- $class_name,
1368
- superclasses => [ ref $self ],
1369
- );
1370
-
1371
- Class::MOP::MiniTrait::apply( $immutable_meta, $trait );
1372
-
1373
- $immutable_meta->make_immutable(
1374
- inline_constructor => 0,
1375
- inline_accessors => 0,
1376
- );
1377
-
1378
- return $class_name;
1379
- }
1380
-
1381
- sub _remove_inlined_code {
1382
- my $self = shift;
1383
-
1384
- $self->remove_method( $_->name ) for $self->_inlined_methods;
1385
-
1386
- delete $self->{__immutable}{inlined_methods};
1387
- }
1388
-
1389
- sub _inlined_methods { @{ $_[0]{__immutable}{inlined_methods} || [] } }
1390
-
1391
- sub _add_inlined_method {
1392
- my ( $self, $method ) = @_;
1393
-
1394
- push @{ $self->{__immutable}{inlined_methods} ||= [] }, $method;
1395
- }
1396
-
1397
- sub _initialize_immutable {
1398
- my ( $self, %args ) = @_;
1399
-
1400
- $self->{__immutable}{options} = \%args;
1401
- $self->_install_inlined_code(%args);
1402
- }
1403
-
1404
- sub _install_inlined_code {
1405
- my ( $self, %args ) = @_;
1406
-
1407
- # FIXME
1408
- $self->_inline_accessors(%args) if $args{inline_accessors};
1409
- $self->_inline_constructor(%args) if $args{inline_constructor};
1410
- $self->_inline_destructor(%args) if $args{inline_destructor};
1411
- }
1412
-
1413
- sub _rebless_as_mutable {
1414
- my $self = shift;
1415
-
1416
- bless $self, $self->_get_mutable_metaclass_name;
1417
-
1418
- return $self;
1419
- }
1420
-
1421
- sub _inline_accessors {
1422
- my $self = shift;
1423
-
1424
- foreach my $attr_name ( $self->get_attribute_list ) {
1425
- $self->get_attribute($attr_name)->install_accessors(1);
1426
- }
1427
- }
1428
-
1429
- sub _inline_constructor {
1430
- my ( $self, %args ) = @_;
1431
-
1432
- my $name = $args{constructor_name};
1433
- # A class may not even have a constructor, and that's okay.
1434
- return unless defined $name;
1435
-
1436
- if ( $self->has_method($name) && !$args{replace_constructor} ) {
1437
- my $class = $self->name;
1438
- warn "Not inlining a constructor for $class since it defines"
1439
- . " its own constructor.\n"
1440
- . "If you are certain you don't need to inline your"
1441
- . " constructor, specify inline_constructor => 0 in your"
1442
- . " call to $class->meta->make_immutable\n";
1443
- return;
1444
- }
1445
-
1446
- my $constructor_class = $args{constructor_class};
1447
-
1448
- {
1449
- local $@;
1450
- use_package_optimistically($constructor_class);
1451
- }
1452
-
1453
- my $constructor = $constructor_class->new(
1454
- options => \%args,
1455
- metaclass => $self,
1456
- is_inline => 1,
1457
- package_name => $self->name,
1458
- name => $name,
1459
- definition_context => {
1460
- description => "constructor " . $self->name . "::" . $name,
1461
- file => $args{file},
1462
- line => $args{line},
1463
- },
1464
- );
1465
-
1466
- if ( $args{replace_constructor} or $constructor->can_be_inlined ) {
1467
- $self->add_method( $name => $constructor );
1468
- $self->_add_inlined_method($constructor);
1469
- }
1470
- }
1471
-
1472
- sub _inline_destructor {
1473
- my ( $self, %args ) = @_;
1474
-
1475
- ( exists $args{destructor_class} && defined $args{destructor_class} )
1476
- || $self->_throw_exception( NoDestructorClassSpecified => class_name => $self->name,
1477
- params => \%args,
1478
- );
1479
-
1480
- if ( $self->has_method('DESTROY') && ! $args{replace_destructor} ) {
1481
- my $class = $self->name;
1482
- warn "Not inlining a destructor for $class since it defines"
1483
- . " its own destructor.\n";
1484
- return;
1485
- }
1486
-
1487
- my $destructor_class = $args{destructor_class};
1488
-
1489
- {
1490
- local $@;
1491
- use_package_optimistically($destructor_class);
1492
- }
1493
-
1494
- return unless $destructor_class->is_needed($self);
1495
-
1496
- my $destructor = $destructor_class->new(
1497
- options => \%args,
1498
- metaclass => $self,
1499
- package_name => $self->name,
1500
- name => 'DESTROY',
1501
- definition_context => {
1502
- description => "destructor " . $self->name . "::DESTROY",
1503
- file => $args{file},
1504
- line => $args{line},
1505
- },
1506
- );
1507
-
1508
- if ( $args{replace_destructor} or $destructor->can_be_inlined ) {
1509
- $self->add_method( 'DESTROY' => $destructor );
1510
- $self->_add_inlined_method($destructor);
1511
- }
1512
- }
1513
-
1514
- 1;
1515
-
1516
- # ABSTRACT: Class Meta Object
1517
-
1518
- __END__
1519
-
1520
- =pod
1521
-
1522
- =encoding UTF-8
1523
-
1524
- =head1 NAME
1525
-
1526
- Class::MOP::Class - Class Meta Object
1527
-
1528
- =head1 VERSION
1529
-
1530
- version 2.2207
1531
-
1532
- =head1 SYNOPSIS
1533
-
1534
- # assuming that class Foo
1535
- # has been defined, you can
1536
-
1537
- # use this for introspection ...
1538
-
1539
- # add a method to Foo ...
1540
- Foo->meta->add_method( 'bar' => sub {...} )
1541
-
1542
- # get a list of all the classes searched
1543
- # the method dispatcher in the correct order
1544
- Foo->meta->class_precedence_list()
1545
-
1546
- # remove a method from Foo
1547
- Foo->meta->remove_method('bar');
1548
-
1549
- # or use this to actually create classes ...
1550
-
1551
- Class::MOP::Class->create(
1552
- 'Bar' => (
1553
- version => '0.01',
1554
- superclasses => ['Foo'],
1555
- attributes => [
1556
- Class::MOP::Attribute->new('$bar'),
1557
- Class::MOP::Attribute->new('$baz'),
1558
- ],
1559
- methods => {
1560
- calculate_bar => sub {...},
1561
- construct_baz => sub {...}
1562
- }
1563
- )
1564
- );
1565
-
1566
- =head1 DESCRIPTION
1567
-
1568
- The Class Protocol is the largest and most complex part of the
1569
- Class::MOP meta-object protocol. It controls the introspection and
1570
- manipulation of Perl 5 classes, and it can create them as well. The
1571
- best way to understand what this module can do is to read the
1572
- documentation for each of its methods.
1573
-
1574
- =head1 INHERITANCE
1575
-
1576
- C<Class::MOP::Class> is a subclass of L<Class::MOP::Module>.
1577
-
1578
- =head1 METHODS
1579
-
1580
- =head2 Class construction
1581
-
1582
- These methods all create new C<Class::MOP::Class> objects. These
1583
- objects can represent existing classes or they can be used to create
1584
- new classes from scratch.
1585
-
1586
- The metaclass object for a given class is a singleton. If you attempt
1587
- to create a metaclass for the same class twice, you will just get the
1588
- existing object.
1589
-
1590
- =over 4
1591
-
1592
- =item B<< Class::MOP::Class->create($package_name, %options) >>
1593
-
1594
- This method creates a new C<Class::MOP::Class> object with the given
1595
- package name. It accepts a number of options:
1596
-
1597
- =over 8
1598
-
1599
- =item * version
1600
-
1601
- An optional version number for the newly created package.
1602
-
1603
- =item * authority
1604
-
1605
- An optional authority for the newly created package.
1606
- See L<Class::MOP::Module/authority> for more details.
1607
-
1608
- =item * superclasses
1609
-
1610
- An optional array reference of superclass names.
1611
-
1612
- =item * methods
1613
-
1614
- An optional hash reference of methods for the class. The keys of the
1615
- hash reference are method names and values are subroutine references.
1616
-
1617
- =item * attributes
1618
-
1619
- An optional array reference of L<Class::MOP::Attribute> objects.
1620
-
1621
- =item * meta_name
1622
-
1623
- Specifies the name to install the C<meta> method for this class under.
1624
- If it is not passed, C<meta> is assumed, and if C<undef> is explicitly
1625
- given, no meta method will be installed.
1626
-
1627
- =item * weaken
1628
-
1629
- If true, the metaclass that is stored in the global cache will be a
1630
- weak reference.
1631
-
1632
- Classes created in this way are destroyed once the metaclass they are
1633
- attached to goes out of scope, and will be removed from Perl's internal
1634
- symbol table.
1635
-
1636
- All instances of a class with a weakened metaclass keep a special
1637
- reference to the metaclass object, which prevents the metaclass from
1638
- going out of scope while any instances exist.
1639
-
1640
- This only works if the instance is based on a hash reference, however.
1641
-
1642
- =back
1643
-
1644
- =item B<< Class::MOP::Class->create_anon_class(%options) >>
1645
-
1646
- This method works just like C<< Class::MOP::Class->create >> but it
1647
- creates an "anonymous" class. In fact, the class does have a name, but
1648
- that name is a unique name generated internally by this module.
1649
-
1650
- It accepts the same C<superclasses>, C<methods>, and C<attributes>
1651
- parameters that C<create> accepts.
1652
-
1653
- It also accepts a C<cache> option. If this is C<true>, then the anonymous class
1654
- will be cached based on its superclasses and roles. If an existing anonymous
1655
- class in the cache has the same superclasses and roles, it will be reused.
1656
-
1657
- Anonymous classes default to C<< weaken => 1 >> if cache is C<false>, although
1658
- this can be overridden.
1659
-
1660
- =item B<< Class::MOP::Class->initialize($package_name, %options) >>
1661
-
1662
- This method will initialize a C<Class::MOP::Class> object for the
1663
- named package. Unlike C<create>, this method I<will not> create a new
1664
- class.
1665
-
1666
- The purpose of this method is to retrieve a C<Class::MOP::Class>
1667
- object for introspecting an existing class.
1668
-
1669
- If an existing C<Class::MOP::Class> object exists for the named
1670
- package, it will be returned, and any options provided will be
1671
- ignored!
1672
-
1673
- If the object does not yet exist, it will be created.
1674
-
1675
- The valid options that can be passed to this method are
1676
- C<attribute_metaclass>, C<method_metaclass>,
1677
- C<wrapped_method_metaclass>, and C<instance_metaclass>. These are all
1678
- optional, and default to the appropriate class in the C<Class::MOP>
1679
- distribution.
1680
-
1681
- =back
1682
-
1683
- =head2 Object instance construction and cloning
1684
-
1685
- These methods are all related to creating and/or cloning object
1686
- instances.
1687
-
1688
- =over 4
1689
-
1690
- =item B<< $metaclass->clone_object($instance, %params) >>
1691
-
1692
- This method clones an existing object instance. Any parameters you
1693
- provide are will override existing attribute values in the object.
1694
-
1695
- This is a convenience method for cloning an object instance, then
1696
- blessing it into the appropriate package.
1697
-
1698
- You could implement a clone method in your class, using this method:
1699
-
1700
- sub clone {
1701
- my ($self, %params) = @_;
1702
- $self->meta->clone_object($self, %params);
1703
- }
1704
-
1705
- =item B<< $metaclass->rebless_instance($instance, %params) >>
1706
-
1707
- This method changes the class of C<$instance> to the metaclass's class.
1708
-
1709
- You can only rebless an instance into a subclass of its current
1710
- class. If you pass any additional parameters, these will be treated
1711
- like constructor parameters and used to initialize the object's
1712
- attributes. Any existing attributes that are already set will be
1713
- overwritten.
1714
-
1715
- Before reblessing the instance, this method will call
1716
- C<rebless_instance_away> on the instance's current metaclass. This method
1717
- will be passed the instance, the new metaclass, and any parameters
1718
- specified to C<rebless_instance>. By default, C<rebless_instance_away>
1719
- does nothing; it is merely a hook.
1720
-
1721
- =item B<< $metaclass->rebless_instance_back($instance) >>
1722
-
1723
- Does the same thing as C<rebless_instance>, except that you can only
1724
- rebless an instance into one of its superclasses. Any attributes that
1725
- do not exist in the superclass will be deinitialized.
1726
-
1727
- This is a much more dangerous operation than C<rebless_instance>,
1728
- especially when multiple inheritance is involved, so use this carefully!
1729
-
1730
- =item B<< $metaclass->new_object(%params) >>
1731
-
1732
- This method is used to create a new object of the metaclass's
1733
- class. Any parameters you provide are used to initialize the
1734
- instance's attributes. A special C<__INSTANCE__> key can be passed to
1735
- provide an already generated instance, rather than having Class::MOP
1736
- generate it for you. This is mostly useful for using Class::MOP with
1737
- foreign classes which generate instances using their own constructors.
1738
-
1739
- =item B<< $metaclass->instance_metaclass >>
1740
-
1741
- Returns the class name of the instance metaclass. See
1742
- L<Class::MOP::Instance> for more information on the instance
1743
- metaclass.
1744
-
1745
- =item B<< $metaclass->get_meta_instance >>
1746
-
1747
- Returns an instance of the C<instance_metaclass> to be used in the
1748
- construction of a new instance of the class.
1749
-
1750
- =back
1751
-
1752
- =head2 Informational predicates
1753
-
1754
- These are a few predicate methods for asking information about the
1755
- class itself.
1756
-
1757
- =over 4
1758
-
1759
- =item B<< $metaclass->is_anon_class >>
1760
-
1761
- This returns true if the class was created by calling C<<
1762
- Class::MOP::Class->create_anon_class >>.
1763
-
1764
- =item B<< $metaclass->is_mutable >>
1765
-
1766
- This returns true if the class is still mutable.
1767
-
1768
- =item B<< $metaclass->is_immutable >>
1769
-
1770
- This returns true if the class has been made immutable.
1771
-
1772
- =item B<< $metaclass->is_pristine >>
1773
-
1774
- A class is I<not> pristine if it has non-inherited attributes or if it
1775
- has any generated methods.
1776
-
1777
- =back
1778
-
1779
- =head2 Inheritance Relationships
1780
-
1781
- =over 4
1782
-
1783
- =item B<< $metaclass->superclasses(@superclasses) >>
1784
-
1785
- This is a read-write accessor which represents the superclass
1786
- relationships of the metaclass's class.
1787
-
1788
- This is basically sugar around getting and setting C<@ISA>.
1789
-
1790
- =item B<< $metaclass->class_precedence_list >>
1791
-
1792
- This returns a list of all of the class's ancestor classes. The
1793
- classes are returned in method dispatch order.
1794
-
1795
- =item B<< $metaclass->linearized_isa >>
1796
-
1797
- This returns a list based on C<class_precedence_list> but with all
1798
- duplicates removed.
1799
-
1800
- =item B<< $metaclass->subclasses >>
1801
-
1802
- This returns a list of all subclasses for this class, even indirect
1803
- subclasses.
1804
-
1805
- =item B<< $metaclass->direct_subclasses >>
1806
-
1807
- This returns a list of immediate subclasses for this class, which does not
1808
- include indirect subclasses.
1809
-
1810
- =back
1811
-
1812
- =head2 Method introspection and creation
1813
-
1814
- These methods allow you to introspect a class's methods, as well as
1815
- add, remove, or change methods.
1816
-
1817
- Determining what is truly a method in a Perl 5 class requires some
1818
- heuristics (aka guessing).
1819
-
1820
- Methods defined outside the package with a fully qualified name (C<sub
1821
- Package::name { ... }>) will be included. Similarly, methods named with a
1822
- fully qualified name using L<Sub::Util> are also included.
1823
-
1824
- However, we attempt to ignore imported functions.
1825
-
1826
- Ultimately, we are using heuristics to determine what truly is a
1827
- method in a class, and these heuristics may get the wrong answer in
1828
- some edge cases. However, for most "normal" cases the heuristics work
1829
- correctly.
1830
-
1831
- =over 4
1832
-
1833
- =item B<< $metaclass->get_method($method_name) >>
1834
-
1835
- This will return a L<Class::MOP::Method> for the specified
1836
- C<$method_name>. If the class does not have the specified method, it
1837
- returns C<undef>
1838
-
1839
- =item B<< $metaclass->has_method($method_name) >>
1840
-
1841
- Returns a boolean indicating whether or not the class defines the
1842
- named method. It does not include methods inherited from parent
1843
- classes.
1844
-
1845
- =item B<< $metaclass->get_method_list >>
1846
-
1847
- This will return a list of method I<names> for all methods defined in
1848
- this class.
1849
-
1850
- =item B<< $metaclass->add_method($method_name, $method) >>
1851
-
1852
- This method takes a method name and a subroutine reference, and adds
1853
- the method to the class.
1854
-
1855
- The subroutine reference can be a L<Class::MOP::Method>, and you are
1856
- strongly encouraged to pass a meta method object instead of a code
1857
- reference. If you do so, that object gets stored as part of the
1858
- class's method map directly. If not, the meta information will have to
1859
- be recreated later, and may be incorrect.
1860
-
1861
- If you provide a method object, this method will clone that object if
1862
- the object's package name does not match the class name. This lets us
1863
- track the original source of any methods added from other classes
1864
- (notably Moose roles).
1865
-
1866
- =item B<< $metaclass->remove_method($method_name) >>
1867
-
1868
- Remove the named method from the class. This method returns the
1869
- L<Class::MOP::Method> object for the method.
1870
-
1871
- =item B<< $metaclass->method_metaclass >>
1872
-
1873
- Returns the class name of the method metaclass, see
1874
- L<Class::MOP::Method> for more information on the method metaclass.
1875
-
1876
- =item B<< $metaclass->wrapped_method_metaclass >>
1877
-
1878
- Returns the class name of the wrapped method metaclass, see
1879
- L<Class::MOP::Method::Wrapped> for more information on the wrapped
1880
- method metaclass.
1881
-
1882
- =item B<< $metaclass->get_all_methods >>
1883
-
1884
- This will traverse the inheritance hierarchy and return a list of all
1885
- the L<Class::MOP::Method> objects for this class and its parents.
1886
-
1887
- =item B<< $metaclass->find_method_by_name($method_name) >>
1888
-
1889
- This will return a L<Class::MOP::Method> for the specified
1890
- C<$method_name>. If the class does not have the specified method, it
1891
- returns C<undef>
1892
-
1893
- Unlike C<get_method>, this method I<will> look for the named method in
1894
- superclasses.
1895
-
1896
- =item B<< $metaclass->get_all_method_names >>
1897
-
1898
- This will return a list of method I<names> for all of this class's
1899
- methods, including inherited methods.
1900
-
1901
- =item B<< $metaclass->find_all_methods_by_name($method_name) >>
1902
-
1903
- This method looks for the named method in the class and all of its
1904
- parents. It returns every matching method it finds in the inheritance
1905
- tree, so it returns a list of methods.
1906
-
1907
- Each method is returned as a hash reference with three keys. The keys
1908
- are C<name>, C<class>, and C<code>. The C<code> key has a
1909
- L<Class::MOP::Method> object as its value.
1910
-
1911
- The list of methods is distinct.
1912
-
1913
- =item B<< $metaclass->find_next_method_by_name($method_name) >>
1914
-
1915
- This method returns the first method in any superclass matching the
1916
- given name. It is effectively the method that C<SUPER::$method_name>
1917
- would dispatch to.
1918
-
1919
- =back
1920
-
1921
- =head2 Attribute introspection and creation
1922
-
1923
- Because Perl 5 does not have a core concept of attributes in classes,
1924
- we can only return information about attributes which have been added
1925
- via this class's methods. We cannot discover information about
1926
- attributes which are defined in terms of "regular" Perl 5 methods.
1927
-
1928
- =over 4
1929
-
1930
- =item B<< $metaclass->get_attribute($attribute_name) >>
1931
-
1932
- This will return a L<Class::MOP::Attribute> for the specified
1933
- C<$attribute_name>. If the class does not have the specified
1934
- attribute, it returns C<undef>.
1935
-
1936
- NOTE that get_attribute does not search superclasses, for that you
1937
- need to use C<find_attribute_by_name>.
1938
-
1939
- =item B<< $metaclass->has_attribute($attribute_name) >>
1940
-
1941
- Returns a boolean indicating whether or not the class defines the
1942
- named attribute. It does not include attributes inherited from parent
1943
- classes.
1944
-
1945
- =item B<< $metaclass->get_attribute_list >>
1946
-
1947
- This will return a list of attributes I<names> for all attributes
1948
- defined in this class. Note that this operates on the current class
1949
- only, it does not traverse the inheritance hierarchy.
1950
-
1951
- =item B<< $metaclass->get_all_attributes >>
1952
-
1953
- This will traverse the inheritance hierarchy and return a list of all
1954
- the L<Class::MOP::Attribute> objects for this class and its parents.
1955
-
1956
- =item B<< $metaclass->find_attribute_by_name($attribute_name) >>
1957
-
1958
- This will return a L<Class::MOP::Attribute> for the specified
1959
- C<$attribute_name>. If the class does not have the specified
1960
- attribute, it returns C<undef>.
1961
-
1962
- Unlike C<get_attribute>, this attribute I<will> look for the named
1963
- attribute in superclasses.
1964
-
1965
- =item B<< $metaclass->add_attribute(...) >>
1966
-
1967
- This method accepts either an existing L<Class::MOP::Attribute>
1968
- object or parameters suitable for passing to that class's C<new>
1969
- method.
1970
-
1971
- The attribute provided will be added to the class.
1972
-
1973
- Any accessor methods defined by the attribute will be added to the
1974
- class when the attribute is added.
1975
-
1976
- If an attribute of the same name already exists, the old attribute
1977
- will be removed first.
1978
-
1979
- =item B<< $metaclass->remove_attribute($attribute_name) >>
1980
-
1981
- This will remove the named attribute from the class, and
1982
- L<Class::MOP::Attribute> object.
1983
-
1984
- Removing an attribute also removes any accessor methods defined by the
1985
- attribute.
1986
-
1987
- However, note that removing an attribute will only affect I<future>
1988
- object instances created for this class, not existing instances.
1989
-
1990
- =item B<< $metaclass->attribute_metaclass >>
1991
-
1992
- Returns the class name of the attribute metaclass for this class. By
1993
- default, this is L<Class::MOP::Attribute>.
1994
-
1995
- =back
1996
-
1997
- =head2 Overload introspection and creation
1998
-
1999
- These methods provide an API to the core L<overload> functionality.
2000
-
2001
- =over 4
2002
-
2003
- =item B<< $metaclass->is_overloaded >>
2004
-
2005
- Returns true if overloading is enabled for this class. Corresponds to
2006
- L<Devel::OverloadInfo/is_overloaded>.
2007
-
2008
- =item B<< $metaclass->get_overloaded_operator($op) >>
2009
-
2010
- Returns the L<Class::MOP::Overload> object corresponding to the operator named
2011
- C<$op>, if one exists for this class.
2012
-
2013
- =item B<< $metaclass->has_overloaded_operator($op) >>
2014
-
2015
- Returns whether or not the operator C<$op> is overloaded for this class.
2016
-
2017
- =item B<< $metaclass->get_overload_list >>
2018
-
2019
- Returns a list of operator names which have been overloaded (see
2020
- L<overload/Overloadable Operations> for the list of valid operator names).
2021
-
2022
- =item B<< $metaclass->get_all_overloaded_operators >>
2023
-
2024
- Returns a list of L<Class::MOP::Overload> objects corresponding to the
2025
- operators that have been overloaded.
2026
-
2027
- =item B<< $metaclass->add_overloaded_operator($op, $impl) >>
2028
-
2029
- Overloads the operator C<$op> for this class. The C<$impl> can be a coderef, a
2030
- method name, or a L<Class::MOP::Overload> object. Corresponds to
2031
- C<< use overload $op => $impl; >>
2032
-
2033
- =item B<< $metaclass->remove_overloaded_operator($op) >>
2034
-
2035
- Remove overloading for operator C<$op>. Corresponds to C<< no overload $op; >>
2036
-
2037
- =item B<< $metaclass->get_overload_fallback_value >>
2038
-
2039
- Returns the overload C<fallback> setting for the package.
2040
-
2041
- =item B<< $metaclass->set_overload_fallback_value($fallback) >>
2042
-
2043
- Sets the overload C<fallback> setting for the package.
2044
-
2045
- =back
2046
-
2047
- =head2 Class Immutability
2048
-
2049
- Making a class immutable "freezes" the class definition. You can no
2050
- longer call methods which alter the class, such as adding or removing
2051
- methods or attributes.
2052
-
2053
- Making a class immutable lets us optimize the class by inlining some
2054
- methods, and also allows us to optimize some methods on the metaclass
2055
- object itself.
2056
-
2057
- After immutabilization, the metaclass object will cache most informational
2058
- methods that returns information about methods or attributes. Methods which
2059
- would alter the class, such as C<add_attribute> and C<add_method>, will
2060
- throw an error on an immutable metaclass object.
2061
-
2062
- The immutabilization system in L<Moose> takes much greater advantage
2063
- of the inlining features than Class::MOP itself does.
2064
-
2065
- =over 4
2066
-
2067
- =item B<< $metaclass->make_immutable(%options) >>
2068
-
2069
- This method will create an immutable transformer and use it to make
2070
- the class and its metaclass object immutable, and returns true
2071
- (you should not rely on the details of this value apart from its truth).
2072
-
2073
- This method accepts the following options:
2074
-
2075
- =over 8
2076
-
2077
- =item * inline_accessors
2078
-
2079
- =item * inline_constructor
2080
-
2081
- =item * inline_destructor
2082
-
2083
- These are all booleans indicating whether the specified method(s)
2084
- should be inlined.
2085
-
2086
- By default, accessors and the constructor are inlined, but not the
2087
- destructor.
2088
-
2089
- =item * immutable_trait
2090
-
2091
- The name of a class which will be used as a parent class for the
2092
- metaclass object being made immutable. This "trait" implements the
2093
- post-immutability functionality of the metaclass (but not the
2094
- transformation itself).
2095
-
2096
- This defaults to L<Class::MOP::Class::Immutable::Trait>.
2097
-
2098
- =item * constructor_name
2099
-
2100
- This is the constructor method name. This defaults to "new".
2101
-
2102
- =item * constructor_class
2103
-
2104
- The name of the method metaclass for constructors. It will be used to
2105
- generate the inlined constructor. This defaults to
2106
- "Class::MOP::Method::Constructor".
2107
-
2108
- =item * replace_constructor
2109
-
2110
- This is a boolean indicating whether an existing constructor should be
2111
- replaced when inlining a constructor. This defaults to false.
2112
-
2113
- =item * destructor_class
2114
-
2115
- The name of the method metaclass for destructors. It will be used to
2116
- generate the inlined destructor. This defaults to
2117
- "Class::MOP::Method::Denstructor".
2118
-
2119
- =item * replace_destructor
2120
-
2121
- This is a boolean indicating whether an existing destructor should be
2122
- replaced when inlining a destructor. This defaults to false.
2123
-
2124
- =back
2125
-
2126
- =item B<< $metaclass->immutable_options >>
2127
-
2128
- Returns a hash of the options used when making the class immutable, including
2129
- both defaults and anything supplied by the user in the call to C<<
2130
- $metaclass->make_immutable >>. This is useful if you need to temporarily make
2131
- a class mutable and then restore immutability as it was before.
2132
-
2133
- =item B<< $metaclass->make_mutable >>
2134
-
2135
- Calling this method reverse the immutabilization transformation.
2136
-
2137
- =back
2138
-
2139
- =head2 Method Modifiers
2140
-
2141
- Method modifiers are hooks which allow a method to be wrapped with
2142
- I<before>, I<after> and I<around> method modifiers. Every time a
2143
- method is called, its modifiers are also called.
2144
-
2145
- A class can modify its own methods, as well as methods defined in
2146
- parent classes.
2147
-
2148
- =head3 How method modifiers work?
2149
-
2150
- Method modifiers work by wrapping the original method and then
2151
- replacing it in the class's symbol table. The wrappers will handle
2152
- calling all the modifiers in the appropriate order and preserving the
2153
- calling context for the original method.
2154
-
2155
- The return values of C<before> and C<after> modifiers are
2156
- ignored. This is because their purpose is B<not> to filter the input
2157
- and output of the primary method (this is done with an I<around>
2158
- modifier).
2159
-
2160
- This may seem like an odd restriction to some, but doing this allows
2161
- for simple code to be added at the beginning or end of a method call
2162
- without altering the function of the wrapped method or placing any
2163
- extra responsibility on the code of the modifier.
2164
-
2165
- Of course if you have more complex needs, you can use the C<around>
2166
- modifier which allows you to change both the parameters passed to the
2167
- wrapped method, as well as its return value.
2168
-
2169
- Before and around modifiers are called in last-defined-first-called
2170
- order, while after modifiers are called in first-defined-first-called
2171
- order. So the call tree might looks something like this:
2172
-
2173
- before 2
2174
- before 1
2175
- around 2
2176
- around 1
2177
- primary
2178
- around 1
2179
- around 2
2180
- after 1
2181
- after 2
2182
-
2183
- =head3 What is the performance impact?
2184
-
2185
- Of course there is a performance cost associated with method
2186
- modifiers, but we have made every effort to make that cost directly
2187
- proportional to the number of modifier features you use.
2188
-
2189
- The wrapping method does its best to B<only> do as much work as it
2190
- absolutely needs to. In order to do this we have moved some of the
2191
- performance costs to set-up time, where they are easier to amortize.
2192
-
2193
- All this said, our benchmarks have indicated the following:
2194
-
2195
- simple wrapper with no modifiers 100% slower
2196
- simple wrapper with simple before modifier 400% slower
2197
- simple wrapper with simple after modifier 450% slower
2198
- simple wrapper with simple around modifier 500-550% slower
2199
- simple wrapper with all 3 modifiers 1100% slower
2200
-
2201
- These numbers may seem daunting, but you must remember, every feature
2202
- comes with some cost. To put things in perspective, just doing a
2203
- simple C<AUTOLOAD> which does nothing but extract the name of the
2204
- method called and return it costs about 400% over a normal method
2205
- call.
2206
-
2207
- =over 4
2208
-
2209
- =item B<< $metaclass->add_before_method_modifier($method_name, $code) >>
2210
-
2211
- This wraps the specified method with the supplied subroutine
2212
- reference. The modifier will be called as a method itself, and will
2213
- receive the same arguments as are passed to the method.
2214
-
2215
- When the modifier exits, the wrapped method will be called.
2216
-
2217
- The return value of the modifier will be ignored.
2218
-
2219
- =item B<< $metaclass->add_after_method_modifier($method_name, $code) >>
2220
-
2221
- This wraps the specified method with the supplied subroutine
2222
- reference. The modifier will be called as a method itself, and will
2223
- receive the same arguments as are passed to the method.
2224
-
2225
- When the wrapped methods exits, the modifier will be called.
2226
-
2227
- The return value of the modifier will be ignored.
2228
-
2229
- =item B<< $metaclass->add_around_method_modifier($method_name, $code) >>
2230
-
2231
- This wraps the specified method with the supplied subroutine
2232
- reference.
2233
-
2234
- The first argument passed to the modifier will be a subroutine
2235
- reference to the wrapped method. The second argument is the object,
2236
- and after that come any arguments passed when the method is called.
2237
-
2238
- The around modifier can choose to call the original method, as well as
2239
- what arguments to pass if it does so.
2240
-
2241
- The return value of the modifier is what will be seen by the caller.
2242
-
2243
- =back
2244
-
2245
- =head2 Introspection
2246
-
2247
- =over 4
2248
-
2249
- =item B<< Class::MOP::Class->meta >>
2250
-
2251
- This will return a L<Class::MOP::Class> instance for this class.
2252
-
2253
- It should also be noted that L<Class::MOP> will actually bootstrap
2254
- this module by installing a number of attribute meta-objects into its
2255
- metaclass.
2256
-
2257
- =back
2258
-
2259
- =head1 AUTHORS
2260
-
2261
- =over 4
2262
-
2263
- =item *
2264
-
2265
- Stevan Little <stevan@cpan.org>
2266
-
2267
- =item *
2268
-
2269
- Dave Rolsky <autarch@urth.org>
2270
-
2271
- =item *
2272
-
2273
- Jesse Luehrs <doy@cpan.org>
2274
-
2275
- =item *
2276
-
2277
- Shawn M Moore <sartak@cpan.org>
2278
-
2279
- =item *
2280
-
2281
- יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
2282
-
2283
- =item *
2284
-
2285
- Karen Etheridge <ether@cpan.org>
2286
-
2287
- =item *
2288
-
2289
- Florian Ragwitz <rafl@debian.org>
2290
-
2291
- =item *
2292
-
2293
- Hans Dieter Pearcey <hdp@cpan.org>
2294
-
2295
- =item *
2296
-
2297
- Chris Prather <chris@prather.org>
2298
-
2299
- =item *
2300
-
2301
- Matt S Trout <mstrout@cpan.org>
2302
-
2303
- =back
2304
-
2305
- =head1 COPYRIGHT AND LICENSE
2306
-
2307
- This software is copyright (c) 2006 by Infinity Interactive, Inc.
2308
-
2309
- This is free software; you can redistribute it and/or modify it under
2310
- the same terms as the Perl 5 programming language system itself.
2311
-
2312
- =cut