javonet-nodejs-sdk 2.5.15 → 2.5.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2047) hide show
  1. package/dist/core/delegatesCache/DelegatesCache.cjs +55 -0
  2. package/dist/core/handler/AbstractHandler.cjs +60 -0
  3. package/dist/core/handler/ArrayGetItemHandler.cjs +59 -0
  4. package/dist/core/handler/ArrayGetRankHandler.cjs +50 -0
  5. package/dist/core/handler/ArrayGetSizeHandler.cjs +50 -0
  6. package/dist/core/handler/ArrayHandler.cjs +41 -0
  7. package/dist/core/handler/ArraySetItemHandler.cjs +60 -0
  8. package/dist/core/handler/CastingHandler.cjs +34 -0
  9. package/dist/core/handler/ConvertTypeHandler.cjs +53 -0
  10. package/dist/core/handler/CreateClassInstanceHandler.cjs +60 -0
  11. package/dist/core/handler/DestructReferenceHandler.cjs +42 -0
  12. package/dist/core/handler/EnableNamespaceHandler.cjs +56 -0
  13. package/dist/core/handler/EnableTypeHandler.cjs +56 -0
  14. package/dist/core/handler/GetGlobalStaticFieldHandler.cjs +60 -0
  15. package/dist/core/handler/GetInstanceFieldHandler.cjs +59 -0
  16. package/dist/core/handler/GetInstanceMethodAsDelegateHandler.cjs +83 -0
  17. package/dist/core/handler/GetStaticFieldHandler.cjs +59 -0
  18. package/dist/core/handler/GetStaticMethodAsDelegateHandler.cjs +83 -0
  19. package/dist/core/handler/GetTypeHandler.cjs +87 -0
  20. package/dist/core/handler/Handler.cjs +136 -0
  21. package/dist/core/handler/InvokeDelegateHandler.cjs +53 -0
  22. package/dist/core/handler/InvokeGlobalFunctionHandler.cjs +60 -0
  23. package/dist/core/handler/InvokeInstanceMethodHandler.cjs +62 -0
  24. package/dist/core/handler/InvokeStaticMethodHandler.cjs +62 -0
  25. package/dist/core/handler/LoadLibraryHandler.cjs +68 -0
  26. package/dist/core/handler/PassDelegateHandler.cjs +162 -0
  27. package/dist/core/handler/ResolveReferenceHandler.cjs +41 -0
  28. package/dist/core/handler/SetGlobalStaticFieldHandler.cjs +61 -0
  29. package/dist/core/handler/SetInstanceFieldHandler.cjs +59 -0
  30. package/dist/core/handler/SetStaticFieldHandler.cjs +57 -0
  31. package/dist/core/handler/ValueHandler.cjs +37 -0
  32. package/dist/core/interpreter/Interpreter.cjs +159 -0
  33. package/dist/core/namespaceCache/NamespaceCache.cjs +58 -0
  34. package/dist/core/protocol/CommandDeserializer.cjs +188 -0
  35. package/dist/core/protocol/CommandSerializer.cjs +64 -0
  36. package/dist/core/protocol/TypeDeserializer.cjs +91 -0
  37. package/dist/core/protocol/TypeSerializer.cjs +153 -0
  38. package/dist/core/receiver/Receiver.cjs +63 -0
  39. package/dist/core/receiver/ReceiverNative.cjs +37 -0
  40. package/dist/core/referenceCache/ReferencesCache.cjs +65 -0
  41. package/dist/core/transmitter/Transmitter.cjs +42 -0
  42. package/dist/core/transmitter/TransmitterWebsocket.cjs +55 -0
  43. package/dist/core/transmitter/TransmitterWebsocketBrowser.cjs +59 -0
  44. package/dist/core/transmitter/TransmitterWrapper.cjs +75 -0
  45. package/dist/core/typeCache/TypeCache.cjs +58 -0
  46. package/dist/core/webSocketClient/WebSocketClient.cjs +150 -0
  47. package/dist/core/webSocketClient/WebSocketClientBrowser.cjs +153 -0
  48. package/dist/sdk/ConfigRuntimeFactory.cjs +198 -0
  49. package/dist/sdk/InvocationContext.cjs +463 -0
  50. package/dist/sdk/Javonet.cjs +150 -0
  51. package/dist/sdk/RuntimeContext.cjs +288 -0
  52. package/dist/sdk/RuntimeFactory.cjs +98 -0
  53. package/dist/sdk/tools/browser/ConfigSourceResolver.cjs +153 -0
  54. package/dist/sdk/tools/browser/SdkExceptionHelper.cjs +37 -0
  55. package/dist/sdk/tools/nodejs/JsonFileResolver.cjs +120 -0
  56. package/dist/sdk/tools/nodejs/SdkExceptionHelper.cjs +100 -0
  57. package/dist/types/core/delegatesCache/DelegatesCache.d.ts +21 -0
  58. package/dist/types/core/handler/AbstractHandler.d.ts +7 -0
  59. package/dist/types/core/handler/ArrayGetItemHandler.d.ts +5 -0
  60. package/dist/types/core/handler/ArrayGetRankHandler.d.ts +5 -0
  61. package/dist/types/core/handler/ArrayGetSizeHandler.d.ts +5 -0
  62. package/dist/types/core/handler/ArrayHandler.d.ts +4 -0
  63. package/dist/types/core/handler/ArraySetItemHandler.d.ts +5 -0
  64. package/dist/types/core/handler/CastingHandler.d.ts +3 -0
  65. package/dist/types/core/handler/ConvertTypeHandler.d.ts +22 -0
  66. package/dist/types/core/handler/CreateClassInstanceHandler.d.ts +5 -0
  67. package/dist/types/core/handler/DestructReferenceHandler.d.ts +4 -0
  68. package/dist/types/core/handler/EnableNamespaceHandler.d.ts +5 -0
  69. package/dist/types/core/handler/EnableTypeHandler.d.ts +5 -0
  70. package/dist/types/core/handler/GetGlobalStaticFieldHandler.d.ts +5 -0
  71. package/dist/types/core/handler/GetInstanceFieldHandler.d.ts +5 -0
  72. package/dist/types/core/handler/GetInstanceMethodAsDelegateHandler.d.ts +38 -0
  73. package/dist/types/core/handler/GetStaticFieldHandler.d.ts +5 -0
  74. package/dist/types/core/handler/GetStaticMethodAsDelegateHandler.d.ts +36 -0
  75. package/dist/types/core/handler/GetTypeHandler.d.ts +16 -0
  76. package/dist/types/core/handler/Handler.d.ts +27 -0
  77. package/dist/types/core/handler/InvokeDelegateHandler.d.ts +15 -0
  78. package/dist/types/core/handler/InvokeGlobalFunctionHandler.d.ts +5 -0
  79. package/dist/types/core/handler/InvokeInstanceMethodHandler.d.ts +5 -0
  80. package/dist/types/core/handler/InvokeStaticMethodHandler.d.ts +5 -0
  81. package/dist/types/core/handler/LoadLibraryHandler.d.ts +7 -0
  82. package/dist/types/core/handler/PassDelegateHandler.d.ts +104 -0
  83. package/dist/types/core/handler/ResolveReferenceHandler.d.ts +12 -0
  84. package/dist/types/core/handler/SetGlobalStaticFieldHandler.d.ts +4 -0
  85. package/dist/types/core/handler/SetInstanceFieldHandler.d.ts +5 -0
  86. package/dist/types/core/handler/SetStaticFieldHandler.d.ts +5 -0
  87. package/dist/types/core/handler/ValueHandler.d.ts +4 -0
  88. package/dist/types/core/interpreter/Interpreter.d.ts +27 -0
  89. package/dist/types/core/namespaceCache/NamespaceCache.d.ts +9 -0
  90. package/dist/types/core/protocol/CommandDeserializer.d.ts +25 -0
  91. package/dist/types/core/protocol/CommandSerializer.d.ts +4 -0
  92. package/dist/types/core/protocol/TypeDeserializer.d.ts +15 -0
  93. package/dist/types/core/protocol/TypeSerializer.d.ts +17 -0
  94. package/dist/types/core/receiver/Receiver.d.ts +14 -0
  95. package/dist/types/core/receiver/ReceiverNative.d.ts +4 -0
  96. package/dist/types/core/referenceCache/ReferencesCache.d.ts +24 -0
  97. package/dist/types/core/transmitter/Transmitter.d.ts +6 -0
  98. package/dist/types/core/transmitter/TransmitterWebsocket.d.ts +21 -0
  99. package/dist/types/core/transmitter/TransmitterWebsocketBrowser.d.ts +30 -0
  100. package/dist/types/core/transmitter/TransmitterWrapper.d.ts +11 -0
  101. package/dist/types/core/typeCache/TypeCache.d.ts +9 -0
  102. package/dist/types/core/webSocketClient/WebSocketClient.d.ts +50 -0
  103. package/dist/types/core/webSocketClient/WebSocketClientBrowser.d.ts +63 -0
  104. package/dist/types/sdk/ConfigRuntimeFactory.d.ts +73 -0
  105. package/dist/types/sdk/InvocationContext.d.ts +207 -0
  106. package/dist/types/sdk/Javonet.d.ts +63 -0
  107. package/dist/types/sdk/RuntimeContext.d.ts +103 -0
  108. package/dist/types/sdk/RuntimeFactory.d.ts +58 -0
  109. package/dist/types/sdk/tools/browser/ConfigSourceResolver.d.ts +46 -0
  110. package/dist/types/sdk/tools/browser/SdkExceptionHelper.d.ts +7 -0
  111. package/dist/types/sdk/tools/nodejs/JsonFileResolver.d.ts +13 -0
  112. package/dist/types/sdk/tools/nodejs/SdkExceptionHelper.d.ts +6 -0
  113. package/dist/types/utils/Command.d.ts +42 -0
  114. package/dist/types/utils/CommandType.d.ts +44 -0
  115. package/dist/types/utils/ConnectionType.d.ts +5 -0
  116. package/dist/types/utils/CreateRequire.browser.d.ts +1 -0
  117. package/dist/types/utils/CreateRequire.node.d.ts +2 -0
  118. package/dist/types/utils/CustomError.d.ts +3 -0
  119. package/dist/types/utils/ExceptionType.d.ts +10 -0
  120. package/dist/types/utils/Runtime.d.ts +24 -0
  121. package/dist/types/utils/RuntimeLogger.d.ts +5 -0
  122. package/dist/types/utils/RuntimeLoggerBrowser.d.ts +15 -0
  123. package/dist/types/utils/RuntimeName.d.ts +13 -0
  124. package/dist/types/utils/RuntimeNameHandler.d.ts +7 -0
  125. package/dist/types/utils/StringEncodingMode.d.ts +6 -0
  126. package/dist/types/utils/Type.d.ts +14 -0
  127. package/dist/types/utils/connectionData/IConnectionData.d.ts +5 -0
  128. package/dist/types/utils/connectionData/InMemoryConnectionData.d.ts +16 -0
  129. package/dist/types/utils/connectionData/WsConnectionData.d.ts +31 -0
  130. package/dist/types/utils/exception/ExceptionSerializer.d.ts +6 -0
  131. package/dist/types/utils/exception/ExceptionThrower.d.ts +4 -0
  132. package/dist/types/utils/guid/generateGuid.d.ts +1 -0
  133. package/dist/types/utils/nodejs/TypesConverter.d.ts +48 -0
  134. package/dist/types/utils/nodejs/connectionData/TcpConnectionData.d.ts +25 -0
  135. package/dist/types/utils/nodejs/uuid/REGEX.d.ts +1 -0
  136. package/dist/types/utils/nodejs/uuid/rng.d.ts +1 -0
  137. package/dist/types/utils/nodejs/uuid/stringify.d.ts +1 -0
  138. package/dist/types/utils/nodejs/uuid/v4.d.ts +1 -0
  139. package/dist/types/utils/nodejs/uuid/validate.d.ts +1 -0
  140. package/dist/utils/Command.cjs +87 -0
  141. package/dist/utils/CommandType.cjs +74 -0
  142. package/dist/utils/ConnectionType.cjs +35 -0
  143. package/dist/utils/CreateRequire.browser.cjs +30 -0
  144. package/dist/utils/CreateRequire.node.cjs +28 -0
  145. package/dist/utils/CustomError.cjs +33 -0
  146. package/dist/utils/ExceptionType.cjs +40 -0
  147. package/dist/utils/Runtime.cjs +109 -0
  148. package/dist/utils/RuntimeLogger.cjs +61 -0
  149. package/dist/utils/RuntimeLoggerBrowser.cjs +56 -0
  150. package/dist/utils/RuntimeName.cjs +43 -0
  151. package/dist/utils/RuntimeNameHandler.cjs +62 -0
  152. package/dist/utils/StringEncodingMode.cjs +36 -0
  153. package/dist/utils/Type.cjs +44 -0
  154. package/dist/utils/connectionData/IConnectionData.cjs +38 -0
  155. package/dist/utils/connectionData/InMemoryConnectionData.cjs +52 -0
  156. package/dist/utils/connectionData/WsConnectionData.cjs +61 -0
  157. package/dist/utils/exception/ExceptionSerializer.cjs +82 -0
  158. package/dist/utils/exception/ExceptionThrower.cjs +111 -0
  159. package/dist/utils/guid/generateGuid.cjs +34 -0
  160. package/dist/utils/nodejs/TypesConverter.cjs +102 -0
  161. package/dist/utils/nodejs/connectionData/TcpConnectionData.cjs +101 -0
  162. package/dist/utils/nodejs/uuid/REGEX.cjs +28 -0
  163. package/dist/utils/nodejs/uuid/rng.cjs +47 -0
  164. package/dist/utils/nodejs/uuid/stringify.cjs +39 -0
  165. package/dist/utils/nodejs/uuid/v4.cjs +43 -0
  166. package/dist/utils/nodejs/uuid/validate.cjs +31 -0
  167. package/lib/core/delegatesCache/DelegatesCache.js +37 -0
  168. package/lib/core/handler/AbstractHandler.js +2 -2
  169. package/lib/core/handler/ArrayGetItemHandler.js +2 -2
  170. package/lib/core/handler/ArrayGetRankHandler.js +2 -2
  171. package/lib/core/handler/ArrayGetSizeHandler.js +2 -2
  172. package/lib/core/handler/ArrayHandler.js +2 -2
  173. package/lib/core/handler/ArraySetItemHandler.js +2 -2
  174. package/lib/core/handler/CastingHandler.js +2 -2
  175. package/lib/core/handler/ConvertTypeHandler.js +3 -3
  176. package/lib/core/handler/CreateClassInstanceHandler.js +4 -2
  177. package/lib/core/handler/DestructReferenceHandler.js +3 -3
  178. package/lib/core/handler/EnableNamespaceHandler.js +3 -3
  179. package/lib/core/handler/EnableTypeHandler.js +3 -3
  180. package/lib/core/handler/GetGlobalStaticFieldHandler.js +2 -2
  181. package/lib/core/handler/GetInstanceFieldHandler.js +2 -2
  182. package/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +2 -2
  183. package/lib/core/handler/GetStaticFieldHandler.js +3 -2
  184. package/lib/core/handler/GetStaticMethodAsDelegateHandler.js +2 -3
  185. package/lib/core/handler/GetTypeHandler.js +16 -7
  186. package/lib/core/handler/Handler.js +91 -60
  187. package/lib/core/handler/InvokeDelegateHandler.js +4 -4
  188. package/lib/core/handler/InvokeGlobalFunctionHandler.js +3 -5
  189. package/lib/core/handler/InvokeInstanceMethodHandler.js +2 -2
  190. package/lib/core/handler/InvokeStaticMethodHandler.js +2 -2
  191. package/lib/core/handler/LoadLibraryHandler.js +7 -4
  192. package/lib/core/handler/PassDelegateHandler.js +38 -24
  193. package/lib/core/handler/ResolveReferenceHandler.js +13 -3
  194. package/lib/core/handler/SetGlobalStaticFieldHandler.js +2 -2
  195. package/lib/core/handler/SetInstanceFieldHandler.js +2 -2
  196. package/lib/core/handler/SetStaticFieldHandler.js +2 -2
  197. package/lib/core/handler/ValueHandler.js +2 -2
  198. package/lib/core/interpreter/Interpreter.js +164 -0
  199. package/lib/core/namespaceCache/NamespaceCache.js +1 -1
  200. package/lib/core/protocol/CommandDeserializer.js +180 -0
  201. package/lib/core/protocol/CommandSerializer.js +48 -0
  202. package/lib/core/protocol/TypeDeserializer.js +81 -0
  203. package/lib/core/protocol/TypeSerializer.js +143 -0
  204. package/lib/core/receiver/Receiver.js +17 -8
  205. package/lib/core/receiver/ReceiverNative.js +2 -2
  206. package/lib/core/referenceCache/ReferencesCache.js +27 -4
  207. package/lib/core/transmitter/Transmitter.js +6 -8
  208. package/lib/core/transmitter/TransmitterWebsocket.js +2 -6
  209. package/lib/core/transmitter/TransmitterWebsocketBrowser.js +39 -0
  210. package/lib/core/transmitter/TransmitterWrapper.js +26 -13
  211. package/lib/core/typeCache/TypeCache.js +1 -1
  212. package/lib/core/webSocketClient/WebSocketClient.js +56 -24
  213. package/lib/core/webSocketClient/WebSocketClientBrowser.js +174 -0
  214. package/lib/declarations.d.ts +35 -0
  215. package/lib/sdk/ConfigRuntimeFactory.js +108 -58
  216. package/lib/sdk/InvocationContext.js +487 -0
  217. package/lib/sdk/Javonet.js +63 -29
  218. package/lib/sdk/RuntimeContext.js +289 -0
  219. package/lib/sdk/RuntimeFactory.js +12 -5
  220. package/lib/sdk/tools/browser/ConfigSourceResolver.js +146 -0
  221. package/lib/sdk/tools/browser/SdkExceptionHelper.js +20 -0
  222. package/lib/sdk/tools/nodejs/JsonFileResolver.js +106 -0
  223. package/lib/sdk/tools/nodejs/SdkExceptionHelper.js +89 -0
  224. package/lib/utils/Command.js +67 -0
  225. package/lib/utils/CommandType.js +45 -0
  226. package/lib/utils/ConnectionType.js +6 -0
  227. package/lib/utils/CreateRequire.browser.js +5 -0
  228. package/lib/utils/CreateRequire.node.js +3 -0
  229. package/lib/utils/CustomError.js +6 -0
  230. package/lib/utils/ExceptionType.js +13 -0
  231. package/lib/utils/Runtime.js +113 -0
  232. package/lib/utils/RuntimeLogger.js +19 -9
  233. package/lib/utils/RuntimeLoggerBrowser.js +35 -0
  234. package/lib/utils/RuntimeName.js +14 -0
  235. package/lib/utils/RuntimeNameHandler.js +38 -0
  236. package/lib/utils/StringEncodingMode.js +7 -0
  237. package/lib/utils/Type.js +15 -0
  238. package/lib/utils/connectionData/IConnectionData.js +13 -0
  239. package/lib/utils/connectionData/InMemoryConnectionData.js +35 -0
  240. package/lib/utils/connectionData/WsConnectionData.js +48 -0
  241. package/lib/utils/exception/ExceptionSerializer.js +64 -0
  242. package/lib/utils/exception/ExceptionThrower.js +96 -0
  243. package/lib/utils/guid/generateGuid.js +9 -0
  244. package/lib/utils/nodejs/TypesConverter.js +91 -0
  245. package/lib/utils/nodejs/connectionData/TcpConnectionData.js +89 -0
  246. package/lib/utils/nodejs/uuid/REGEX.js +2 -0
  247. package/lib/utils/nodejs/uuid/rng.js +23 -0
  248. package/lib/utils/nodejs/uuid/stringify.js +51 -0
  249. package/lib/utils/nodejs/uuid/v4.js +26 -0
  250. package/lib/utils/nodejs/uuid/validate.js +7 -0
  251. package/package.json +68 -47
  252. package/Binaries/Clr/Javonet.Clr.Utils.dll +0 -0
  253. package/Binaries/Clr/JavonetClrRuntime.dll +0 -0
  254. package/Binaries/Jvm/JavonetJvmRuntime.jar +0 -0
  255. package/Binaries/Native/Linux/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  256. package/Binaries/Native/Linux/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  257. package/Binaries/Native/Linux/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  258. package/Binaries/Native/Linux/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  259. package/Binaries/Native/Linux/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  260. package/Binaries/Native/Linux/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  261. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  262. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  263. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  264. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  265. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  266. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  267. package/Binaries/Native/Linux/ARM64/libJavonetActivationService.so +0 -0
  268. package/Binaries/Native/Linux/ARM64/libJavonetCppRuntimeNative.so +0 -0
  269. package/Binaries/Native/Linux/ARM64/libJavonetGoRuntimeNative.so +0 -0
  270. package/Binaries/Native/Linux/ARM64/libJavonetJvmRuntimeNative.so +0 -0
  271. package/Binaries/Native/Linux/ARM64/libJavonetNetcoreRuntimeNative.so +0 -0
  272. package/Binaries/Native/Linux/ARM64/libJavonetPhpRuntimeNative.so +0 -0
  273. package/Binaries/Native/Linux/ARM64/libJavonetPythonRuntimeNative.so +0 -0
  274. package/Binaries/Native/Linux/ARM64/libJavonetRuby342RuntimeNative.so +0 -0
  275. package/Binaries/Native/Linux/ARM64/libJavonetRubyRuntimeNative.so +0 -0
  276. package/Binaries/Native/Linux/ARM64/libJavonetTcpClient.so +0 -0
  277. package/Binaries/Native/Linux/ARM64/libJavonetTcpTlsClient.so +0 -0
  278. package/Binaries/Native/Linux/ARM64/libUtils.so +0 -0
  279. package/Binaries/Native/Linux/ARM64/libnethost.so +0 -0
  280. package/Binaries/Native/Linux/ARM64/version.txt +0 -1
  281. package/Binaries/Native/Linux/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  282. package/Binaries/Native/Linux/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  283. package/Binaries/Native/Linux/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  284. package/Binaries/Native/Linux/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  285. package/Binaries/Native/Linux/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  286. package/Binaries/Native/Linux/X64/NetVersionLatest.runtimeconfig.json +0 -10
  287. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  288. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  289. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  290. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  291. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  292. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  293. package/Binaries/Native/Linux/X64/libJavonetActivationService.so +0 -0
  294. package/Binaries/Native/Linux/X64/libJavonetCppRuntimeNative.so +0 -0
  295. package/Binaries/Native/Linux/X64/libJavonetGoRuntimeNative.so +0 -0
  296. package/Binaries/Native/Linux/X64/libJavonetJvmRuntimeNative.so +0 -0
  297. package/Binaries/Native/Linux/X64/libJavonetNetcoreRuntimeNative.so +0 -0
  298. package/Binaries/Native/Linux/X64/libJavonetNodejs1816RuntimeNative.so +0 -0
  299. package/Binaries/Native/Linux/X64/libJavonetNodejsRuntimeNative.so +0 -0
  300. package/Binaries/Native/Linux/X64/libJavonetPerlRuntimeNative.so +0 -0
  301. package/Binaries/Native/Linux/X64/libJavonetPhpRuntimeNative.so +0 -0
  302. package/Binaries/Native/Linux/X64/libJavonetPython2RuntimeNative.so +0 -0
  303. package/Binaries/Native/Linux/X64/libJavonetPythonRuntimeNative.so +0 -0
  304. package/Binaries/Native/Linux/X64/libJavonetRuby278RuntimeNative.so +0 -0
  305. package/Binaries/Native/Linux/X64/libJavonetRuby342RuntimeNative.so +0 -0
  306. package/Binaries/Native/Linux/X64/libJavonetRubyRuntimeNative.so +0 -0
  307. package/Binaries/Native/Linux/X64/libJavonetTcpClient.so +0 -0
  308. package/Binaries/Native/Linux/X64/libJavonetTcpTlsClient.so +0 -0
  309. package/Binaries/Native/Linux/X64/libUtils.so +0 -0
  310. package/Binaries/Native/Linux/X64/libnethost.so +0 -0
  311. package/Binaries/Native/Linux/X64/libnode.so.108 +0 -0
  312. package/Binaries/Native/Linux/X64/libperl.so.5.34.0 +0 -0
  313. package/Binaries/Native/Linux/X64/libpython2.7.so.1.0 +0 -0
  314. package/Binaries/Native/Linux/X64/libruby.so.2.7.8 +0 -0
  315. package/Binaries/Native/Linux/X64/libruby.so.3.4.2 +0 -0
  316. package/Binaries/Native/Linux/X64/version.txt +0 -1
  317. package/Binaries/Native/MacOs/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  318. package/Binaries/Native/MacOs/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  319. package/Binaries/Native/MacOs/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  320. package/Binaries/Native/MacOs/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  321. package/Binaries/Native/MacOs/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  322. package/Binaries/Native/MacOs/X64/NetVersionLatest.runtimeconfig.json +0 -10
  323. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  324. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  325. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  326. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  327. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  328. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  329. package/Binaries/Native/MacOs/X64/libJavonetActivationService.dylib +0 -0
  330. package/Binaries/Native/MacOs/X64/libJavonetCppRuntimeNative.dylib +0 -0
  331. package/Binaries/Native/MacOs/X64/libJavonetGoRuntimeNative.dylib +0 -0
  332. package/Binaries/Native/MacOs/X64/libJavonetJvmRuntimeNative.dylib +0 -0
  333. package/Binaries/Native/MacOs/X64/libJavonetNetcoreRuntimeNative.dylib +0 -0
  334. package/Binaries/Native/MacOs/X64/libJavonetNodejs1816RuntimeNative.dylib +0 -0
  335. package/Binaries/Native/MacOs/X64/libJavonetNodejsRuntimeNative.dylib +0 -0
  336. package/Binaries/Native/MacOs/X64/libJavonetPhpRuntimeNative.dylib +0 -0
  337. package/Binaries/Native/MacOs/X64/libJavonetPythonRuntimeNative.dylib +0 -0
  338. package/Binaries/Native/MacOs/X64/libJavonetRuby278RuntimeNative.dylib +0 -0
  339. package/Binaries/Native/MacOs/X64/libJavonetRuby342RuntimeNative.dylib +0 -0
  340. package/Binaries/Native/MacOs/X64/libJavonetRubyRuntimeNative.dylib +0 -0
  341. package/Binaries/Native/MacOs/X64/libJavonetTcpClient.dylib +0 -0
  342. package/Binaries/Native/MacOs/X64/libJavonetTcpTlsClient.dylib +0 -0
  343. package/Binaries/Native/MacOs/X64/libUtils.dylib +0 -0
  344. package/Binaries/Native/MacOs/X64/libnethost.dylib +0 -0
  345. package/Binaries/Native/MacOs/X64/libnode.108.dylib +0 -0
  346. package/Binaries/Native/MacOs/X64/libruby.2.7.dylib +0 -0
  347. package/Binaries/Native/MacOs/X64/libruby.3.4.dylib +0 -0
  348. package/Binaries/Native/MacOs/X64/version.txt +0 -1
  349. package/Binaries/Native/Windows/ARM64/JavonetActivationService.dll +0 -0
  350. package/Binaries/Native/Windows/ARM64/JavonetCppRuntimeNative.dll +0 -0
  351. package/Binaries/Native/Windows/ARM64/JavonetGoRuntimeNative.dll +0 -0
  352. package/Binaries/Native/Windows/ARM64/JavonetJvmRuntimeNative.dll +0 -0
  353. package/Binaries/Native/Windows/ARM64/JavonetNetcoreRuntimeNative.dll +0 -0
  354. package/Binaries/Native/Windows/ARM64/JavonetPhpRuntimeNative.dll +0 -0
  355. package/Binaries/Native/Windows/ARM64/JavonetPythonRuntimeNative.dll +0 -0
  356. package/Binaries/Native/Windows/ARM64/JavonetRuby278RuntimeNative.dll +0 -0
  357. package/Binaries/Native/Windows/ARM64/JavonetRubyRuntimeNative.dll +0 -0
  358. package/Binaries/Native/Windows/ARM64/JavonetTcpClient.dll +0 -0
  359. package/Binaries/Native/Windows/ARM64/JavonetTcpTlsClient.dll +0 -0
  360. package/Binaries/Native/Windows/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  361. package/Binaries/Native/Windows/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  362. package/Binaries/Native/Windows/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  363. package/Binaries/Native/Windows/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  364. package/Binaries/Native/Windows/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  365. package/Binaries/Native/Windows/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  366. package/Binaries/Native/Windows/ARM64/Utils.dll +0 -0
  367. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  368. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  369. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  370. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  371. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  372. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  373. package/Binaries/Native/Windows/ARM64/libcrypto-3-arm64.dll +0 -0
  374. package/Binaries/Native/Windows/ARM64/libssl-3-arm64.dll +0 -0
  375. package/Binaries/Native/Windows/ARM64/libxml2.dll +0 -0
  376. package/Binaries/Native/Windows/ARM64/libxmlsec-openssl.dll +0 -0
  377. package/Binaries/Native/Windows/ARM64/libxmlsec.dll +0 -0
  378. package/Binaries/Native/Windows/ARM64/libxslt.dll +0 -0
  379. package/Binaries/Native/Windows/ARM64/nethost.dll +0 -0
  380. package/Binaries/Native/Windows/ARM64/version.txt +0 -0
  381. package/Binaries/Native/Windows/X64/JavonetActivationService.dll +0 -0
  382. package/Binaries/Native/Windows/X64/JavonetClrRuntimeNative.dll +0 -0
  383. package/Binaries/Native/Windows/X64/JavonetCppRuntimeNative.dll +0 -0
  384. package/Binaries/Native/Windows/X64/JavonetGoRuntimeNative.dll +0 -0
  385. package/Binaries/Native/Windows/X64/JavonetJvmRuntimeNative.dll +0 -0
  386. package/Binaries/Native/Windows/X64/JavonetNetcoreRuntimeNative.dll +0 -0
  387. package/Binaries/Native/Windows/X64/JavonetNodejs1816RuntimeNative.dll +0 -0
  388. package/Binaries/Native/Windows/X64/JavonetNodejsRuntimeNative.dll +0 -0
  389. package/Binaries/Native/Windows/X64/JavonetPerl532RuntimeNativeAuxiliary.dll +0 -0
  390. package/Binaries/Native/Windows/X64/JavonetPerl540RuntimeNativeAuxiliary.dll +0 -0
  391. package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNative.dll +0 -0
  392. package/Binaries/Native/Windows/X64/JavonetPhpRuntimeNative.dll +0 -0
  393. package/Binaries/Native/Windows/X64/JavonetPython2RuntimeNative.dll +0 -0
  394. package/Binaries/Native/Windows/X64/JavonetPythonRuntimeNative.dll +0 -0
  395. package/Binaries/Native/Windows/X64/JavonetRuby278RuntimeNative.dll +0 -0
  396. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNative.dll +0 -0
  397. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNativeAuxiliary.dll +0 -0
  398. package/Binaries/Native/Windows/X64/JavonetTcpClient.dll +0 -0
  399. package/Binaries/Native/Windows/X64/JavonetTcpTlsClient.dll +0 -0
  400. package/Binaries/Native/Windows/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  401. package/Binaries/Native/Windows/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  402. package/Binaries/Native/Windows/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  403. package/Binaries/Native/Windows/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  404. package/Binaries/Native/Windows/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  405. package/Binaries/Native/Windows/X64/NetVersionLatest.runtimeconfig.json +0 -10
  406. package/Binaries/Native/Windows/X64/Utils.dll +0 -0
  407. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  408. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  409. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  410. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  411. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  412. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  413. package/Binaries/Native/Windows/X64/libcrypto-3-x64.dll +0 -0
  414. package/Binaries/Native/Windows/X64/libnode.dll +0 -0
  415. package/Binaries/Native/Windows/X64/libssl-3-x64.dll +0 -0
  416. package/Binaries/Native/Windows/X64/libxml2.dll +0 -0
  417. package/Binaries/Native/Windows/X64/libxmlsec-openssl.dll +0 -0
  418. package/Binaries/Native/Windows/X64/libxmlsec.dll +0 -0
  419. package/Binaries/Native/Windows/X64/libxslt.dll +0 -0
  420. package/Binaries/Native/Windows/X64/nethost.dll +0 -0
  421. package/Binaries/Native/Windows/X64/python27.dll +0 -0
  422. package/Binaries/Native/Windows/X64/version.txt +0 -1
  423. package/Binaries/Native/Windows/X64/x64-msvcrt-ruby270.dll +0 -0
  424. package/Binaries/Native/Windows/X64/x64-ucrt-ruby340.dll +0 -0
  425. package/Binaries/Native/Windows/X86/JavonetActivationService.dll +0 -0
  426. package/Binaries/Native/Windows/X86/JavonetClrRuntimeNative.dll +0 -0
  427. package/Binaries/Native/Windows/X86/JavonetCppRuntimeNative.dll +0 -0
  428. package/Binaries/Native/Windows/X86/JavonetGoRuntimeNative.dll +0 -0
  429. package/Binaries/Native/Windows/X86/JavonetJvmRuntimeNative.dll +0 -0
  430. package/Binaries/Native/Windows/X86/JavonetNetcoreRuntimeNative.dll +0 -0
  431. package/Binaries/Native/Windows/X86/JavonetPhpRuntimeNative.dll +0 -0
  432. package/Binaries/Native/Windows/X86/JavonetPython2RuntimeNative.dll +0 -0
  433. package/Binaries/Native/Windows/X86/JavonetPythonRuntimeNative.dll +0 -0
  434. package/Binaries/Native/Windows/X86/JavonetTcpClient.dll +0 -0
  435. package/Binaries/Native/Windows/X86/JavonetTcpTlsClient.dll +0 -0
  436. package/Binaries/Native/Windows/X86/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  437. package/Binaries/Native/Windows/X86/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  438. package/Binaries/Native/Windows/X86/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  439. package/Binaries/Native/Windows/X86/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  440. package/Binaries/Native/Windows/X86/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  441. package/Binaries/Native/Windows/X86/NetVersionLatest.runtimeconfig.json +0 -10
  442. package/Binaries/Native/Windows/X86/Utils.dll +0 -0
  443. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  444. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  445. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  446. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  447. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  448. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  449. package/Binaries/Native/Windows/X86/libcrypto-3.dll +0 -0
  450. package/Binaries/Native/Windows/X86/libssl-3.dll +0 -0
  451. package/Binaries/Native/Windows/X86/libxml2.dll +0 -0
  452. package/Binaries/Native/Windows/X86/libxmlsec-openssl.dll +0 -0
  453. package/Binaries/Native/Windows/X86/libxmlsec.dll +0 -0
  454. package/Binaries/Native/Windows/X86/libxslt.dll +0 -0
  455. package/Binaries/Native/Windows/X86/nethost.dll +0 -0
  456. package/Binaries/Native/Windows/X86/version.txt +0 -1
  457. package/Binaries/Netcore/Javonet.Netcore.Core.dll +0 -0
  458. package/Binaries/Netcore/Javonet.Netcore.Utils.dll +0 -0
  459. package/Binaries/Nodejs/index.js +0 -66
  460. package/Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache.js +0 -35
  461. package/Binaries/Nodejs/lib/core/handler/AbstractHandler.js +0 -41
  462. package/Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler.js +0 -38
  463. package/Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler.js +0 -28
  464. package/Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  465. package/Binaries/Nodejs/lib/core/handler/ArrayHandler.js +0 -18
  466. package/Binaries/Nodejs/lib/core/handler/ArraySetItemHandler.js +0 -43
  467. package/Binaries/Nodejs/lib/core/handler/CastingHandler.js +0 -10
  468. package/Binaries/Nodejs/lib/core/handler/ConvertTypeHandler.js +0 -38
  469. package/Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  470. package/Binaries/Nodejs/lib/core/handler/DestructReferenceHandler.js +0 -19
  471. package/Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler.js +0 -34
  472. package/Binaries/Nodejs/lib/core/handler/EnableTypeHandler.js +0 -35
  473. package/Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  474. package/Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  475. package/Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  476. package/Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler.js +0 -36
  477. package/Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  478. package/Binaries/Nodejs/lib/core/handler/GetTypeHandler.js +0 -63
  479. package/Binaries/Nodejs/lib/core/handler/Handler.js +0 -98
  480. package/Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler.js +0 -36
  481. package/Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  482. package/Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  483. package/Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  484. package/Binaries/Nodejs/lib/core/handler/LoadLibraryHandler.js +0 -48
  485. package/Binaries/Nodejs/lib/core/handler/PassDelegateHandler.js +0 -157
  486. package/Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler.js +0 -13
  487. package/Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  488. package/Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  489. package/Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler.js +0 -33
  490. package/Binaries/Nodejs/lib/core/handler/ValueHandler.js +0 -13
  491. package/Binaries/Nodejs/lib/core/interpreter/Interpreter.js +0 -142
  492. package/Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache.js +0 -39
  493. package/Binaries/Nodejs/lib/core/protocol/CommandDeserializer.js +0 -181
  494. package/Binaries/Nodejs/lib/core/protocol/CommandSerializer.js +0 -50
  495. package/Binaries/Nodejs/lib/core/protocol/TypeDeserializer.js +0 -83
  496. package/Binaries/Nodejs/lib/core/protocol/TypeSerializer.js +0 -143
  497. package/Binaries/Nodejs/lib/core/receiver/Receiver.js +0 -32
  498. package/Binaries/Nodejs/lib/core/receiver/ReceiverNative.js +0 -13
  499. package/Binaries/Nodejs/lib/core/referenceCache/ReferencesCache.js +0 -30
  500. package/Binaries/Nodejs/lib/core/transmitter/Transmitter.js +0 -21
  501. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  502. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper.js +0 -47
  503. package/Binaries/Nodejs/lib/core/typeCache/TypeCache.js +0 -39
  504. package/Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient.js +0 -136
  505. package/Binaries/Nodejs/lib/declarations.d.ts +0 -64
  506. package/Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory.js +0 -155
  507. package/Binaries/Nodejs/lib/sdk/InvocationContext.js +0 -485
  508. package/Binaries/Nodejs/lib/sdk/Javonet.js +0 -105
  509. package/Binaries/Nodejs/lib/sdk/RuntimeContext.js +0 -300
  510. package/Binaries/Nodejs/lib/sdk/RuntimeFactory.js +0 -87
  511. package/Binaries/Nodejs/lib/sdk/tools/JsonFileResolver.js +0 -101
  512. package/Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  513. package/Binaries/Nodejs/lib/utils/Command.js +0 -69
  514. package/Binaries/Nodejs/lib/utils/CommandType.js +0 -47
  515. package/Binaries/Nodejs/lib/utils/ConnectionType.js +0 -8
  516. package/Binaries/Nodejs/lib/utils/CustomError.js +0 -8
  517. package/Binaries/Nodejs/lib/utils/ExceptionType.js +0 -13
  518. package/Binaries/Nodejs/lib/utils/RuntimeLogger.js +0 -30
  519. package/Binaries/Nodejs/lib/utils/RuntimeName.js +0 -16
  520. package/Binaries/Nodejs/lib/utils/RuntimeNameHandler.js +0 -38
  521. package/Binaries/Nodejs/lib/utils/StringEncodingMode.js +0 -9
  522. package/Binaries/Nodejs/lib/utils/Type.js +0 -17
  523. package/Binaries/Nodejs/lib/utils/TypesConverter.js +0 -91
  524. package/Binaries/Nodejs/lib/utils/connectionData/IConnectionData.js +0 -15
  525. package/Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  526. package/Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData.js +0 -77
  527. package/Binaries/Nodejs/lib/utils/connectionData/WsConnectionData.js +0 -50
  528. package/Binaries/Nodejs/lib/utils/exception/ExceptionSerializer.js +0 -64
  529. package/Binaries/Nodejs/lib/utils/exception/ExceptionThrower.js +0 -95
  530. package/Binaries/Nodejs/lib/utils/guid/generateGuid.js +0 -9
  531. package/Binaries/Nodejs/lib/utils/uuid/REGEX.js +0 -2
  532. package/Binaries/Nodejs/lib/utils/uuid/rng.js +0 -12
  533. package/Binaries/Nodejs/lib/utils/uuid/stringify.js +0 -51
  534. package/Binaries/Nodejs/lib/utils/uuid/v4.js +0 -27
  535. package/Binaries/Nodejs/lib/utils/uuid/validate.js +0 -6
  536. package/Binaries/Perl/Linux/X64/deps/bin/moose-outdated +0 -22
  537. package/Binaries/Perl/Linux/X64/deps/bin/package-stash-conflicts +0 -22
  538. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-events +0 -62
  539. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-highlight +0 -54
  540. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load +0 -155
  541. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load-dump +0 -314
  542. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-parse-emit +0 -123
  543. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  544. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  545. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  546. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  547. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  548. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  549. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Capture/Tiny.pm +0 -917
  550. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load/PP.pm +0 -59
  551. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load.pm +0 -420
  552. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  553. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  554. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  555. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/OptList.pm +0 -416
  556. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/GlobalDestruction.pm +0 -110
  557. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/OverloadInfo.pm +0 -309
  558. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace/Frame.pm +0 -272
  559. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace.pm +0 -624
  560. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Eval/Closure.pm +0 -379
  561. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config/MakeMaker.pm +0 -141
  562. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config.pm +0 -152
  563. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Unix.pm +0 -97
  564. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/VMS.pm +0 -118
  565. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Windows.pm +0 -125
  566. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers.pm +0 -122
  567. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/InstallPaths.pm +0 -627
  568. package/Binaries/Perl/Linux/X64/deps/lib/perl5/FFI/CheckLib.pm +0 -856
  569. package/Binaries/Perl/Linux/X64/deps/lib/perl5/File/Which.pm +0 -398
  570. package/Binaries/Perl/Linux/X64/deps/lib/perl5/IPC/System/Simple.pm +0 -1115
  571. package/Binaries/Perl/Linux/X64/deps/lib/perl5/MRO/Compat.pm +0 -407
  572. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Implementation.pm +0 -290
  573. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime/Conflicts.pm +0 -105
  574. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime.pm +0 -520
  575. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  576. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  577. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  578. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  579. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  580. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  581. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  582. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  583. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  584. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  585. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  586. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  587. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  588. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  589. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  590. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  591. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  592. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  593. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  594. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  595. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  596. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  597. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  598. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  599. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  600. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  601. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  602. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  603. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  604. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  605. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  606. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  607. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  608. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  609. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  610. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  611. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  612. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  613. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  614. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  615. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  616. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  617. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  618. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  619. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  620. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  621. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  622. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  623. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  624. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  625. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  626. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  627. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  628. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  629. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  630. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  631. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  632. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  633. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  634. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  635. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  636. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  637. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  638. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  639. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  640. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  641. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  642. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  643. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  644. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  645. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  646. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  647. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  648. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  649. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  650. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  651. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  652. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  653. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  654. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  655. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  656. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  657. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  658. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  659. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  660. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  661. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  662. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  663. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  664. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  665. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  666. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  667. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  668. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  669. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  670. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI.pm +0 -822
  671. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/DeprecationManager.pm +0 -368
  672. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/Conflicts.pm +0 -35
  673. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/PP.pm +0 -503
  674. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash.pm +0 -308
  675. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Path/Tiny.pm +0 -3946
  676. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  677. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Scope/Guard.pm +0 -183
  678. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Cookbook.pod +0 -602
  679. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Progressive.pm +0 -174
  680. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Tutorial.pod +0 -539
  681. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Util.pm +0 -488
  682. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter.pm +0 -1769
  683. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Install.pm +0 -486
  684. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Task/Weaken.pm +0 -95
  685. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  686. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Try/Tiny.pm +0 -820
  687. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  688. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  689. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  690. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  691. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  692. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  693. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  694. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  695. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  696. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  697. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  698. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  699. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  700. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  701. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  702. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  703. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  704. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  705. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  706. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  707. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  708. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  709. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  710. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  711. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  712. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  713. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  714. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  715. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  716. package/Binaries/Perl/Linux/X64/deps/lib/perl5/aliased.pm +0 -371
  717. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  718. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/install.json +0 -1
  719. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/MYMETA.json +0 -124
  720. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/install.json +0 -1
  721. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/MYMETA.json +0 -1290
  722. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/install.json +0 -1
  723. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/MYMETA.json +0 -1222
  724. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/install.json +0 -1
  725. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  726. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/install.json +0 -1
  727. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/MYMETA.json +0 -570
  728. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/install.json +0 -1
  729. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  730. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/install.json +0 -1
  731. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/MYMETA.json +0 -65
  732. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/install.json +0 -1
  733. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/MYMETA.json +0 -73
  734. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/install.json +0 -1
  735. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/MYMETA.json +0 -1081
  736. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/install.json +0 -1
  737. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/MYMETA.json +0 -463
  738. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/install.json +0 -1
  739. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/MYMETA.json +0 -599
  740. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/install.json +0 -1
  741. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/MYMETA.json +0 -79
  742. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/install.json +0 -1
  743. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/MYMETA.json +0 -89
  744. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/install.json +0 -1
  745. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/MYMETA.json +0 -76
  746. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/install.json +0 -1
  747. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/MYMETA.json +0 -156
  748. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/install.json +0 -1
  749. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/MYMETA.json +0 -198
  750. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/install.json +0 -1
  751. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/MYMETA.json +0 -81
  752. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/install.json +0 -1
  753. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/MYMETA.json +0 -69
  754. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/install.json +0 -1
  755. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/MYMETA.json +0 -66
  756. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/install.json +0 -1
  757. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/MYMETA.json +0 -122
  758. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/install.json +0 -1
  759. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/MYMETA.json +0 -625
  760. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/install.json +0 -1
  761. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/MYMETA.json +0 -83
  762. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/install.json +0 -1
  763. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/MYMETA.json +0 -1162
  764. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/install.json +0 -1
  765. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/MYMETA.json +0 -3189
  766. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/install.json +0 -1
  767. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  768. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/install.json +0 -1
  769. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/MYMETA.json +0 -1115
  770. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/install.json +0 -1
  771. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  772. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/install.json +0 -1
  773. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/MYMETA.json +0 -1069
  774. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/install.json +0 -1
  775. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/MYMETA.json +0 -1371
  776. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/install.json +0 -1
  777. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/MYMETA.json +0 -1331
  778. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/install.json +0 -1
  779. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/MYMETA.json +0 -89
  780. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/install.json +0 -1
  781. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/MYMETA.json +0 -186
  782. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/install.json +0 -1
  783. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  784. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/install.json +0 -1
  785. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  786. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  787. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/MYMETA.json +0 -53
  788. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/install.json +0 -1
  789. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/MYMETA.json +0 -595
  790. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/install.json +0 -1
  791. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/MYMETA.json +0 -55
  792. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/install.json +0 -1
  793. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/MYMETA.json +0 -572
  794. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/install.json +0 -1
  795. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/MYMETA.json +0 -1092
  796. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/install.json +0 -1
  797. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  798. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/install.json +0 -1
  799. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/MYMETA.json +0 -1344
  800. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/install.json +0 -1
  801. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/MYMETA.json +0 -40
  802. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/install.json +0 -1
  803. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  804. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/install.json +0 -1
  805. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/MYMETA.json +0 -1035
  806. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/install.json +0 -1
  807. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  808. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/install.json +0 -1
  809. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/Load/XS.pm +0 -89
  810. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Attribute.pm +0 -1100
  811. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class/Immutable/Trait.pm +0 -172
  812. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class.pm +0 -2312
  813. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Deprecated.pm +0 -95
  814. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Instance.pm +0 -533
  815. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Accessor.pm +0 -404
  816. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Constructor.pm +0 -251
  817. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Generated.pm +0 -142
  818. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Inlined.pm +0 -191
  819. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Meta.pm +0 -169
  820. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Wrapped.pm +0 -333
  821. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method.pm +0 -356
  822. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/MiniTrait.pm +0 -113
  823. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/AttributeCore.pm +0 -125
  824. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasAttributes.pm +0 -171
  825. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasMethods.pm +0 -304
  826. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasOverloads.pm +0 -243
  827. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin.pm +0 -107
  828. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Module.pm +0 -209
  829. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Object.pm +0 -196
  830. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Overload.pm +0 -340
  831. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Package.pm +0 -460
  832. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP.pm +0 -1222
  833. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Data/UUID.pm +0 -158
  834. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Build.pm +0 -634
  835. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/API.pm +0 -293
  836. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Buffer.pm +0 -366
  837. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Bundle.pm +0 -795
  838. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Closure.pm +0 -199
  839. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Constant.pm +0 -246
  840. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/DL.pm +0 -231
  841. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Function.pm +0 -229
  842. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Internal.pm +0 -96
  843. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/ASM.pm +0 -126
  844. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/C.pm +0 -123
  845. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/Win32.pm +0 -457
  846. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang.pm +0 -141
  847. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Legacy.pm +0 -140
  848. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Memory.pm +0 -268
  849. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/Meta.pm +0 -148
  850. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/TieArray.pm +0 -174
  851. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record.pm +0 -575
  852. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/ShareConfig.pm +0 -122
  853. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/PointerSizeBuffer.pm +0 -162
  854. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringArray.pm +0 -272
  855. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringPointer.pm +0 -190
  856. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/WideString.pm +0 -529
  857. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type.pm +0 -1399
  858. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version0.pm +0 -285
  859. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version1.pm +0 -390
  860. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version2.pm +0 -115
  861. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser.pm +0 -183
  862. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus.pm +0 -3302
  863. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Builder.pm +0 -538
  864. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Result.pm +0 -134
  865. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner.pm +0 -204
  866. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe.pm +0 -715
  867. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Temp.pm +0 -147
  868. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/typemap +0 -46
  869. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Conflicts.pm +0 -132
  870. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod +0 -384
  871. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod +0 -397
  872. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod +0 -176
  873. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Company_Subtypes.pod +0 -615
  874. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod +0 -127
  875. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Document_AugmentAndInner.pod +0 -197
  876. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod +0 -318
  877. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod +0 -345
  878. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Immutable.pod +0 -99
  879. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod +0 -180
  880. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod +0 -489
  881. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod +0 -153
  882. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/ExtensionOverview.pod +0 -404
  883. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod +0 -160
  884. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod +0 -172
  885. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod +0 -337
  886. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod +0 -132
  887. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod +0 -304
  888. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod +0 -325
  889. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod +0 -224
  890. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Table_MetaclassTrait.pod +0 -157
  891. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/WhyMeta.pod +0 -117
  892. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/ApplicationToInstance.pod +0 -191
  893. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Comparable_CodeReuse.pod +0 -379
  894. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod +0 -230
  895. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Keywords.pod +0 -240
  896. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Types.pod +0 -130
  897. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Style.pod +0 -77
  898. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook.pod +0 -289
  899. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Deprecated.pm +0 -98
  900. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AccessorMustReadWrite.pm +0 -14
  901. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +0 -19
  902. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +0 -19
  903. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +0 -19
  904. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ApplyTakesABlessedInstance.pm +0 -19
  905. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +0 -19
  906. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInRoles.pm +0 -32
  907. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInSummation.pm +0 -28
  908. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +0 -19
  909. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeIsRequired.pm +0 -45
  910. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +0 -19
  911. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeNamesDoNotMatch.pm +0 -25
  912. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotAnObject.pm +0 -28
  913. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotDefined.pm +0 -22
  914. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +0 -14
  915. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BadOptionFormat.pm +0 -25
  916. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +0 -19
  917. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderDoesNotExist.pm +0 -14
  918. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +0 -14
  919. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +0 -26
  920. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMustBeAMethodName.pm +0 -19
  921. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +0 -19
  922. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +0 -19
  923. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanExtendOnlyClasses.pm +0 -15
  924. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyConsumeRole.pm +0 -18
  925. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyWrapBlessedCode.pm +0 -25
  926. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASubclass.pm +0 -15
  927. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +0 -14
  928. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +0 -18
  929. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAsAnAttributeToARole.pm +0 -20
  930. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +0 -13
  931. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +0 -20
  932. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +0 -13
  933. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentNoSuperMethod.pm +0 -26
  934. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDerefWithoutIsa.pm +0 -14
  935. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +0 -14
  936. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCalculateNativeType.pm +0 -14
  937. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +0 -19
  938. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractMethod.pm +0 -12
  939. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAWeakRef.pm +0 -14
  940. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +0 -17
  941. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +0 -13
  942. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +0 -25
  943. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +0 -19
  944. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +0 -14
  945. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateWithoutIsa.pm +0 -13
  946. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindDelegateMetaclass.pm +0 -14
  947. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindType.pm +0 -19
  948. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +0 -33
  949. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFixMetaclassCompatibility.pm +0 -26
  950. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotGenerateInlineConstraint.pm +0 -30
  951. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +0 -30
  952. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInlineTypeConstraintCheck.pm +0 -14
  953. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotLocatePackageInINC.pm +0 -41
  954. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotMakeMetaclassCompatible.pm +0 -23
  955. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideALocalMethod.pm +0 -20
  956. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +0 -19
  957. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +0 -13
  958. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideNoSuperMethod.pm +0 -26
  959. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +0 -12
  960. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +0 -14
  961. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CircularReferenceInAlso.pm +0 -31
  962. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesNotHaveInitMeta.pm +0 -22
  963. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesTheExcludedRole.pm +0 -22
  964. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassNamesDoNotMatch.pm +0 -25
  965. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +0 -20
  966. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CodeBlockMustBeACodeRef.pm +0 -13
  967. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercingWithoutCoercions.pm +0 -12
  968. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionAlreadyExists.pm +0 -20
  969. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionNeedsTypeConstraint.pm +0 -14
  970. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +0 -22
  971. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +0 -16
  972. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +0 -12
  973. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateMethod.pm +0 -32
  974. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateWriter.pm +0 -24
  975. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalConstructor.pm +0 -34
  976. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalDestructor.pm +0 -34
  977. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +0 -20
  978. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +0 -26
  979. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +0 -14
  980. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotParseType.pm +0 -30
  981. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +0 -13
  982. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +0 -13
  983. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +0 -13
  984. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesArrayRefOfRoles.pm +0 -13
  985. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfAttributes.pm +0 -13
  986. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfMethods.pm +0 -13
  987. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +0 -33
  988. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +0 -20
  989. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +0 -20
  990. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +0 -14
  991. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DoesRequiresRoleName.pm +0 -13
  992. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  993. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumValuesMustBeString.pm +0 -26
  994. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ExtendsMissingArgs.pm +0 -13
  995. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/HandlesMustBeAHashRef.pm +0 -20
  996. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalInheritedOptions.pm +0 -23
  997. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +0 -31
  998. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +0 -27
  999. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm +0 -13
  1000. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +0 -18
  1001. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceBlessedIntoWrongClass.pm +0 -14
  1002. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceMustBeABlessedReference.pm +0 -20
  1003. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +0 -41
  1004. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentToMethod.pm +0 -45
  1005. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentsToTraitAliases.pm +0 -32
  1006. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1007. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHandleValue.pm +0 -20
  1008. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHasProvidedInARole.pm +0 -19
  1009. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidNameForType.pm +0 -17
  1010. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidOverloadOperator.pm +0 -21
  1011. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidRoleApplication.pm +0 -19
  1012. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeConstraint.pm +0 -24
  1013. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1014. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidValueForIs.pm +0 -14
  1015. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaDoesNotDoTheRole.pm +0 -14
  1016. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaLacksDoesMethod.pm +0 -14
  1017. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/LazyAttributeNeedsADefault.pm +0 -14
  1018. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Legacy.pm +0 -8
  1019. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +0 -19
  1020. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MatchActionMustBeACodeRef.pm +0 -28
  1021. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MessageParameterMustBeCodeRef.pm +0 -19
  1022. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +0 -24
  1023. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +0 -26
  1024. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +0 -23
  1025. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +0 -14
  1026. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +0 -14
  1027. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +0 -19
  1028. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassNotLoaded.pm +0 -14
  1029. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassTypeIncompatible.pm +0 -39
  1030. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectedAMetaclassObject.pm +0 -24
  1031. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsFewerArgs.pm +0 -27
  1032. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsMoreArgs.pm +0 -25
  1033. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodModifierNeedsMethodName.pm +0 -13
  1034. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameConflictInRoles.pm +0 -47
  1035. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +0 -20
  1036. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotGiven.pm +0 -13
  1037. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAMethodName.pm +0 -13
  1038. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnAttributeName.pm +0 -13
  1039. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnOverloadOperator.pm +0 -13
  1040. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +0 -19
  1041. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAHashOfOptions.pm +0 -19
  1042. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +0 -24
  1043. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +0 -19
  1044. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfArguments.pm +0 -25
  1045. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +0 -24
  1046. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustProvideANameForTheAttribute.pm +0 -19
  1047. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneMethod.pm +0 -13
  1048. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRole.pm +0 -13
  1049. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +0 -19
  1050. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +0 -19
  1051. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyADelegateToMethod.pm +0 -19
  1052. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMetaclass.pm +0 -20
  1053. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +0 -19
  1054. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +0 -19
  1055. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +0 -19
  1056. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +0 -13
  1057. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyPackageNameAndName.pm +0 -20
  1058. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +0 -25
  1059. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +0 -12
  1060. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +0 -12
  1061. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +0 -12
  1062. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +0 -12
  1063. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoAttributeFoundInSuperClass.pm +0 -14
  1064. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +0 -19
  1065. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoCasesMatched.pm +0 -27
  1066. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +0 -14
  1067. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoDestructorClassSpecified.pm +0 -13
  1068. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +0 -17
  1069. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoParentGivenToSubtype.pm +0 -18
  1070. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OnlyInstancesCanBeCloned.pm +0 -20
  1071. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OperatorIsRequired.pm +0 -19
  1072. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadConflictInSummation.pm +0 -62
  1073. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaClass.pm +0 -13
  1074. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaMethod.pm +0 -13
  1075. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaOverload.pm +0 -13
  1076. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm +0 -13
  1077. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAnOperator.pm +0 -13
  1078. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresNamesForCoderef.pm +0 -13
  1079. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInComposition.pm +0 -43
  1080. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInSummation.pm +0 -66
  1081. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageDoesNotUseMooseExporter.pm +0 -28
  1082. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +0 -25
  1083. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackagesAndModulesAreNotCachable.pm +0 -26
  1084. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +0 -26
  1085. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +0 -27
  1086. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeLacksInitialization.pm +0 -19
  1087. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeNeedsADefault.pm +0 -14
  1088. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsImportedByClass.pm +0 -46
  1089. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +0 -31
  1090. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Attribute.pm +0 -12
  1091. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/AttributeName.pm +0 -12
  1092. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Class.pm +0 -14
  1093. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +0 -49
  1094. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Instance.pm +0 -12
  1095. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InstanceClass.pm +0 -12
  1096. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InvalidAttributeOptions.pm +0 -13
  1097. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Method.pm +0 -12
  1098. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/ParamsHash.pm +0 -12
  1099. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Role.pm +0 -16
  1100. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreate.pm +0 -13
  1101. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreateMOPClass.pm +0 -13
  1102. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/TypeConstraint.pm +0 -14
  1103. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleDoesTheExcludedRole.pm +0 -28
  1104. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleExclusionConflict.pm +0 -27
  1105. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequired.pm +0 -13
  1106. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +0 -13
  1107. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportAugment.pm +0 -12
  1108. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportExtends.pm +0 -12
  1109. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportInner.pm +0 -12
  1110. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +0 -20
  1111. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +0 -14
  1112. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +0 -26
  1113. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +0 -12
  1114. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TriggerMustBeACodeRef.pm +0 -14
  1115. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +0 -25
  1116. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +0 -26
  1117. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +0 -13
  1118. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeHandles.pm +0 -20
  1119. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +0 -20
  1120. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +0 -22
  1121. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +0 -25
  1122. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  1123. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +0 -12
  1124. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +0 -49
  1125. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForTypeConstraint.pm +0 -33
  1126. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrapTakesACodeRefToBless.pm +0 -26
  1127. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrongTypeConstraintGiven.pm +0 -21
  1128. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception.pm +0 -211
  1129. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exporter.pm +0 -1048
  1130. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Intro.pod +0 -77
  1131. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Attributes.pod +0 -709
  1132. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/BestPractices.pod +0 -292
  1133. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Classes.pod +0 -218
  1134. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Concepts.pod +0 -439
  1135. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Construction.pod +0 -228
  1136. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Contributing.pod +0 -545
  1137. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delegation.pod +0 -313
  1138. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delta.pod +0 -1275
  1139. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions/Manifest.pod +0 -4124
  1140. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions.pod +0 -239
  1141. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/FAQ.pod +0 -470
  1142. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MOP.pod +0 -214
  1143. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MethodModifiers.pod +0 -449
  1144. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MooseX.pod +0 -326
  1145. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Resources.pod +0 -526
  1146. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Roles.pod +0 -557
  1147. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Support.pod +0 -204
  1148. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Types.pod +0 -501
  1149. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Unsweetened.pod +0 -386
  1150. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual.pod +0 -334
  1151. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Array.pm +0 -387
  1152. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Bool.pm +0 -146
  1153. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Code.pm +0 -129
  1154. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Counter.pm +0 -157
  1155. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Hash.pm +0 -227
  1156. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Number.pm +0 -155
  1157. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/String.pm +0 -187
  1158. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait.pm +0 -244
  1159. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native.pm +0 -299
  1160. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute.pm +0 -1810
  1161. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class/Immutable/Trait.pm +0 -123
  1162. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class.pm +0 -1014
  1163. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Instance.pm +0 -109
  1164. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/Writer.pm +0 -27
  1165. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/accessor.pm +0 -56
  1166. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/clear.pm +0 -28
  1167. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/count.pm +0 -22
  1168. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/delete.pm +0 -50
  1169. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/elements.pm +0 -22
  1170. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first.pm +0 -42
  1171. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first_index.pm +0 -51
  1172. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/get.pm +0 -31
  1173. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/grep.pm +0 -41
  1174. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/insert.pm +0 -58
  1175. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm +0 -22
  1176. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/join.pm +0 -41
  1177. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/map.pm +0 -41
  1178. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/natatime.pm +0 -66
  1179. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/pop.pm +0 -47
  1180. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/push.pm +0 -36
  1181. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/reduce.pm +0 -42
  1182. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/set.pm +0 -64
  1183. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm +0 -26
  1184. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shift.pm +0 -47
  1185. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm +0 -24
  1186. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort.pm +0 -44
  1187. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm +0 -45
  1188. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/splice.pm +0 -72
  1189. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/uniq.pm +0 -24
  1190. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/unshift.pm +0 -36
  1191. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array.pm +0 -28
  1192. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/not.pm +0 -20
  1193. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/set.pm +0 -24
  1194. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm +0 -29
  1195. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/unset.pm +0 -24
  1196. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute.pm +0 -20
  1197. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm +0 -20
  1198. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Collection.pm +0 -167
  1199. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm +0 -24
  1200. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/dec.pm +0 -30
  1201. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/inc.pm +0 -30
  1202. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/reset.pm +0 -36
  1203. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/set.pm +0 -25
  1204. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm +0 -41
  1205. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm +0 -61
  1206. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +0 -37
  1207. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/count.pm +0 -22
  1208. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/defined.pm +0 -31
  1209. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/delete.pm +0 -46
  1210. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/elements.pm +0 -23
  1211. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/exists.pm +0 -31
  1212. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/get.pm +0 -35
  1213. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm +0 -22
  1214. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/keys.pm +0 -22
  1215. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/kv.pm +0 -23
  1216. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/set.pm +0 -99
  1217. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm +0 -26
  1218. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/values.pm +0 -22
  1219. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash.pm +0 -28
  1220. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/abs.pm +0 -29
  1221. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/add.pm +0 -31
  1222. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/div.pm +0 -31
  1223. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mod.pm +0 -31
  1224. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mul.pm +0 -31
  1225. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/set.pm +0 -25
  1226. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/sub.pm +0 -31
  1227. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Reader.pm +0 -47
  1228. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/append.pm +0 -31
  1229. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chomp.pm +0 -40
  1230. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chop.pm +0 -40
  1231. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/clear.pm +0 -24
  1232. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/inc.pm +0 -33
  1233. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/length.pm +0 -22
  1234. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/match.pm +0 -42
  1235. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/prepend.pm +0 -31
  1236. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/replace.pm +0 -69
  1237. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/substr.pm +0 -123
  1238. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Writer.pm +0 -174
  1239. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native.pm +0 -157
  1240. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor.pm +0 -208
  1241. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Augmented.pm +0 -171
  1242. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Constructor.pm +0 -145
  1243. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Delegation.pm +0 -307
  1244. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Destructor.pm +0 -251
  1245. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Meta.pm +0 -112
  1246. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Overridden.pm +0 -160
  1247. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method.pm +0 -100
  1248. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Mixin/AttributeCore.pm +0 -185
  1249. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Object/Trait.pm +0 -107
  1250. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/RoleSummation.pm +0 -440
  1251. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToClass.pm +0 -314
  1252. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToInstance.pm +0 -142
  1253. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToRole.pm +0 -283
  1254. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application.pm +0 -225
  1255. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Attribute.pm +0 -259
  1256. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Composite.pm +0 -320
  1257. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Conflicting.pm +0 -135
  1258. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Required.pm +0 -127
  1259. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method.pm +0 -101
  1260. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role.pm +0 -1059
  1261. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion/Union.pm +0 -141
  1262. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion.pm +0 -239
  1263. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Class.pm +0 -261
  1264. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/DuckType.pm +0 -217
  1265. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Enum.pm +0 -235
  1266. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterizable.pm +0 -200
  1267. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterized.pm +0 -188
  1268. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Registry.pm +0 -206
  1269. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Role.pm +0 -235
  1270. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Union.pm +0 -346
  1271. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint.pm +0 -607
  1272. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Object.pm +0 -271
  1273. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Role.pm +0 -377
  1274. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Spec/Role.pod +0 -397
  1275. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Unsweetened.pod +0 -77
  1276. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/MetaRole.pm +0 -329
  1277. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints/Builtins.pm +0 -305
  1278. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints.pm +0 -1443
  1279. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util.pm +0 -725
  1280. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose.pm +0 -1268
  1281. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/PPI/XS.pm +0 -137
  1282. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Package/Stash/XS.pm +0 -110
  1283. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util/PP.pm +0 -276
  1284. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util.pm +0 -486
  1285. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/Util/Numeric.pm +0 -137
  1286. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Test/Moose.pm +0 -228
  1287. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Want.pm +0 -742
  1288. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Attribute/Util/.packlist +0 -12
  1289. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Capture/Tiny/.packlist +0 -2
  1290. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/.packlist +0 -3
  1291. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/.packlist +0 -3
  1292. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/XS.so +0 -0
  1293. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/Cmp/.packlist +0 -6
  1294. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/OptList/.packlist +0 -2
  1295. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/.packlist +0 -3
  1296. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/UUID.so +0 -0
  1297. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/GlobalDestruction/.packlist +0 -2
  1298. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/OverloadInfo/.packlist +0 -2
  1299. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/StackTrace/.packlist +0 -4
  1300. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Eval/Closure/.packlist +0 -2
  1301. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Config/.packlist +0 -4
  1302. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Helpers/.packlist +0 -8
  1303. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/InstallPaths/.packlist +0 -2
  1304. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/CheckLib/.packlist +0 -2
  1305. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/.packlist +0 -98
  1306. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Constant/Constant.txt +0 -1
  1307. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Memory/Memory.txt +0 -1
  1308. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Platypus.so +0 -0
  1309. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Record/Meta/Meta.txt +0 -1
  1310. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/File/Which/.packlist +0 -2
  1311. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/IPC/System/Simple/.packlist +0 -2
  1312. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MRO/Compat/.packlist +0 -2
  1313. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Implementation/.packlist +0 -2
  1314. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/.packlist +0 -2
  1315. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/Conflicts/.packlist +0 -2
  1316. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/.packlist +0 -574
  1317. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/Moose.so +0 -0
  1318. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Nice/Try/.packlist +0 -2
  1319. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/.packlist +0 -186
  1320. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/.packlist +0 -3
  1321. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/XS.so +0 -0
  1322. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/DeprecationManager/.packlist +0 -2
  1323. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/.packlist +0 -6
  1324. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/.packlist +0 -3
  1325. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/XS.so +0 -0
  1326. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/.packlist +0 -5
  1327. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/Util.so +0 -0
  1328. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Path/Tiny/.packlist +0 -2
  1329. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Safe/Isa/.packlist +0 -2
  1330. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/.packlist +0 -3
  1331. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/Numeric.so +0 -0
  1332. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scope/Guard/.packlist +0 -2
  1333. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/.packlist +0 -8
  1334. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/Progressive/.packlist +0 -2
  1335. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Install/.packlist +0 -2
  1336. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Task/Weaken/.packlist +0 -2
  1337. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Fatal/.packlist +0 -2
  1338. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Try/Tiny/.packlist +0 -2
  1339. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/.packlist +0 -3
  1340. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/Want.so +0 -0
  1341. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/YAML/PP/.packlist +0 -55
  1342. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/aliased/.packlist +0 -2
  1343. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/.packlist +0 -5
  1344. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/autobox.so +0 -0
  1345. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox/universal.pm +0 -13
  1346. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pm +0 -404
  1347. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pod +0 -709
  1348. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/metaclass.pm +0 -155
  1349. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/oose.pm +0 -137
  1350. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod +0 -968
  1351. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1352. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1353. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1354. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1355. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1356. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1357. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1358. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1359. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1360. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1361. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1362. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1363. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1364. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1365. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1366. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1367. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1368. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1369. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1370. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1371. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1372. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1373. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1374. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1375. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1376. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1377. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1378. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1379. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1380. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1381. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1382. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1383. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1384. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1385. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1386. package/Binaries/Perl/Linux/X64/lib/Javonet/Javonet.pm +0 -82
  1387. package/Binaries/Perl/Linux/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1388. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1389. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1390. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1391. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1392. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1393. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1394. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1395. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1396. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1397. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1398. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1399. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1400. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1401. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1402. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1403. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1404. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1405. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events +0 -62
  1406. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events.bat +0 -79
  1407. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight +0 -54
  1408. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight.bat +0 -71
  1409. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load +0 -155
  1410. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump +0 -314
  1411. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump.bat +0 -331
  1412. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load.bat +0 -172
  1413. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit +0 -123
  1414. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit.bat +0 -140
  1415. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  1416. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  1417. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  1418. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  1419. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  1420. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  1421. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  1422. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  1423. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  1424. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  1425. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/install.json +0 -1
  1426. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  1427. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/install.json +0 -1
  1428. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  1429. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/install.json +0 -1
  1430. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  1431. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/install.json +0 -1
  1432. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/MYMETA.json +0 -1115
  1433. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/install.json +0 -1
  1434. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  1435. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/install.json +0 -1
  1436. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  1437. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/install.json +0 -1
  1438. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  1439. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  1440. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  1441. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/install.json +0 -1
  1442. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/MYMETA.json +0 -40
  1443. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/install.json +0 -1
  1444. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  1445. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/install.json +0 -1
  1446. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  1447. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/install.json +0 -1
  1448. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Data/UUID.pm +0 -158
  1449. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/PPI/XS.pm +0 -137
  1450. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Scalar/Util/Numeric.pm +0 -137
  1451. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Want.pm +0 -742
  1452. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Attribute/Util/.packlist +0 -6
  1453. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/Cmp/.packlist +0 -3
  1454. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/.packlist +0 -2
  1455. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/UUID.xs.dll +0 -0
  1456. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Nice/Try/.packlist +0 -1
  1457. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/.packlist +0 -95
  1458. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/.packlist +0 -2
  1459. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/XS.xs.dll +0 -0
  1460. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Safe/Isa/.packlist +0 -1
  1461. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/.packlist +0 -2
  1462. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/Numeric.xs.dll +0 -0
  1463. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Test/Fatal/.packlist +0 -1
  1464. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/.packlist +0 -2
  1465. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/Want.xs.dll +0 -0
  1466. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/YAML/PP/.packlist +0 -39
  1467. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/.packlist +0 -4
  1468. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/autobox.xs.dll +0 -0
  1469. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox/universal.pm +0 -13
  1470. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pm +0 -404
  1471. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pod +0 -709
  1472. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/perllocal.pod +0 -264
  1473. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  1474. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  1475. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  1476. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  1477. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  1478. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  1479. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  1480. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  1481. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  1482. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  1483. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  1484. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  1485. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  1486. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  1487. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  1488. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  1489. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  1490. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  1491. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  1492. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  1493. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  1494. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  1495. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  1496. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  1497. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  1498. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  1499. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  1500. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  1501. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  1502. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  1503. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  1504. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  1505. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  1506. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  1507. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  1508. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  1509. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  1510. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  1511. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  1512. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  1513. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  1514. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  1515. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  1516. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  1517. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  1518. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  1519. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  1520. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  1521. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  1522. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  1523. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  1524. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  1525. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  1526. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  1527. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  1528. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  1529. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  1530. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  1531. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  1532. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  1533. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  1534. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  1535. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  1536. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  1537. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  1538. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  1539. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  1540. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  1541. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  1542. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  1543. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  1544. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  1545. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  1546. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  1547. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  1548. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  1549. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  1550. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  1551. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  1552. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  1553. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  1554. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  1555. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  1556. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  1557. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  1558. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  1559. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  1560. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  1561. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  1562. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  1563. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  1564. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  1565. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  1566. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  1567. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  1568. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI.pm +0 -822
  1569. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  1570. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  1571. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  1572. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  1573. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  1574. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  1575. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  1576. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  1577. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  1578. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  1579. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  1580. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  1581. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  1582. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  1583. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  1584. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  1585. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  1586. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  1587. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  1588. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  1589. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  1590. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  1591. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  1592. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  1593. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  1594. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  1595. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  1596. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  1597. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  1598. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  1599. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  1600. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1601. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1602. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1603. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1604. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1605. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1606. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1607. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1608. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1609. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1610. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1611. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1612. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1613. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1614. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1615. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1616. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1617. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1618. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1619. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1620. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1621. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1622. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1623. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1624. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1625. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1626. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1627. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1628. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1629. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1630. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1631. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1632. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1633. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1634. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1635. package/Binaries/Perl/Windows/X64/lib/Javonet/Javonet.pm +0 -82
  1636. package/Binaries/Perl/Windows/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1637. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1638. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1639. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1640. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1641. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1642. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1643. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1644. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1645. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1646. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1647. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1648. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1649. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1650. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1651. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1652. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1653. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1654. package/Binaries/Python/javonet/core/__init__.py +0 -0
  1655. package/Binaries/Python/javonet/core/callback/__init__.py +0 -0
  1656. package/Binaries/Python/javonet/core/callback/callbackFunc.py +0 -7
  1657. package/Binaries/Python/javonet/core/delegateCache/DelegatesCache.py +0 -39
  1658. package/Binaries/Python/javonet/core/delegateCache/__init__.py +0 -0
  1659. package/Binaries/Python/javonet/core/handler/AbstractCommandHandler.py +0 -20
  1660. package/Binaries/Python/javonet/core/handler/AbstractHandler.py +0 -3
  1661. package/Binaries/Python/javonet/core/handler/ArrayGetItemHandler.py +0 -27
  1662. package/Binaries/Python/javonet/core/handler/ArrayGetRankHandler.py +0 -25
  1663. package/Binaries/Python/javonet/core/handler/ArrayGetSizeHandler.py +0 -24
  1664. package/Binaries/Python/javonet/core/handler/ArrayHandler.py +0 -13
  1665. package/Binaries/Python/javonet/core/handler/ArraySetItemHandler.py +0 -39
  1666. package/Binaries/Python/javonet/core/handler/CastingHandler.py +0 -6
  1667. package/Binaries/Python/javonet/core/handler/CreateClassInstanceHandler.py +0 -22
  1668. package/Binaries/Python/javonet/core/handler/DestructReferenceHandler.py +0 -13
  1669. package/Binaries/Python/javonet/core/handler/EnableNamespaceHandler.py +0 -28
  1670. package/Binaries/Python/javonet/core/handler/EnableTypeHandler.py +0 -28
  1671. package/Binaries/Python/javonet/core/handler/GetEnumItemHandler.py +0 -29
  1672. package/Binaries/Python/javonet/core/handler/GetEnumNameHandler.py +0 -22
  1673. package/Binaries/Python/javonet/core/handler/GetEnumValueHandler.py +0 -22
  1674. package/Binaries/Python/javonet/core/handler/GetInstanceFieldHandler.py +0 -27
  1675. package/Binaries/Python/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -29
  1676. package/Binaries/Python/javonet/core/handler/GetStaticFieldHandler.py +0 -27
  1677. package/Binaries/Python/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -31
  1678. package/Binaries/Python/javonet/core/handler/GetTypeHandler.py +0 -85
  1679. package/Binaries/Python/javonet/core/handler/Handler.py +0 -100
  1680. package/Binaries/Python/javonet/core/handler/HandlerDictionary.py +0 -8
  1681. package/Binaries/Python/javonet/core/handler/InvokeDelegateHandler.py +0 -27
  1682. package/Binaries/Python/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -46
  1683. package/Binaries/Python/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -31
  1684. package/Binaries/Python/javonet/core/handler/InvokeStaticMethodHandler.py +0 -33
  1685. package/Binaries/Python/javonet/core/handler/LoadLibraryHandler.py +0 -40
  1686. package/Binaries/Python/javonet/core/handler/PassDelegateHandler.py +0 -21
  1687. package/Binaries/Python/javonet/core/handler/ResolveInstanceHandler.py +0 -19
  1688. package/Binaries/Python/javonet/core/handler/SetInstanceFieldHandler.py +0 -29
  1689. package/Binaries/Python/javonet/core/handler/SetStaticFieldHandler.py +0 -29
  1690. package/Binaries/Python/javonet/core/handler/ValueHandler.py +0 -6
  1691. package/Binaries/Python/javonet/core/handler/__init__.py +0 -0
  1692. package/Binaries/Python/javonet/core/interpreter/Interpreter.py +0 -55
  1693. package/Binaries/Python/javonet/core/interpreter/__init__.py +0 -0
  1694. package/Binaries/Python/javonet/core/namespaceCache/NamespaceCache.py +0 -44
  1695. package/Binaries/Python/javonet/core/namespaceCache/__init__.py +0 -0
  1696. package/Binaries/Python/javonet/core/protocol/CommandDeserializer.py +0 -164
  1697. package/Binaries/Python/javonet/core/protocol/CommandSerializer.py +0 -29
  1698. package/Binaries/Python/javonet/core/protocol/TypeDeserializer.py +0 -64
  1699. package/Binaries/Python/javonet/core/protocol/TypeSerializer.py +0 -96
  1700. package/Binaries/Python/javonet/core/protocol/__init__.py +0 -0
  1701. package/Binaries/Python/javonet/core/receiver/Receiver.py +0 -42
  1702. package/Binaries/Python/javonet/core/receiver/__init__.py +0 -0
  1703. package/Binaries/Python/javonet/core/referenceCache/ReferencesCache.py +0 -39
  1704. package/Binaries/Python/javonet/core/referenceCache/__init__.py +0 -0
  1705. package/Binaries/Python/javonet/core/transmitter/Transmitter.py +0 -20
  1706. package/Binaries/Python/javonet/core/transmitter/TransmitterWrapper.py +0 -110
  1707. package/Binaries/Python/javonet/core/transmitter/__init__.py +0 -0
  1708. package/Binaries/Python/javonet/core/typeCache/TypeCache.py +0 -44
  1709. package/Binaries/Python/javonet/core/typeCache/__init__.py +0 -0
  1710. package/Binaries/Python/javonet/core/webSocketClient/WebSocketClient.py +0 -32
  1711. package/Binaries/Python/javonet/utils/Command.py +0 -90
  1712. package/Binaries/Python/javonet/utils/CommandType.py +0 -46
  1713. package/Binaries/Python/javonet/utils/ConnectionType.py +0 -7
  1714. package/Binaries/Python/javonet/utils/ExceptionType.py +0 -55
  1715. package/Binaries/Python/javonet/utils/RuntimeLogger.py +0 -30
  1716. package/Binaries/Python/javonet/utils/RuntimeName.py +0 -18
  1717. package/Binaries/Python/javonet/utils/RuntimeNameHandler.py +0 -30
  1718. package/Binaries/Python/javonet/utils/StringEncodingMode.py +0 -8
  1719. package/Binaries/Python/javonet/utils/Type.py +0 -16
  1720. package/Binaries/Python/javonet/utils/UtilsConst.py +0 -42
  1721. package/Binaries/Python/javonet/utils/__init__.py +0 -0
  1722. package/Binaries/Python/javonet/utils/connectionData/IConnectionData.py +0 -18
  1723. package/Binaries/Python/javonet/utils/connectionData/InMemoryConnectionData.py +0 -23
  1724. package/Binaries/Python/javonet/utils/connectionData/TcpConnectionData.py +0 -67
  1725. package/Binaries/Python/javonet/utils/connectionData/WsConnectionData.py +0 -30
  1726. package/Binaries/Python/javonet/utils/connectionData/__init__.py +0 -0
  1727. package/Binaries/Python/javonet/utils/exception/ExceptionSerializer.py +0 -66
  1728. package/Binaries/Python/javonet/utils/exception/ExceptionThrower.py +0 -81
  1729. package/Binaries/Python/javonet/utils/exception/JavonetException.py +0 -10
  1730. package/Binaries/Python/javonet/utils/exception/__init__.py +0 -0
  1731. package/Binaries/Python/javonet/utils/messageHelper/MessageHelper.py +0 -86
  1732. package/Binaries/Python/javonet/utils/messageHelper/__init__.py +0 -0
  1733. package/Binaries/Python2/javonet/__init__.py +0 -32
  1734. package/Binaries/Python2/javonet/core/__init__.py +0 -1
  1735. package/Binaries/Python2/javonet/core/callback/__init__.py +0 -4
  1736. package/Binaries/Python2/javonet/core/callback/callbackFunc.py +0 -20
  1737. package/Binaries/Python2/javonet/core/delegateCache/DelegatesCache.py +0 -73
  1738. package/Binaries/Python2/javonet/core/delegateCache/__init__.py +0 -4
  1739. package/Binaries/Python2/javonet/core/handler/AbstractCommandHandler.py +0 -45
  1740. package/Binaries/Python2/javonet/core/handler/AbstractHandler.py +0 -9
  1741. package/Binaries/Python2/javonet/core/handler/ArrayGetItemHandler.py +0 -51
  1742. package/Binaries/Python2/javonet/core/handler/ArrayGetRankHandler.py +0 -41
  1743. package/Binaries/Python2/javonet/core/handler/ArrayGetSizeHandler.py +0 -45
  1744. package/Binaries/Python2/javonet/core/handler/ArrayHandler.py +0 -25
  1745. package/Binaries/Python2/javonet/core/handler/ArraySetItemHandler.py +0 -60
  1746. package/Binaries/Python2/javonet/core/handler/CastingHandler.py +0 -11
  1747. package/Binaries/Python2/javonet/core/handler/CreateClassInstanceHandler.py +0 -39
  1748. package/Binaries/Python2/javonet/core/handler/DestructReferenceHandler.py +0 -25
  1749. package/Binaries/Python2/javonet/core/handler/EnableNamespaceHandler.py +0 -43
  1750. package/Binaries/Python2/javonet/core/handler/EnableTypeHandler.py +0 -43
  1751. package/Binaries/Python2/javonet/core/handler/GetEnumItemHandler.py +0 -54
  1752. package/Binaries/Python2/javonet/core/handler/GetEnumNameHandler.py +0 -44
  1753. package/Binaries/Python2/javonet/core/handler/GetEnumValueHandler.py +0 -36
  1754. package/Binaries/Python2/javonet/core/handler/GetInstanceFieldHandler.py +0 -40
  1755. package/Binaries/Python2/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -43
  1756. package/Binaries/Python2/javonet/core/handler/GetStaticFieldHandler.py +0 -41
  1757. package/Binaries/Python2/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -43
  1758. package/Binaries/Python2/javonet/core/handler/GetTypeHandler.py +0 -115
  1759. package/Binaries/Python2/javonet/core/handler/Handler.py +0 -152
  1760. package/Binaries/Python2/javonet/core/handler/HandlerDictionary.py +0 -23
  1761. package/Binaries/Python2/javonet/core/handler/InvokeDelegateHandler.py +0 -56
  1762. package/Binaries/Python2/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -78
  1763. package/Binaries/Python2/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -45
  1764. package/Binaries/Python2/javonet/core/handler/InvokeStaticMethodHandler.py +0 -45
  1765. package/Binaries/Python2/javonet/core/handler/LoadLibraryHandler.py +0 -62
  1766. package/Binaries/Python2/javonet/core/handler/PassDelegateHandler.py +0 -36
  1767. package/Binaries/Python2/javonet/core/handler/ResolveInstanceHandler.py +0 -33
  1768. package/Binaries/Python2/javonet/core/handler/SetInstanceFieldHandler.py +0 -42
  1769. package/Binaries/Python2/javonet/core/handler/SetStaticFieldHandler.py +0 -43
  1770. package/Binaries/Python2/javonet/core/handler/ValueHandler.py +0 -27
  1771. package/Binaries/Python2/javonet/core/handler/__init__.py +0 -1
  1772. package/Binaries/Python2/javonet/core/interpreter/Interpreter.py +0 -36
  1773. package/Binaries/Python2/javonet/core/interpreter/__init__.py +0 -0
  1774. package/Binaries/Python2/javonet/core/namespaceCache/NamespaceCache.py +0 -69
  1775. package/Binaries/Python2/javonet/core/namespaceCache/__init__.py +0 -4
  1776. package/Binaries/Python2/javonet/core/protocol/CommandDeserializer.py +0 -237
  1777. package/Binaries/Python2/javonet/core/protocol/CommandSerializer.py +0 -56
  1778. package/Binaries/Python2/javonet/core/protocol/TypeDeserializer.py +0 -154
  1779. package/Binaries/Python2/javonet/core/protocol/TypeSerializer.py +0 -187
  1780. package/Binaries/Python2/javonet/core/protocol/__init__.py +0 -0
  1781. package/Binaries/Python2/javonet/core/receiver/Receiver.py +0 -35
  1782. package/Binaries/Python2/javonet/core/receiver/__init__.py +0 -1
  1783. package/Binaries/Python2/javonet/core/referenceCache/ReferencesCache.py +0 -57
  1784. package/Binaries/Python2/javonet/core/referenceCache/__init__.py +0 -0
  1785. package/Binaries/Python2/javonet/core/transmitter/Transmitter.py +0 -59
  1786. package/Binaries/Python2/javonet/core/transmitter/TransmitterWrapper.py +0 -102
  1787. package/Binaries/Python2/javonet/core/transmitter/__init__.py +0 -0
  1788. package/Binaries/Python2/javonet/core/typeCache/TypeCache.py +0 -69
  1789. package/Binaries/Python2/javonet/core/typeCache/__init__.py +0 -4
  1790. package/Binaries/Python2/javonet/core/webSocketClient/WebSocketClient.py +0 -39
  1791. package/Binaries/Python2/javonet/core/webSocketClient/__init__.py +0 -0
  1792. package/Binaries/Python2/javonet/utils/Command.py +0 -170
  1793. package/Binaries/Python2/javonet/utils/CommandType.py +0 -154
  1794. package/Binaries/Python2/javonet/utils/ConnectionType.py +0 -36
  1795. package/Binaries/Python2/javonet/utils/ExceptionType.py +0 -95
  1796. package/Binaries/Python2/javonet/utils/PythonStringBuilder.py +0 -38
  1797. package/Binaries/Python2/javonet/utils/RuntimeLogger.py +0 -50
  1798. package/Binaries/Python2/javonet/utils/RuntimeName.py +0 -120
  1799. package/Binaries/Python2/javonet/utils/RuntimeNameHandler.py +0 -47
  1800. package/Binaries/Python2/javonet/utils/StringEncodingMode.py +0 -38
  1801. package/Binaries/Python2/javonet/utils/Type.py +0 -68
  1802. package/Binaries/Python2/javonet/utils/UtilsConst.py +0 -38
  1803. package/Binaries/Python2/javonet/utils/__init__.py +0 -4
  1804. package/Binaries/Python2/javonet/utils/connectionData/IConnectionData.py +0 -45
  1805. package/Binaries/Python2/javonet/utils/connectionData/InMemoryConnectionData.py +0 -32
  1806. package/Binaries/Python2/javonet/utils/connectionData/TcpConnectionData.py +0 -142
  1807. package/Binaries/Python2/javonet/utils/connectionData/WsConnectionData.py +0 -75
  1808. package/Binaries/Python2/javonet/utils/connectionData/__init__.py +0 -4
  1809. package/Binaries/Python2/javonet/utils/exception/ExceptionSerializer.py +0 -94
  1810. package/Binaries/Python2/javonet/utils/exception/ExceptionThrower.py +0 -85
  1811. package/Binaries/Python2/javonet/utils/exception/JavonetException.py +0 -31
  1812. package/Binaries/Python2/javonet/utils/exception/__init__.py +0 -4
  1813. package/Binaries/Ruby/Linux/X64/core/handler/abstract_command_handler.rb +0 -24
  1814. package/Binaries/Ruby/Linux/X64/core/handler/abstract_handler.rb +0 -5
  1815. package/Binaries/Ruby/Linux/X64/core/handler/array_get_item_handler.rb +0 -47
  1816. package/Binaries/Ruby/Linux/X64/core/handler/array_get_rank_handler.rb +0 -23
  1817. package/Binaries/Ruby/Linux/X64/core/handler/array_get_size_handler.rb +0 -37
  1818. package/Binaries/Ruby/Linux/X64/core/handler/array_handler.rb +0 -12
  1819. package/Binaries/Ruby/Linux/X64/core/handler/array_set_item_handler.rb +0 -47
  1820. package/Binaries/Ruby/Linux/X64/core/handler/casting_handler.rb +0 -11
  1821. package/Binaries/Ruby/Linux/X64/core/handler/create_class_instance_handler.rb +0 -34
  1822. package/Binaries/Ruby/Linux/X64/core/handler/destruct_reference_handler.rb +0 -21
  1823. package/Binaries/Ruby/Linux/X64/core/handler/enable_namespace_handler.rb +0 -31
  1824. package/Binaries/Ruby/Linux/X64/core/handler/enable_type_handler.rb +0 -32
  1825. package/Binaries/Ruby/Linux/X64/core/handler/get_instance_field_handler.rb +0 -34
  1826. package/Binaries/Ruby/Linux/X64/core/handler/get_static_field_handler.rb +0 -34
  1827. package/Binaries/Ruby/Linux/X64/core/handler/get_type_handler.rb +0 -71
  1828. package/Binaries/Ruby/Linux/X64/core/handler/handler.rb +0 -111
  1829. package/Binaries/Ruby/Linux/X64/core/handler/handler_dictionary.rb +0 -8
  1830. package/Binaries/Ruby/Linux/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1831. package/Binaries/Ruby/Linux/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1832. package/Binaries/Ruby/Linux/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1833. package/Binaries/Ruby/Linux/X64/core/handler/load_library_handler.rb +0 -33
  1834. package/Binaries/Ruby/Linux/X64/core/handler/resolve_instance_handler.rb +0 -24
  1835. package/Binaries/Ruby/Linux/X64/core/handler/set_instance_field_handler.rb +0 -35
  1836. package/Binaries/Ruby/Linux/X64/core/handler/set_static_field_handler.rb +0 -31
  1837. package/Binaries/Ruby/Linux/X64/core/handler/value_handler.rb +0 -7
  1838. package/Binaries/Ruby/Linux/X64/core/interpreter/interpreter.rb +0 -25
  1839. package/Binaries/Ruby/Linux/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1840. package/Binaries/Ruby/Linux/X64/core/protocol/command_deserializer.rb +0 -182
  1841. package/Binaries/Ruby/Linux/X64/core/protocol/command_serializer.rb +0 -35
  1842. package/Binaries/Ruby/Linux/X64/core/protocol/type_deserializer.rb +0 -126
  1843. package/Binaries/Ruby/Linux/X64/core/protocol/type_serializer.rb +0 -259
  1844. package/Binaries/Ruby/Linux/X64/core/receiver/receiver.rb +0 -22
  1845. package/Binaries/Ruby/Linux/X64/core/reference_cache/references_cache.rb +0 -39
  1846. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter.rb +0 -58
  1847. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1848. package/Binaries/Ruby/Linux/X64/core/type_cache/type_cache.rb +0 -42
  1849. package/Binaries/Ruby/Linux/X64/utils/command.rb +0 -93
  1850. package/Binaries/Ruby/Linux/X64/utils/command_type.rb +0 -135
  1851. package/Binaries/Ruby/Linux/X64/utils/connection_type.rb +0 -4
  1852. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_serializer.rb +0 -93
  1853. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_thrower.rb +0 -65
  1854. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_type.rb +0 -10
  1855. package/Binaries/Ruby/Linux/X64/utils/runtime_logger.rb +0 -30
  1856. package/Binaries/Ruby/Linux/X64/utils/runtime_name.rb +0 -13
  1857. package/Binaries/Ruby/Linux/X64/utils/runtime_name_handler.rb +0 -40
  1858. package/Binaries/Ruby/Linux/X64/utils/string_encoding_mode.rb +0 -6
  1859. package/Binaries/Ruby/Linux/X64/utils/tcp_connection_data.rb +0 -37
  1860. package/Binaries/Ruby/Linux/X64/utils/type.rb +0 -14
  1861. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_command_handler.rb +0 -24
  1862. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_handler.rb +0 -5
  1863. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_item_handler.rb +0 -47
  1864. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_rank_handler.rb +0 -23
  1865. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_size_handler.rb +0 -37
  1866. package/Binaries/Ruby/MacOs/X64/core/handler/array_handler.rb +0 -12
  1867. package/Binaries/Ruby/MacOs/X64/core/handler/array_set_item_handler.rb +0 -47
  1868. package/Binaries/Ruby/MacOs/X64/core/handler/casting_handler.rb +0 -11
  1869. package/Binaries/Ruby/MacOs/X64/core/handler/create_class_instance_handler.rb +0 -34
  1870. package/Binaries/Ruby/MacOs/X64/core/handler/destruct_reference_handler.rb +0 -21
  1871. package/Binaries/Ruby/MacOs/X64/core/handler/enable_namespace_handler.rb +0 -31
  1872. package/Binaries/Ruby/MacOs/X64/core/handler/enable_type_handler.rb +0 -32
  1873. package/Binaries/Ruby/MacOs/X64/core/handler/get_instance_field_handler.rb +0 -34
  1874. package/Binaries/Ruby/MacOs/X64/core/handler/get_static_field_handler.rb +0 -34
  1875. package/Binaries/Ruby/MacOs/X64/core/handler/get_type_handler.rb +0 -71
  1876. package/Binaries/Ruby/MacOs/X64/core/handler/handler.rb +0 -111
  1877. package/Binaries/Ruby/MacOs/X64/core/handler/handler_dictionary.rb +0 -8
  1878. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1879. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1880. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1881. package/Binaries/Ruby/MacOs/X64/core/handler/load_library_handler.rb +0 -33
  1882. package/Binaries/Ruby/MacOs/X64/core/handler/resolve_instance_handler.rb +0 -24
  1883. package/Binaries/Ruby/MacOs/X64/core/handler/set_instance_field_handler.rb +0 -35
  1884. package/Binaries/Ruby/MacOs/X64/core/handler/set_static_field_handler.rb +0 -31
  1885. package/Binaries/Ruby/MacOs/X64/core/handler/value_handler.rb +0 -7
  1886. package/Binaries/Ruby/MacOs/X64/core/interpreter/interpreter.rb +0 -25
  1887. package/Binaries/Ruby/MacOs/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1888. package/Binaries/Ruby/MacOs/X64/core/protocol/command_deserializer.rb +0 -182
  1889. package/Binaries/Ruby/MacOs/X64/core/protocol/command_serializer.rb +0 -35
  1890. package/Binaries/Ruby/MacOs/X64/core/protocol/type_deserializer.rb +0 -126
  1891. package/Binaries/Ruby/MacOs/X64/core/protocol/type_serializer.rb +0 -259
  1892. package/Binaries/Ruby/MacOs/X64/core/receiver/receiver.rb +0 -22
  1893. package/Binaries/Ruby/MacOs/X64/core/reference_cache/references_cache.rb +0 -39
  1894. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter.rb +0 -58
  1895. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1896. package/Binaries/Ruby/MacOs/X64/core/type_cache/type_cache.rb +0 -42
  1897. package/Binaries/Ruby/MacOs/X64/utils/command.rb +0 -93
  1898. package/Binaries/Ruby/MacOs/X64/utils/command_type.rb +0 -135
  1899. package/Binaries/Ruby/MacOs/X64/utils/connection_type.rb +0 -4
  1900. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_serializer.rb +0 -93
  1901. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_thrower.rb +0 -65
  1902. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_type.rb +0 -10
  1903. package/Binaries/Ruby/MacOs/X64/utils/runtime_logger.rb +0 -30
  1904. package/Binaries/Ruby/MacOs/X64/utils/runtime_name.rb +0 -13
  1905. package/Binaries/Ruby/MacOs/X64/utils/runtime_name_handler.rb +0 -40
  1906. package/Binaries/Ruby/MacOs/X64/utils/string_encoding_mode.rb +0 -6
  1907. package/Binaries/Ruby/MacOs/X64/utils/tcp_connection_data.rb +0 -37
  1908. package/Binaries/Ruby/MacOs/X64/utils/type.rb +0 -14
  1909. package/Binaries/Ruby/Windows/X64/core/handler/abstract_command_handler.rb +0 -24
  1910. package/Binaries/Ruby/Windows/X64/core/handler/abstract_handler.rb +0 -5
  1911. package/Binaries/Ruby/Windows/X64/core/handler/array_get_item_handler.rb +0 -47
  1912. package/Binaries/Ruby/Windows/X64/core/handler/array_get_rank_handler.rb +0 -23
  1913. package/Binaries/Ruby/Windows/X64/core/handler/array_get_size_handler.rb +0 -37
  1914. package/Binaries/Ruby/Windows/X64/core/handler/array_handler.rb +0 -12
  1915. package/Binaries/Ruby/Windows/X64/core/handler/array_set_item_handler.rb +0 -47
  1916. package/Binaries/Ruby/Windows/X64/core/handler/casting_handler.rb +0 -11
  1917. package/Binaries/Ruby/Windows/X64/core/handler/create_class_instance_handler.rb +0 -34
  1918. package/Binaries/Ruby/Windows/X64/core/handler/destruct_reference_handler.rb +0 -21
  1919. package/Binaries/Ruby/Windows/X64/core/handler/enable_namespace_handler.rb +0 -31
  1920. package/Binaries/Ruby/Windows/X64/core/handler/enable_type_handler.rb +0 -32
  1921. package/Binaries/Ruby/Windows/X64/core/handler/get_instance_field_handler.rb +0 -34
  1922. package/Binaries/Ruby/Windows/X64/core/handler/get_static_field_handler.rb +0 -34
  1923. package/Binaries/Ruby/Windows/X64/core/handler/get_type_handler.rb +0 -71
  1924. package/Binaries/Ruby/Windows/X64/core/handler/handler.rb +0 -111
  1925. package/Binaries/Ruby/Windows/X64/core/handler/handler_dictionary.rb +0 -8
  1926. package/Binaries/Ruby/Windows/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1927. package/Binaries/Ruby/Windows/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1928. package/Binaries/Ruby/Windows/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1929. package/Binaries/Ruby/Windows/X64/core/handler/load_library_handler.rb +0 -33
  1930. package/Binaries/Ruby/Windows/X64/core/handler/resolve_instance_handler.rb +0 -24
  1931. package/Binaries/Ruby/Windows/X64/core/handler/set_instance_field_handler.rb +0 -35
  1932. package/Binaries/Ruby/Windows/X64/core/handler/set_static_field_handler.rb +0 -31
  1933. package/Binaries/Ruby/Windows/X64/core/handler/value_handler.rb +0 -7
  1934. package/Binaries/Ruby/Windows/X64/core/interpreter/interpreter.rb +0 -25
  1935. package/Binaries/Ruby/Windows/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1936. package/Binaries/Ruby/Windows/X64/core/protocol/command_deserializer.rb +0 -182
  1937. package/Binaries/Ruby/Windows/X64/core/protocol/command_serializer.rb +0 -35
  1938. package/Binaries/Ruby/Windows/X64/core/protocol/type_deserializer.rb +0 -126
  1939. package/Binaries/Ruby/Windows/X64/core/protocol/type_serializer.rb +0 -259
  1940. package/Binaries/Ruby/Windows/X64/core/receiver/receiver.rb +0 -22
  1941. package/Binaries/Ruby/Windows/X64/core/reference_cache/references_cache.rb +0 -39
  1942. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter.rb +0 -58
  1943. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1944. package/Binaries/Ruby/Windows/X64/core/type_cache/type_cache.rb +0 -42
  1945. package/Binaries/Ruby/Windows/X64/utils/command.rb +0 -93
  1946. package/Binaries/Ruby/Windows/X64/utils/command_type.rb +0 -135
  1947. package/Binaries/Ruby/Windows/X64/utils/connection_type.rb +0 -4
  1948. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_serializer.rb +0 -93
  1949. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_thrower.rb +0 -65
  1950. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_type.rb +0 -10
  1951. package/Binaries/Ruby/Windows/X64/utils/runtime_logger.rb +0 -30
  1952. package/Binaries/Ruby/Windows/X64/utils/runtime_name.rb +0 -13
  1953. package/Binaries/Ruby/Windows/X64/utils/runtime_name_handler.rb +0 -40
  1954. package/Binaries/Ruby/Windows/X64/utils/string_encoding_mode.rb +0 -6
  1955. package/Binaries/Ruby/Windows/X64/utils/tcp_connection_data.rb +0 -37
  1956. package/Binaries/Ruby/Windows/X64/utils/type.rb +0 -14
  1957. package/Binaries/version.txt +0 -1
  1958. package/addon/JavonetNodejsRuntimeAddon.cpp +0 -299
  1959. package/addon/JavonetNodejsRuntimeAddon.h +0 -70
  1960. package/binding.gyp +0 -8
  1961. package/dist/Javonet.d.ts +0 -4858
  1962. package/dist/index.js +0 -66
  1963. package/dist/lib/core/delegatesCache/DelegatesCache.js +0 -35
  1964. package/dist/lib/core/handler/AbstractHandler.js +0 -41
  1965. package/dist/lib/core/handler/ArrayGetItemHandler.js +0 -38
  1966. package/dist/lib/core/handler/ArrayGetRankHandler.js +0 -28
  1967. package/dist/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  1968. package/dist/lib/core/handler/ArrayHandler.js +0 -18
  1969. package/dist/lib/core/handler/ArraySetItemHandler.js +0 -43
  1970. package/dist/lib/core/handler/CastingHandler.js +0 -10
  1971. package/dist/lib/core/handler/ConvertTypeHandler.js +0 -38
  1972. package/dist/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  1973. package/dist/lib/core/handler/DestructReferenceHandler.js +0 -19
  1974. package/dist/lib/core/handler/EnableNamespaceHandler.js +0 -34
  1975. package/dist/lib/core/handler/EnableTypeHandler.js +0 -35
  1976. package/dist/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  1977. package/dist/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  1978. package/dist/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  1979. package/dist/lib/core/handler/GetStaticFieldHandler.js +0 -36
  1980. package/dist/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  1981. package/dist/lib/core/handler/GetTypeHandler.js +0 -63
  1982. package/dist/lib/core/handler/Handler.js +0 -98
  1983. package/dist/lib/core/handler/InvokeDelegateHandler.js +0 -36
  1984. package/dist/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  1985. package/dist/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  1986. package/dist/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  1987. package/dist/lib/core/handler/LoadLibraryHandler.js +0 -48
  1988. package/dist/lib/core/handler/PassDelegateHandler.js +0 -157
  1989. package/dist/lib/core/handler/ResolveReferenceHandler.js +0 -13
  1990. package/dist/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  1991. package/dist/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  1992. package/dist/lib/core/handler/SetStaticFieldHandler.js +0 -33
  1993. package/dist/lib/core/handler/ValueHandler.js +0 -13
  1994. package/dist/lib/core/interpreter/Interpreter.js +0 -142
  1995. package/dist/lib/core/namespaceCache/NamespaceCache.js +0 -39
  1996. package/dist/lib/core/protocol/CommandDeserializer.js +0 -181
  1997. package/dist/lib/core/protocol/CommandSerializer.js +0 -50
  1998. package/dist/lib/core/protocol/TypeDeserializer.js +0 -83
  1999. package/dist/lib/core/protocol/TypeSerializer.js +0 -143
  2000. package/dist/lib/core/receiver/Receiver.js +0 -32
  2001. package/dist/lib/core/receiver/ReceiverNative.js +0 -13
  2002. package/dist/lib/core/referenceCache/ReferencesCache.js +0 -30
  2003. package/dist/lib/core/transmitter/Transmitter.js +0 -21
  2004. package/dist/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  2005. package/dist/lib/core/transmitter/TransmitterWrapper.js +0 -47
  2006. package/dist/lib/core/typeCache/TypeCache.js +0 -39
  2007. package/dist/lib/core/webSocketClient/WebSocketClient.js +0 -136
  2008. package/dist/lib/declarations.d.ts +0 -64
  2009. package/dist/lib/sdk/ConfigRuntimeFactory.js +0 -155
  2010. package/dist/lib/sdk/InvocationContext.js +0 -485
  2011. package/dist/lib/sdk/Javonet.js +0 -105
  2012. package/dist/lib/sdk/RuntimeContext.js +0 -300
  2013. package/dist/lib/sdk/RuntimeFactory.js +0 -87
  2014. package/dist/lib/sdk/tools/JsonFileResolver.js +0 -101
  2015. package/dist/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2016. package/dist/lib/utils/Command.js +0 -69
  2017. package/dist/lib/utils/CommandType.js +0 -47
  2018. package/dist/lib/utils/ConnectionType.js +0 -8
  2019. package/dist/lib/utils/CustomError.js +0 -8
  2020. package/dist/lib/utils/ExceptionType.js +0 -13
  2021. package/dist/lib/utils/RuntimeLogger.js +0 -30
  2022. package/dist/lib/utils/RuntimeName.js +0 -16
  2023. package/dist/lib/utils/RuntimeNameHandler.js +0 -38
  2024. package/dist/lib/utils/StringEncodingMode.js +0 -9
  2025. package/dist/lib/utils/Type.js +0 -17
  2026. package/dist/lib/utils/TypesConverter.js +0 -91
  2027. package/dist/lib/utils/connectionData/IConnectionData.js +0 -15
  2028. package/dist/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  2029. package/dist/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2030. package/dist/lib/utils/connectionData/WsConnectionData.js +0 -50
  2031. package/dist/lib/utils/exception/ExceptionSerializer.js +0 -64
  2032. package/dist/lib/utils/exception/ExceptionThrower.js +0 -95
  2033. package/dist/lib/utils/guid/generateGuid.js +0 -9
  2034. package/dist/lib/utils/uuid/REGEX.js +0 -2
  2035. package/dist/lib/utils/uuid/rng.js +0 -12
  2036. package/dist/lib/utils/uuid/stringify.js +0 -51
  2037. package/dist/lib/utils/uuid/v4.js +0 -27
  2038. package/dist/lib/utils/uuid/validate.js +0 -6
  2039. package/lib/sdk/tools/JsonFileResolver.js +0 -101
  2040. package/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2041. package/lib/utils/TypesConverter.js +0 -91
  2042. package/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2043. package/lib/utils/uuid/REGEX.js +0 -2
  2044. package/lib/utils/uuid/rng.js +0 -12
  2045. package/lib/utils/uuid/stringify.js +0 -51
  2046. package/lib/utils/uuid/v4.js +0 -27
  2047. package/lib/utils/uuid/validate.js +0 -6
@@ -1,822 +0,0 @@
1
- package PPI;
2
-
3
- # See POD at end for documentation
4
-
5
- use 5.006;
6
- use strict;
7
-
8
- # Set the version for CPAN
9
- our $VERSION = '1.281';
10
-
11
- our ( $XS_COMPATIBLE, @XS_EXCLUDE ) = ( '0.845' );
12
-
13
- # Load everything
14
- use PPI::Util ();
15
- use PPI::Exception ();
16
- use PPI::Element ();
17
- use PPI::Token ();
18
- use PPI::Statement ();
19
- use PPI::Structure ();
20
- use PPI::Document ();
21
- use PPI::Document::File ();
22
- use PPI::Document::Fragment ();
23
- use PPI::Document::Normalized ();
24
- use PPI::Normal ();
25
- use PPI::Tokenizer ();
26
- use PPI::Lexer ();
27
-
28
- # If it is installed, load in PPI::XS
29
- die
30
- if !$PPI::XS_DISABLE
31
- and !eval { require PPI::XS; 1 }
32
- and $@ !~ /^Can't locate .*? at /; # ignore failure to load if not installed
33
-
34
- 1;
35
-
36
- __END__
37
-
38
- =pod
39
-
40
- =head1 NAME
41
-
42
- PPI - Parse, Analyze and Manipulate Perl (without perl)
43
-
44
- =head1 SYNOPSIS
45
-
46
- use PPI;
47
-
48
- # Create a new empty document
49
- my $Document = PPI::Document->new;
50
-
51
- # Create a document from source
52
- $Document = PPI::Document->new(\'print "Hello World!\n"');
53
-
54
- # Load a Document from a file
55
- $Document = PPI::Document->new('Module.pm');
56
-
57
- # Does it contain any POD?
58
- if ( $Document->find_any('PPI::Token::Pod') ) {
59
- print "Module contains POD\n";
60
- }
61
-
62
- # Get the name of the main package
63
- $pkg = $Document->find_first('PPI::Statement::Package')->namespace;
64
-
65
- # Remove all that nasty documentation
66
- $Document->prune('PPI::Token::Pod');
67
- $Document->prune('PPI::Token::Comment');
68
-
69
- # Save the file
70
- $Document->save('Module.pm.stripped');
71
-
72
- =head1 DESCRIPTION
73
-
74
- =head2 About this Document
75
-
76
- This is the PPI manual. It describes its reason for existing, its general
77
- structure, its use, an overview of the API, and provides a few
78
- implementation samples.
79
-
80
- =head2 Background
81
-
82
- The ability to read, and manipulate Perl (the language) programmatically
83
- other than with perl (the application) was one that caused difficulty
84
- for a long time.
85
-
86
- The cause of this problem was Perl's complex and dynamic grammar.
87
- Although there is typically not a huge diversity in the grammar of most
88
- Perl code, certain issues cause large problems when it comes to parsing.
89
-
90
- Indeed, quite early in Perl's history Tom Christiansen introduced the Perl
91
- community to the quote I<"Nothing but perl can parse Perl">, or as it is
92
- more often stated now as a truism:
93
-
94
- B<"Only perl can parse Perl">
95
-
96
- One example of the sorts of things that prevent Perl from being easily parsed
97
- is function signatures, as demonstrated by the following.
98
-
99
- @result = (dothis $foo, $bar);
100
-
101
- # Which of the following is it equivalent to?
102
- @result = (dothis($foo), $bar);
103
- @result = dothis($foo, $bar);
104
-
105
- The first line above can be interpreted in two different ways, depending
106
- on whether the C<&dothis> function is expecting one argument, or two,
107
- or several.
108
-
109
- A "code parser" (something that parses for the purpose of execution) such
110
- as perl needs information that is not found in the immediate vicinity of
111
- the statement being parsed.
112
-
113
- The information might not just be elsewhere in the file, it might not even be
114
- in the same file at all. It might also not be able to determine this
115
- information without the prior execution of a C<BEGIN {}> block, or the
116
- loading and execution of one or more external modules. Or worse the C<&dothis>
117
- function may not even have been written yet.
118
-
119
- B<When parsing Perl as code, you must also execute it.>
120
-
121
- Even perl itself never really fully understands the structure of the source
122
- code after and indeed B<as> it processes it, and in that sense doesn't
123
- "parse" Perl source into anything remotely like a structured document.
124
- This makes it of no real use for any task that needs to treat the source
125
- code as a document, and do so reliably and robustly.
126
-
127
- For more information on why it is impossible to parse perl, see Randal
128
- Schwartz's seminal response to the question of "Why can't you parse Perl".
129
-
130
- L<http://www.perlmonks.org/index.pl?node_id=44722>
131
-
132
- The purpose of PPI is B<not> to parse Perl I<Code>, but to parse Perl
133
- I<Documents>. By treating the problem this way, we are able to parse a
134
- single file containing Perl source code "isolated" from any other
135
- resources, such as libraries upon which the code may depend, and
136
- without needing to run an instance of perl alongside or inside the parser.
137
-
138
- Historically, using an embedded perl parser was widely considered to be
139
- the most likely avenue for finding a solution to parsing Perl. It has been
140
- investigated from time to time, but attempts have generally failed or
141
- suffered from sufficiently bad corner cases that they were abandoned.
142
-
143
- =head2 What Does PPI Stand For?
144
-
145
- C<PPI> is an acronym for the longer original module name
146
- C<Parse::Perl::Isolated>. And in the spirit of the silly acronym games
147
- played by certain unnamed Open Source projects you may have I<hurd> of,
148
- it is also a reverse backronym of "I Parse Perl".
149
-
150
- Of course, I could just be lying and have just made that second bit up
151
- 10 minutes before the release of PPI 1.000. Besides, B<all> the cool
152
- Perl packages have TLAs (Three Letter Acronyms). It's a rule or something.
153
-
154
- Why don't you just think of it as the B<Perl Parsing Interface> for simplicity.
155
-
156
- The original name was shortened to prevent the author (and you the users)
157
- from contracting RSI by having to type crazy things like
158
- C<Parse::Perl::Isolated::Token::QuoteLike::Backtick> 100 times a day.
159
-
160
- In acknowledgment that someone may some day come up with a valid solution
161
- for the grammar problem it was decided at the commencement of the project
162
- to leave the C<Parse::Perl> namespace free for any such effort.
163
-
164
- Since that time I've been able to prove to my own satisfaction that it
165
- B<is> truly impossible to accurately parse Perl as both code and document
166
- at once. For the academics, parsing Perl suffers from the "Halting Problem".
167
-
168
- =head2 Why Parse Perl?
169
-
170
- Once you can accept that we will never be able to parse Perl well enough
171
- to meet the standards of things that treat Perl as code, it is worth
172
- re-examining I<why> we want to "parse" Perl at all.
173
-
174
- What are the things that people might want a "Perl parser" for?
175
-
176
- =over 4
177
-
178
- =item Documentation
179
-
180
- Analyzing the contents of a Perl document to automatically generate
181
- documentation, in parallel to, or as a replacement for, POD documentation.
182
-
183
- Allow an indexer to locate and process all the comments and
184
- documentation from code for "full text search" applications.
185
-
186
- =item Structural and Quality Analysis
187
-
188
- Determine quality or other metrics across a body of code, and identify
189
- situations relating to particular phrases, techniques or locations.
190
-
191
- Index functions, variables and packages within Perl code, and doing search
192
- and graph (in the node/edge sense) analysis of large code bases.
193
-
194
- L<Perl::Critic>, based on PPI, is a large, thriving tool for bug detection
195
- and style analysis of Perl code.
196
-
197
- =item Refactoring
198
-
199
- Make structural, syntax, or other changes to code in an automated manner,
200
- either independently or in assistance to an editor. This sort of task list
201
- includes backporting, forward porting, partial evaluation, "improving" code,
202
- or whatever. All the sort of things you'd want from a L<Perl::Editor>.
203
-
204
- =item Layout
205
-
206
- Change the layout of code without changing its meaning. This includes
207
- techniques such as tidying (like L<perltidy>), obfuscation, compressing and
208
- "squishing", or to implement formatting preferences or policies.
209
-
210
- =item Presentation
211
-
212
- This includes methods of improving the presentation of code, without changing
213
- the content of the code. Modify, improve, syntax colour etc the presentation
214
- of a Perl document. Generating "IntelliText"-like functions.
215
-
216
- =back
217
-
218
- If we treat this as a baseline for the sort of things we are going to have
219
- to build on top of Perl, then it becomes possible to identify a standard
220
- for how good a Perl parser needs to be.
221
-
222
- =head2 How good is Good Enough(TM)
223
-
224
- PPI seeks to be good enough to achieve all of the above tasks, or to provide
225
- a sufficiently good API on which to allow others to implement modules in
226
- these and related areas.
227
-
228
- However, there are going to be limits to this process. Because PPI cannot
229
- adapt to changing grammars, any code written using source filters should not
230
- be assumed to be parsable.
231
-
232
- At one extreme, this includes anything munged by L<Acme::Bleach>, as well
233
- as (arguably) more common cases like L<Switch>. We do not pretend to be
234
- able to always parse code using these modules, although as long as it still
235
- follows a format that looks like Perl syntax, it may be possible to extend
236
- the lexer to handle them.
237
-
238
- The ability to extend PPI to handle lexical additions to the language is on
239
- the drawing board to be done some time post-1.0
240
-
241
- The goal for success was originally to be able to successfully parse 99% of
242
- all Perl documents contained in CPAN. This means the entire file in each
243
- case.
244
-
245
- PPI has succeeded in this goal far beyond the expectations of even the
246
- author. At time of writing there are only 28 non-Acme Perl modules in CPAN
247
- that PPI is incapable of parsing. Most of these are so badly broken they
248
- do not compile as Perl code anyway.
249
-
250
- So unless you are actively going out of your way to break PPI, you should
251
- expect that it will handle your code just fine.
252
-
253
- =head2 Internationalisation
254
-
255
- PPI provides partial support for internationalisation and localisation.
256
-
257
- Specifically, it allows the use of characters from the Latin-1 character
258
- set to be used in quotes, comments, and POD. Primarily, this covers
259
- languages from Europe and South America.
260
-
261
- PPI does B<not> currently provide support for Unicode.
262
- If you need Unicode support and would like to help,
263
- contact the author. (contact details below)
264
-
265
- =head2 Round Trip Safe
266
-
267
- When PPI parses a file it builds B<everything> into the model, including
268
- whitespace. This is needed in order to make the Document fully "Round Trip"
269
- safe.
270
-
271
- The general concept behind a "Round Trip" parser is that it knows what it
272
- is parsing is somewhat uncertain, and so B<expects> to get things wrong
273
- from time to time. In the cases where it parses code wrongly the tree
274
- will serialize back out to the same string of code that was read in,
275
- repairing the parser's mistake as it heads back out to the file.
276
-
277
- The end result is that if you parse in a file and serialize it back out
278
- without changing the tree, you are guaranteed to get the same file you
279
- started with. PPI does this correctly and reliably for 100% of all known
280
- cases.
281
-
282
- B<What goes in, will come out. Every time.>
283
-
284
- The one minor exception at this time is that if the newlines for your file
285
- are wrong (meaning not matching the platform newline format), PPI will
286
- localise them for you. (It isn't to be convenient, supporting
287
- arbitrary newlines would make some of the code more complicated)
288
-
289
- Better control of the newline type is on the wish list though, and
290
- anyone wanting to help out is encouraged to contact the author.
291
-
292
- =head1 IMPLEMENTATION
293
-
294
- =head2 General Layout
295
-
296
- PPI is built upon two primary "parsing" components, L<PPI::Tokenizer>
297
- and L<PPI::Lexer>, and a large tree of about 70 classes which implement
298
- the various the I<Perl Document Object Model> (PDOM).
299
-
300
- The PDOM is conceptually similar in style and intent to the regular DOM or
301
- other code Abstract Syntax Trees (ASTs), but contains some differences
302
- to handle perl-specific cases, and to assist in treating the code as a
303
- document. Please note that it is B<not> an implementation of the official
304
- Document Object Model specification, only somewhat similar to it.
305
-
306
- On top of the Tokenizer, Lexer and the classes of the PDOM, sit a number
307
- of classes intended to make life a little easier when dealing with PDOM
308
- trees.
309
-
310
- Both the major parsing components were hand-coded from scratch with only
311
- plain Perl code and a few small utility modules. There are no grammar or
312
- patterns mini-languages, no YACC or LEX style tools and only a small number
313
- of regular expressions.
314
-
315
- This is primarily because of the sheer volume of accumulated cruft that
316
- exists in Perl. Not even perl itself is capable of parsing Perl documents
317
- (remember, it just parses and executes it as code).
318
-
319
- As a result, PPI needed to be cruftier than perl itself. Feel free to
320
- shudder at this point, and hope you never have to understand the Tokenizer
321
- codebase. Speaking of which...
322
-
323
- =head2 The Tokenizer
324
-
325
- The Tokenizer takes source code and converts it into a series of tokens. It
326
- does this using a slow but thorough character by character manual process,
327
- rather than using a pattern system or complex regexes.
328
-
329
- Or at least it does so conceptually. If you were to actually trace the code
330
- you would find it's not truly character by character due to a number of
331
- regexps and optimisations throughout the code. This lets the Tokenizer
332
- "skip ahead" when it can find shortcuts, so it tends to jump around a line
333
- a bit wildly at times.
334
-
335
- In practice, the number of times the Tokenizer will B<actually> move the
336
- character cursor itself is only about 5% - 10% higher than the number of
337
- tokens contained in the file. This makes it about as optimal as it can be
338
- made without implementing it in something other than Perl.
339
-
340
- In 2001 when PPI was started, this structure made PPI quite slow, and not
341
- really suitable for interactive tasks. This situation has improved greatly
342
- with multi-gigahertz processors, but can still be painful when working with
343
- very large files.
344
-
345
- The target parsing rate for PPI is about 5000 lines per gigacycle. It is
346
- currently believed to be at about 1500, and the main avenue for making it to
347
- the target speed has now become L<PPI::XS>, a drop-in XS accelerator for
348
- PPI.
349
-
350
- Since L<PPI::XS> has only just gotten off the ground and is currently only
351
- at proof-of-concept stage, this may take a little while. Anyone interested
352
- in helping out with L<PPI::XS> is B<highly> encouraged to contact the
353
- author. In fact, the design of L<PPI::XS> means it's possible to port
354
- one function at a time safely and reliably. So every little bit will help.
355
-
356
- =head2 The Lexer
357
-
358
- The Lexer takes a token stream, and converts it to a lexical tree. Because
359
- we are parsing Perl B<documents> this includes whitespace, comments, and
360
- all number of weird things that have no relevance when code is actually
361
- executed.
362
-
363
- An instantiated L<PPI::Lexer> consumes L<PPI::Tokenizer> objects and
364
- produces L<PPI::Document> objects. However you should probably never be
365
- working with the Lexer directly. You should just be able to create
366
- L<PPI::Document> objects and work with them directly.
367
-
368
- =head2 The Perl Document Object Model
369
-
370
- The PDOM is a structured collection of data classes that together provide
371
- a correct and scalable model for documents that follow the standard Perl
372
- syntax.
373
-
374
- =head2 The PDOM Class Tree
375
-
376
- The following lists all of the 72 current PDOM classes, listing with indentation
377
- based on inheritance.
378
-
379
- PPI::Element
380
- PPI::Node
381
- PPI::Document
382
- PPI::Document::Fragment
383
- PPI::Statement
384
- PPI::Statement::Package
385
- PPI::Statement::Include
386
- PPI::Statement::Sub
387
- PPI::Statement::Scheduled
388
- PPI::Statement::Compound
389
- PPI::Statement::Break
390
- PPI::Statement::Given
391
- PPI::Statement::When
392
- PPI::Statement::Data
393
- PPI::Statement::End
394
- PPI::Statement::Expression
395
- PPI::Statement::Variable
396
- PPI::Statement::Null
397
- PPI::Statement::UnmatchedBrace
398
- PPI::Statement::Unknown
399
- PPI::Structure
400
- PPI::Structure::Block
401
- PPI::Structure::Subscript
402
- PPI::Structure::Constructor
403
- PPI::Structure::Condition
404
- PPI::Structure::List
405
- PPI::Structure::For
406
- PPI::Structure::Given
407
- PPI::Structure::When
408
- PPI::Structure::Unknown
409
- PPI::Token
410
- PPI::Token::Whitespace
411
- PPI::Token::Comment
412
- PPI::Token::Pod
413
- PPI::Token::Number
414
- PPI::Token::Number::Binary
415
- PPI::Token::Number::Octal
416
- PPI::Token::Number::Hex
417
- PPI::Token::Number::Float
418
- PPI::Token::Number::Exp
419
- PPI::Token::Number::Version
420
- PPI::Token::Word
421
- PPI::Token::DashedWord
422
- PPI::Token::Symbol
423
- PPI::Token::Magic
424
- PPI::Token::ArrayIndex
425
- PPI::Token::Operator
426
- PPI::Token::Quote
427
- PPI::Token::Quote::Single
428
- PPI::Token::Quote::Double
429
- PPI::Token::Quote::Literal
430
- PPI::Token::Quote::Interpolate
431
- PPI::Token::QuoteLike
432
- PPI::Token::QuoteLike::Backtick
433
- PPI::Token::QuoteLike::Command
434
- PPI::Token::QuoteLike::Regexp
435
- PPI::Token::QuoteLike::Words
436
- PPI::Token::QuoteLike::Readline
437
- PPI::Token::Regexp
438
- PPI::Token::Regexp::Match
439
- PPI::Token::Regexp::Substitute
440
- PPI::Token::Regexp::Transliterate
441
- PPI::Token::HereDoc
442
- PPI::Token::Cast
443
- PPI::Token::Structure
444
- PPI::Token::Label
445
- PPI::Token::Separator
446
- PPI::Token::Data
447
- PPI::Token::End
448
- PPI::Token::Prototype
449
- PPI::Token::Attribute
450
- PPI::Token::Unknown
451
-
452
- To summarize the above layout, all PDOM objects inherit from the
453
- L<PPI::Element> class.
454
-
455
- Under this are L<PPI::Token>, strings of content with a known type,
456
- and L<PPI::Node>, syntactically significant containers that hold other
457
- Elements.
458
-
459
- The three most important of these are the L<PPI::Document>, the
460
- L<PPI::Statement> and the L<PPI::Structure> classes.
461
-
462
- =head2 The Document, Statement and Structure
463
-
464
- At the top of all complete PDOM trees is a L<PPI::Document> object. It
465
- represents a complete file of Perl source code as you might find it on
466
- disk.
467
-
468
- There are some specialised types of document, such as L<PPI::Document::File>
469
- and L<PPI::Document::Normalized> but for the purposes of the PDOM they are
470
- all just considered to be the same thing.
471
-
472
- Each Document will contain a number of B<Statements>, B<Structures> and
473
- B<Tokens>.
474
-
475
- A L<PPI::Statement> is any series of Tokens and Structures that are treated
476
- as a single contiguous statement by perl itself. You should note that a
477
- Statement is as close as PPI can get to "parsing" the code in the sense that
478
- perl-itself parses Perl code when it is building the op-tree.
479
-
480
- Because of the isolation and Perl's syntax, it is provably impossible for
481
- PPI to accurately determine precedence of operators or which tokens are
482
- implicit arguments to a sub call.
483
-
484
- So rather than lead you on with a bad guess that has a strong chance of
485
- being wrong, PPI does not attempt to determine precedence or sub parameters
486
- at all.
487
-
488
- At a fundamental level, it only knows that this series of elements
489
- represents a single Statement as perl sees it, but it can do so with
490
- enough certainty that it can be trusted.
491
-
492
- However, for specific Statement types the PDOM is able to derive additional
493
- useful information about their meaning. For the best, most useful, and most
494
- heavily used example, see L<PPI::Statement::Include>.
495
-
496
- A L<PPI::Structure> is any series of tokens contained within matching braces.
497
- This includes code blocks, conditions, function argument braces, anonymous
498
- array and hash constructors, lists, scoping braces and all other syntactic
499
- structures represented by a matching pair of braces, including (although it
500
- may not seem obvious at first) C<E<lt>READLINEE<gt>> braces.
501
-
502
- Each Structure contains none, one, or many Tokens and Structures (the rules
503
- for which vary for the different Structure subclasses)
504
-
505
- Under the PDOM structure rules, a Statement can B<never> directly contain
506
- another child Statement, a Structure can B<never> directly contain another
507
- child Structure, and a Document can B<never> contain another Document
508
- anywhere in the tree.
509
-
510
- Aside from these three rules, the PDOM tree is extremely flexible.
511
-
512
- =head2 The PDOM at Work
513
-
514
- To demonstrate the PDOM in use lets start with an example showing how the
515
- tree might look for the following chunk of simple Perl code.
516
-
517
- #!/usr/bin/perl
518
-
519
- print( "Hello World!" );
520
-
521
- exit();
522
-
523
- Translated into a PDOM tree it would have the following structure (as shown
524
- via the included L<PPI::Dumper>).
525
-
526
- PPI::Document
527
- PPI::Token::Comment '#!/usr/bin/perl\n'
528
- PPI::Token::Whitespace '\n'
529
- PPI::Statement
530
- PPI::Token::Word 'print'
531
- PPI::Structure::List ( ... )
532
- PPI::Token::Whitespace ' '
533
- PPI::Statement::Expression
534
- PPI::Token::Quote::Double '"Hello World!"'
535
- PPI::Token::Whitespace ' '
536
- PPI::Token::Structure ';'
537
- PPI::Token::Whitespace '\n'
538
- PPI::Token::Whitespace '\n'
539
- PPI::Statement
540
- PPI::Token::Word 'exit'
541
- PPI::Structure::List ( ... )
542
- PPI::Token::Structure ';'
543
- PPI::Token::Whitespace '\n'
544
-
545
- Please note that in this example, strings are only listed for the
546
- B<actual> L<PPI::Token> that contains that string. Structures are listed
547
- with the type of brace characters they represent noted.
548
-
549
- The L<PPI::Dumper> module can be used to generate similar trees yourself.
550
-
551
- We can make that PDOM dump a little easier to read if we strip out all the
552
- whitespace. Here it is again, sans the distracting whitespace tokens.
553
-
554
- PPI::Document
555
- PPI::Token::Comment '#!/usr/bin/perl\n'
556
- PPI::Statement
557
- PPI::Token::Word 'print'
558
- PPI::Structure::List ( ... )
559
- PPI::Statement::Expression
560
- PPI::Token::Quote::Double '"Hello World!"'
561
- PPI::Token::Structure ';'
562
- PPI::Statement
563
- PPI::Token::Word 'exit'
564
- PPI::Structure::List ( ... )
565
- PPI::Token::Structure ';'
566
-
567
- As you can see, the tree can get fairly deep at time, especially when every
568
- isolated token in a bracket becomes its own statement. This is needed to
569
- allow anything inside the tree the ability to grow. It also makes the
570
- search and analysis algorithms much more flexible.
571
-
572
- Because of the depth and complexity of PDOM trees, a vast number of very easy
573
- to use methods have been added wherever possible to help people working with
574
- PDOM trees do normal tasks relatively quickly and efficiently.
575
-
576
- =head2 Overview of the Primary Classes
577
-
578
- The main PPI classes, and links to their own documentation, are listed
579
- here in alphabetical order.
580
-
581
- =over 4
582
-
583
- =item L<PPI::Document>
584
-
585
- The Document object, the root of the PDOM.
586
-
587
- =item L<PPI::Document::Fragment>
588
-
589
- A cohesive fragment of a larger Document. Although not of any real current
590
- use, it is needed for use in certain internal tree manipulation
591
- algorithms.
592
-
593
- For example, doing things like cut/copy/paste etc. Very similar to a
594
- L<PPI::Document>, but has some additional methods and does not represent
595
- a lexical scope boundary.
596
-
597
- A document fragment is also non-serializable, and so cannot be written out
598
- to a file.
599
-
600
- =item L<PPI::Dumper>
601
-
602
- A simple class for dumping readable debugging versions of PDOM structures,
603
- such as in the demonstration above.
604
-
605
- =item L<PPI::Element>
606
-
607
- The Element class is the abstract base class for all objects within the PDOM
608
-
609
- =item L<PPI::Find>
610
-
611
- Implements an instantiable object form of a PDOM tree search.
612
-
613
- =item L<PPI::Lexer>
614
-
615
- The PPI Lexer. Converts Token streams into PDOM trees.
616
-
617
- =item L<PPI::Node>
618
-
619
- The Node object, the abstract base class for all PDOM objects that can
620
- contain other Elements, such as the Document, Statement and Structure
621
- objects.
622
-
623
- =item L<PPI::Statement>
624
-
625
- The base class for all Perl statements. Generic "evaluate for side-effects"
626
- statements are of this actual type. Other more interesting statement types
627
- belong to one of its children.
628
-
629
- See its own documentation for a longer description and list of all of the
630
- different statement types and sub-classes.
631
-
632
- =item L<PPI::Structure>
633
-
634
- The abstract base class for all structures. A Structure is a language
635
- construct consisting of matching braces containing a set of other elements.
636
-
637
- See the L<PPI::Structure> documentation for a description and
638
- list of all of the different structure types and sub-classes.
639
-
640
- =item L<PPI::Token>
641
-
642
- A token is the basic unit of content. At its most basic, a Token is just
643
- a string tagged with metadata (its class, and some additional flags in
644
- some cases).
645
-
646
- =item L<PPI::Token::_QuoteEngine>
647
-
648
- The L<PPI::Token::Quote> and L<PPI::Token::QuoteLike> classes provide
649
- abstract base classes for the many and varied types of quote and
650
- quote-like things in Perl. However, much of the actual quote logic is
651
- implemented in a separate quote engine, based at
652
- L<PPI::Token::_QuoteEngine>.
653
-
654
- Classes that inherit from L<PPI::Token::Quote>, L<PPI::Token::QuoteLike>
655
- and L<PPI::Token::Regexp> are generally parsed only by the Quote Engine.
656
-
657
- =item L<PPI::Tokenizer>
658
-
659
- The PPI Tokenizer. One Tokenizer consumes a chunk of text and provides
660
- access to a stream of L<PPI::Token> objects.
661
-
662
- The Tokenizer is very very complicated, to the point where even the author
663
- treads carefully when working with it.
664
-
665
- Most of the complication is the result of optimizations which have tripled
666
- the tokenization speed, at the expense of maintainability. We cope with the
667
- spaghetti by heavily commenting everything.
668
-
669
- =item L<PPI::Transform>
670
-
671
- The Perl Document Transformation API. Provides a standard interface and
672
- abstract base class for objects and classes that manipulate Documents.
673
-
674
- =back
675
-
676
- =head1 INSTALLING
677
-
678
- The core PPI distribution is pure Perl and has been kept as tight as
679
- possible and with as few dependencies as possible.
680
-
681
- It should download and install normally on any platform from within
682
- the CPAN and CPANPLUS applications, or directly using the distribution
683
- tarball. If installing by hand, you may need to install a few small
684
- utility modules first. The exact ones will depend on your version of
685
- perl.
686
-
687
- There are no special install instructions for PPI, and the normal
688
- C<Perl Makefile.PL>, C<make>, C<make test>, C<make install> instructions
689
- apply.
690
-
691
- =head1 EXTENDING
692
-
693
- The PPI namespace itself is reserved for use by PPI itself.
694
- You are recommended to use the PPIx:: namespace for PPI-specific
695
- modifications or prototypes thereof, or Perl:: for modules which provide
696
- a general Perl language-related functions.
697
-
698
- If what you wish to implement looks like it fits into the PPIx:: namespace,
699
- you should consider contacting the PPI maintainers on GitHub first, as what
700
- you want may already be in progress, or you may wish to consider contributing
701
- to PPI itself.
702
-
703
- =head1 TO DO
704
-
705
- - Many more analysis and utility methods for PDOM classes
706
-
707
- - Creation of a PPI::Tutorial document
708
-
709
- - Add many more key functions to PPI::XS
710
-
711
- - We can B<always> write more and better unit tests
712
-
713
- - Complete the full implementation of -E<gt>literal (1.200)
714
-
715
- - Full understanding of scoping (due 1.300)
716
-
717
- =head1 SUPPORT
718
-
719
- The most recent version of PPI is available at the following address.
720
-
721
- L<https://metacpan.org/pod/PPI>
722
-
723
- PPI source is maintained in a GitHub repository at the following address.
724
-
725
- L<https://github.com/Perl-Critic/PPI>
726
-
727
- Contributions via GitHub pull request are welcome.
728
-
729
- Bug fixes in the form of pull requests or bug reports with
730
- new (failing) unit tests have the best chance of being addressed
731
- by busy maintainers, and are B<strongly> encouraged.
732
-
733
- If you cannot provide a test or fix, or don't have time to do so,
734
- then regular bug reports are still accepted and appreciated via the
735
- GitHub bug tracker.
736
-
737
- L<https://github.com/Perl-Critic/PPI/issues>
738
-
739
- The C<ppidump> utility that is part of the L<Perl::Critic> distribution
740
- is a useful tool for demonstrating how PPI is parsing (or misparsing)
741
- small code snippets, and for providing information for bug reports.
742
-
743
- For other issues, questions, or commercial or media-related enquiries,
744
- contact the author.
745
-
746
- =head1 AUTHOR
747
-
748
- Adam Kennedy E<lt>adamk@cpan.orgE<gt>
749
-
750
- =head1 ACKNOWLEDGMENTS
751
-
752
- A huge thank you to Phase N Australia (L<http://phase-n.com/>) for
753
- permitting the original open sourcing and release of this distribution
754
- from what was originally several thousand hours of commercial work.
755
-
756
- Another big thank you to The Perl Foundation
757
- (L<http://www.perlfoundation.org/>) for funding for the final big
758
- refactoring and completion run.
759
-
760
- Also, to the various co-maintainers that have contributed both large and
761
- small with tests and patches and especially to those rare few who have
762
- deep-dived into the guts to (gasp) add a feature.
763
-
764
- - Dan Brook : PPIx::XPath, Acme::PerlML
765
- - Audrey Tang : "Line Noise" Testing
766
- - Arjen Laarhoven : Three-element ->location support
767
- - Elliot Shank : Perl 5.10 support, five-element ->location
768
-
769
- And finally, thanks to those brave ( and foolish :) ) souls willing to dive
770
- in and use, test drive and provide feedback on PPI before version 1.000,
771
- in some cases before it made it to beta quality, and still did extremely
772
- distasteful things (like eating 50 meg of RAM a second).
773
-
774
- I owe you all a beer. Corner me somewhere and collect at your convenience.
775
- If I missed someone who wasn't in my email history, thank you too :)
776
-
777
- # In approximate order of appearance
778
- - Claes Jacobsson
779
- - Michael Schwern
780
- - Jeff T. Parsons
781
- - CPAN Author "CHOCOLATEBOY"
782
- - Robert Rotherberg
783
- - CPAN Author "PODMASTER"
784
- - Richard Soderberg
785
- - Nadim ibn Hamouda el Khemir
786
- - Graciliano M. P.
787
- - Leon Brocard
788
- - Jody Belka
789
- - Curtis Ovid
790
- - Yuval Kogman
791
- - Michael Schilli
792
- - Slaven Rezic
793
- - Lars Thegler
794
- - Tony Stubblebine
795
- - Tatsuhiko Miyagawa
796
- - CPAN Author "CHROMATIC"
797
- - Matisse Enzer
798
- - Roy Fulbright
799
- - Dan Brook
800
- - Johnny Lee
801
- - Johan Lindstrom
802
-
803
- And to single one person out, thanks go to Randal Schwartz who
804
- spent a great number of hours in IRC over a critical 6 month period
805
- explaining why Perl is impossibly unparsable and constantly shoving evil
806
- and ugly corner cases in my face. He remained a tireless devil's advocate,
807
- and without his support this project genuinely could never have been
808
- completed.
809
-
810
- So for my schooling in the Deep Magiks, you have my deepest gratitude Randal.
811
-
812
- =head1 COPYRIGHT
813
-
814
- Copyright 2001 - 2011 Adam Kennedy.
815
-
816
- This program is free software; you can redistribute
817
- it and/or modify it under the same terms as Perl itself.
818
-
819
- The full text of the license can be found in the
820
- LICENSE file included with this module.
821
-
822
- =cut