@typed/fx 0.0.1

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 (1073) hide show
  1. package/.editorconfig +14 -0
  2. package/.eslintcache +1 -0
  3. package/.eslintrc.cjs +60 -0
  4. package/.huskyrc +5 -0
  5. package/.lintstagedrc +5 -0
  6. package/.mocharc.json +6 -0
  7. package/.nvmrc +1 -0
  8. package/.pnpm-debug.log +20 -0
  9. package/.prettierrc.cjs +11 -0
  10. package/.tracing-plugin/plugin.cjs +100 -0
  11. package/.tracing-plugin/plugin.d.ts +10 -0
  12. package/.tracing-plugin/plugin.d.ts.map +1 -0
  13. package/.tracing-plugin/plugin.js.map +1 -0
  14. package/.tracing-plugin/vite.d.ts +10 -0
  15. package/.tracing-plugin/vite.d.ts.map +1 -0
  16. package/.tracing-plugin/vite.js +54 -0
  17. package/.tracing-plugin/vite.js.map +1 -0
  18. package/.vscode/settings.json +7 -0
  19. package/cjs/Atomic/Atomic.d.ts +56 -0
  20. package/cjs/Atomic/Atomic.d.ts.map +1 -0
  21. package/cjs/Atomic/Atomic.js +92 -0
  22. package/cjs/Atomic/Atomic.js.map +1 -0
  23. package/cjs/Atomic/AtomicCounter.d.ts +10 -0
  24. package/cjs/Atomic/AtomicCounter.d.ts.map +1 -0
  25. package/cjs/Atomic/AtomicCounter.js +14 -0
  26. package/cjs/Atomic/AtomicCounter.js.map +1 -0
  27. package/cjs/Atomic/index.d.ts +3 -0
  28. package/cjs/Atomic/index.d.ts.map +1 -0
  29. package/cjs/Atomic/index.js +19 -0
  30. package/cjs/Atomic/index.js.map +1 -0
  31. package/cjs/Cause/Cause.d.ts +169 -0
  32. package/cjs/Cause/Cause.d.ts.map +1 -0
  33. package/cjs/Cause/Cause.js +344 -0
  34. package/cjs/Cause/Cause.js.map +1 -0
  35. package/cjs/Cause/CauseError.d.ts +13 -0
  36. package/cjs/Cause/CauseError.d.ts.map +1 -0
  37. package/cjs/Cause/CauseError.js +73 -0
  38. package/cjs/Cause/CauseError.js.map +1 -0
  39. package/cjs/Cause/Renderer.d.ts +47 -0
  40. package/cjs/Cause/Renderer.d.ts.map +1 -0
  41. package/cjs/Cause/Renderer.js +235 -0
  42. package/cjs/Cause/Renderer.js.map +1 -0
  43. package/cjs/Cause/index.d.ts +2 -0
  44. package/cjs/Cause/index.d.ts.map +1 -0
  45. package/cjs/Cause/index.js +18 -0
  46. package/cjs/Cause/index.js.map +1 -0
  47. package/cjs/Cause/prettyStringify.d.ts +2 -0
  48. package/cjs/Cause/prettyStringify.d.ts.map +1 -0
  49. package/cjs/Cause/prettyStringify.js +11 -0
  50. package/cjs/Cause/prettyStringify.js.map +1 -0
  51. package/cjs/Clock/Clock.d.ts +26 -0
  52. package/cjs/Clock/Clock.d.ts.map +1 -0
  53. package/cjs/Clock/Clock.js +87 -0
  54. package/cjs/Clock/Clock.js.map +1 -0
  55. package/cjs/Clock/DateClock.d.ts +3 -0
  56. package/cjs/Clock/DateClock.d.ts.map +1 -0
  57. package/cjs/Clock/DateClock.js +11 -0
  58. package/cjs/Clock/DateClock.js.map +1 -0
  59. package/cjs/Clock/TestClock.d.ts +11 -0
  60. package/cjs/Clock/TestClock.d.ts.map +1 -0
  61. package/cjs/Clock/TestClock.js +19 -0
  62. package/cjs/Clock/TestClock.js.map +1 -0
  63. package/cjs/Clock/index.d.ts +4 -0
  64. package/cjs/Clock/index.d.ts.map +1 -0
  65. package/cjs/Clock/index.js +20 -0
  66. package/cjs/Clock/index.js.map +1 -0
  67. package/cjs/Disposable/Disposable.d.ts +25 -0
  68. package/cjs/Disposable/Disposable.d.ts.map +1 -0
  69. package/cjs/Disposable/Disposable.js +46 -0
  70. package/cjs/Disposable/Disposable.js.map +1 -0
  71. package/cjs/Disposable/index.d.ts +2 -0
  72. package/cjs/Disposable/index.d.ts.map +1 -0
  73. package/cjs/Disposable/index.js +18 -0
  74. package/cjs/Disposable/index.js.map +1 -0
  75. package/cjs/Duration/Duration.d.ts +27 -0
  76. package/cjs/Duration/Duration.d.ts.map +1 -0
  77. package/cjs/Duration/Duration.js +119 -0
  78. package/cjs/Duration/Duration.js.map +1 -0
  79. package/cjs/Duration/index.d.ts +2 -0
  80. package/cjs/Duration/index.d.ts.map +1 -0
  81. package/cjs/Duration/index.js +18 -0
  82. package/cjs/Duration/index.js.map +1 -0
  83. package/cjs/Env/Env.d.ts +8 -0
  84. package/cjs/Env/Env.d.ts.map +1 -0
  85. package/cjs/Env/Env.js +64 -0
  86. package/cjs/Env/Env.js.map +1 -0
  87. package/cjs/Env/index.d.ts +2 -0
  88. package/cjs/Env/index.d.ts.map +1 -0
  89. package/cjs/Env/index.js +18 -0
  90. package/cjs/Env/index.js.map +1 -0
  91. package/cjs/Exit/Exit.d.ts +21 -0
  92. package/cjs/Exit/Exit.d.ts.map +1 -0
  93. package/cjs/Exit/Exit.js +54 -0
  94. package/cjs/Exit/Exit.js.map +1 -0
  95. package/cjs/Exit/hkt.d.ts +17 -0
  96. package/cjs/Exit/hkt.d.ts.map +1 -0
  97. package/cjs/Exit/hkt.js +45 -0
  98. package/cjs/Exit/hkt.js.map +1 -0
  99. package/cjs/Exit/index.d.ts +3 -0
  100. package/cjs/Exit/index.d.ts.map +1 -0
  101. package/cjs/Exit/index.js +19 -0
  102. package/cjs/Exit/index.js.map +1 -0
  103. package/cjs/Fiber/Fiber.d.ts +36 -0
  104. package/cjs/Fiber/Fiber.d.ts.map +1 -0
  105. package/cjs/Fiber/Fiber.js +36 -0
  106. package/cjs/Fiber/Fiber.js.map +1 -0
  107. package/cjs/Fiber/index.d.ts +2 -0
  108. package/cjs/Fiber/index.d.ts.map +1 -0
  109. package/cjs/Fiber/index.js +18 -0
  110. package/cjs/Fiber/index.js.map +1 -0
  111. package/cjs/FiberContext/FiberContext.d.ts +22 -0
  112. package/cjs/FiberContext/FiberContext.d.ts.map +1 -0
  113. package/cjs/FiberContext/FiberContext.js +64 -0
  114. package/cjs/FiberContext/FiberContext.js.map +1 -0
  115. package/cjs/FiberContext/index.d.ts +2 -0
  116. package/cjs/FiberContext/index.d.ts.map +1 -0
  117. package/cjs/FiberContext/index.js +18 -0
  118. package/cjs/FiberContext/index.js.map +1 -0
  119. package/cjs/FiberId/FiberId.d.ts +46 -0
  120. package/cjs/FiberId/FiberId.d.ts.map +1 -0
  121. package/cjs/FiberId/FiberId.js +122 -0
  122. package/cjs/FiberId/FiberId.js.map +1 -0
  123. package/cjs/FiberId/index.d.ts +2 -0
  124. package/cjs/FiberId/index.d.ts.map +1 -0
  125. package/cjs/FiberId/index.js +18 -0
  126. package/cjs/FiberId/index.js.map +1 -0
  127. package/cjs/FiberRef/FiberRef.d.ts +38 -0
  128. package/cjs/FiberRef/FiberRef.d.ts.map +1 -0
  129. package/cjs/FiberRef/FiberRef.js +57 -0
  130. package/cjs/FiberRef/FiberRef.js.map +1 -0
  131. package/cjs/FiberRef/index.d.ts +3 -0
  132. package/cjs/FiberRef/index.d.ts.map +1 -0
  133. package/cjs/FiberRef/index.js +20 -0
  134. package/cjs/FiberRef/index.js.map +1 -0
  135. package/cjs/FiberRef/operations.d.ts +9 -0
  136. package/cjs/FiberRef/operations.d.ts.map +1 -0
  137. package/cjs/FiberRef/operations.js +20 -0
  138. package/cjs/FiberRef/operations.js.map +1 -0
  139. package/cjs/FiberRefs/FiberRefs.d.ts +19 -0
  140. package/cjs/FiberRefs/FiberRefs.d.ts.map +1 -0
  141. package/cjs/FiberRefs/FiberRefs.js +130 -0
  142. package/cjs/FiberRefs/FiberRefs.js.map +1 -0
  143. package/cjs/FiberRefs/index.d.ts +2 -0
  144. package/cjs/FiberRefs/index.d.ts.map +1 -0
  145. package/cjs/FiberRefs/index.js +18 -0
  146. package/cjs/FiberRefs/index.js.map +1 -0
  147. package/cjs/FiberRuntime/FiberRuntime.d.ts +154 -0
  148. package/cjs/FiberRuntime/FiberRuntime.d.ts.map +1 -0
  149. package/cjs/FiberRuntime/FiberRuntime.js +506 -0
  150. package/cjs/FiberRuntime/FiberRuntime.js.map +1 -0
  151. package/cjs/FiberRuntime/Frame.d.ts +14 -0
  152. package/cjs/FiberRuntime/Frame.d.ts.map +1 -0
  153. package/cjs/FiberRuntime/Frame.js +18 -0
  154. package/cjs/FiberRuntime/Frame.js.map +1 -0
  155. package/cjs/FiberRuntime/index.d.ts +2 -0
  156. package/cjs/FiberRuntime/index.d.ts.map +1 -0
  157. package/cjs/FiberRuntime/index.js +18 -0
  158. package/cjs/FiberRuntime/index.js.map +1 -0
  159. package/cjs/FiberStatus/index.d.ts +19 -0
  160. package/cjs/FiberStatus/index.d.ts.map +1 -0
  161. package/cjs/FiberStatus/index.js +24 -0
  162. package/cjs/FiberStatus/index.js.map +1 -0
  163. package/cjs/Finalizer/Finalizer.d.ts +39 -0
  164. package/cjs/Finalizer/Finalizer.d.ts.map +1 -0
  165. package/cjs/Finalizer/Finalizer.js +24 -0
  166. package/cjs/Finalizer/Finalizer.js.map +1 -0
  167. package/cjs/Finalizer/index.d.ts +2 -0
  168. package/cjs/Finalizer/index.d.ts.map +1 -0
  169. package/cjs/Finalizer/index.js +18 -0
  170. package/cjs/Finalizer/index.js.map +1 -0
  171. package/cjs/Future/Future.d.ts +23 -0
  172. package/cjs/Future/Future.d.ts.map +1 -0
  173. package/cjs/Future/Future.js +42 -0
  174. package/cjs/Future/Future.js.map +1 -0
  175. package/cjs/Future/MutableFutureQueue.d.ts +16 -0
  176. package/cjs/Future/MutableFutureQueue.d.ts.map +1 -0
  177. package/cjs/Future/MutableFutureQueue.js +40 -0
  178. package/cjs/Future/MutableFutureQueue.js.map +1 -0
  179. package/cjs/Future/complete.d.ts +4 -0
  180. package/cjs/Future/complete.d.ts.map +1 -0
  181. package/cjs/Future/complete.js +14 -0
  182. package/cjs/Future/complete.js.map +1 -0
  183. package/cjs/Future/index.d.ts +4 -0
  184. package/cjs/Future/index.d.ts.map +1 -0
  185. package/cjs/Future/index.js +20 -0
  186. package/cjs/Future/index.js.map +1 -0
  187. package/cjs/Future/wait.d.ts +4 -0
  188. package/cjs/Future/wait.d.ts.map +1 -0
  189. package/cjs/Future/wait.js +9 -0
  190. package/cjs/Future/wait.js.map +1 -0
  191. package/cjs/Fx/Fx.d.ts +136 -0
  192. package/cjs/Fx/Fx.d.ts.map +1 -0
  193. package/cjs/Fx/Fx.js +247 -0
  194. package/cjs/Fx/Fx.js.map +1 -0
  195. package/cjs/Fx/Instruction.d.ts +202 -0
  196. package/cjs/Fx/Instruction.d.ts.map +1 -0
  197. package/cjs/Fx/Instruction.js +387 -0
  198. package/cjs/Fx/Instruction.js.map +1 -0
  199. package/cjs/Fx/index.d.ts +5 -0
  200. package/cjs/Fx/index.d.ts.map +1 -0
  201. package/cjs/Fx/index.js +21 -0
  202. package/cjs/Fx/index.js.map +1 -0
  203. package/cjs/Fx/join.d.ts +4 -0
  204. package/cjs/Fx/join.d.ts.map +1 -0
  205. package/cjs/Fx/join.js +39 -0
  206. package/cjs/Fx/join.js.map +1 -0
  207. package/cjs/Fx/logging.d.ts +11 -0
  208. package/cjs/Fx/logging.d.ts.map +1 -0
  209. package/cjs/Fx/logging.js +45 -0
  210. package/cjs/Fx/logging.js.map +1 -0
  211. package/cjs/Fx/scoped.d.ts +20 -0
  212. package/cjs/Fx/scoped.d.ts.map +1 -0
  213. package/cjs/Fx/scoped.js +52 -0
  214. package/cjs/Fx/scoped.js.map +1 -0
  215. package/cjs/ImmutableMap/ImmutableMap.d.ts +15 -0
  216. package/cjs/ImmutableMap/ImmutableMap.d.ts.map +1 -0
  217. package/cjs/ImmutableMap/ImmutableMap.js +39 -0
  218. package/cjs/ImmutableMap/ImmutableMap.js.map +1 -0
  219. package/cjs/ImmutableMap/index.d.ts +2 -0
  220. package/cjs/ImmutableMap/index.d.ts.map +1 -0
  221. package/cjs/ImmutableMap/index.js +18 -0
  222. package/cjs/ImmutableMap/index.js.map +1 -0
  223. package/cjs/Layer/Layer.d.ts +14 -0
  224. package/cjs/Layer/Layer.d.ts.map +1 -0
  225. package/cjs/Layer/Layer.js +42 -0
  226. package/cjs/Layer/Layer.js.map +1 -0
  227. package/cjs/Layer/index.d.ts +2 -0
  228. package/cjs/Layer/index.d.ts.map +1 -0
  229. package/cjs/Layer/index.js +18 -0
  230. package/cjs/Layer/index.js.map +1 -0
  231. package/cjs/Logger/Console.d.ts +3 -0
  232. package/cjs/Logger/Console.d.ts.map +1 -0
  233. package/cjs/Logger/Console.js +75 -0
  234. package/cjs/Logger/Console.js.map +1 -0
  235. package/cjs/Logger/LogAnnotation.d.ts +6 -0
  236. package/cjs/Logger/LogAnnotation.d.ts.map +1 -0
  237. package/cjs/Logger/LogAnnotation.js +8 -0
  238. package/cjs/Logger/LogAnnotation.js.map +1 -0
  239. package/cjs/Logger/LogLevel.d.ts +11 -0
  240. package/cjs/Logger/LogLevel.d.ts.map +1 -0
  241. package/cjs/Logger/LogLevel.js +15 -0
  242. package/cjs/Logger/LogLevel.js.map +1 -0
  243. package/cjs/Logger/LogSpan.d.ts +7 -0
  244. package/cjs/Logger/LogSpan.d.ts.map +1 -0
  245. package/cjs/Logger/LogSpan.js +8 -0
  246. package/cjs/Logger/LogSpan.js.map +1 -0
  247. package/cjs/Logger/Logger.d.ts +31 -0
  248. package/cjs/Logger/Logger.d.ts.map +1 -0
  249. package/cjs/Logger/Logger.js +66 -0
  250. package/cjs/Logger/Logger.js.map +1 -0
  251. package/cjs/Logger/index.d.ts +2 -0
  252. package/cjs/Logger/index.d.ts.map +1 -0
  253. package/cjs/Logger/index.js +18 -0
  254. package/cjs/Logger/index.js.map +1 -0
  255. package/cjs/Platform/Platform.d.ts +14 -0
  256. package/cjs/Platform/Platform.d.ts.map +1 -0
  257. package/cjs/Platform/Platform.js +47 -0
  258. package/cjs/Platform/Platform.js.map +1 -0
  259. package/cjs/Platform/TestPlatform.d.ts +7 -0
  260. package/cjs/Platform/TestPlatform.d.ts.map +1 -0
  261. package/cjs/Platform/TestPlatform.js +13 -0
  262. package/cjs/Platform/TestPlatform.js.map +1 -0
  263. package/cjs/Platform/index.d.ts +3 -0
  264. package/cjs/Platform/index.d.ts.map +1 -0
  265. package/cjs/Platform/index.js +19 -0
  266. package/cjs/Platform/index.js.map +1 -0
  267. package/cjs/Ref/Ref.d.ts +40 -0
  268. package/cjs/Ref/Ref.d.ts.map +1 -0
  269. package/cjs/Ref/Ref.js +57 -0
  270. package/cjs/Ref/Ref.js.map +1 -0
  271. package/cjs/Ref/atomic.d.ts +5 -0
  272. package/cjs/Ref/atomic.d.ts.map +1 -0
  273. package/cjs/Ref/atomic.js +20 -0
  274. package/cjs/Ref/atomic.js.map +1 -0
  275. package/cjs/Ref/index.d.ts +3 -0
  276. package/cjs/Ref/index.d.ts.map +1 -0
  277. package/cjs/Ref/index.js +19 -0
  278. package/cjs/Ref/index.js.map +1 -0
  279. package/cjs/Schedule/Decision.d.ts +15 -0
  280. package/cjs/Schedule/Decision.d.ts.map +1 -0
  281. package/cjs/Schedule/Decision.js +38 -0
  282. package/cjs/Schedule/Decision.js.map +1 -0
  283. package/cjs/Schedule/Schedule.d.ts +30 -0
  284. package/cjs/Schedule/Schedule.d.ts.map +1 -0
  285. package/cjs/Schedule/Schedule.js +78 -0
  286. package/cjs/Schedule/Schedule.js.map +1 -0
  287. package/cjs/Schedule/ScheduleState.d.ts +45 -0
  288. package/cjs/Schedule/ScheduleState.d.ts.map +1 -0
  289. package/cjs/Schedule/ScheduleState.js +58 -0
  290. package/cjs/Schedule/ScheduleState.js.map +1 -0
  291. package/cjs/Schedule/index.d.ts +4 -0
  292. package/cjs/Schedule/index.d.ts.map +1 -0
  293. package/cjs/Schedule/index.js +20 -0
  294. package/cjs/Schedule/index.js.map +1 -0
  295. package/cjs/Scheduler/RootScheduler.d.ts +4 -0
  296. package/cjs/Scheduler/RootScheduler.d.ts.map +1 -0
  297. package/cjs/Scheduler/RootScheduler.js +57 -0
  298. package/cjs/Scheduler/RootScheduler.js.map +1 -0
  299. package/cjs/Scheduler/Scheduler.d.ts +14 -0
  300. package/cjs/Scheduler/Scheduler.d.ts.map +1 -0
  301. package/cjs/Scheduler/Scheduler.js +6 -0
  302. package/cjs/Scheduler/Scheduler.js.map +1 -0
  303. package/cjs/Scheduler/callbackScheduler.d.ts +5 -0
  304. package/cjs/Scheduler/callbackScheduler.d.ts.map +1 -0
  305. package/cjs/Scheduler/callbackScheduler.js +59 -0
  306. package/cjs/Scheduler/callbackScheduler.js.map +1 -0
  307. package/cjs/Scheduler/index.d.ts +1 -0
  308. package/cjs/Scheduler/index.d.ts.map +1 -0
  309. package/cjs/Scheduler/index.js +2 -0
  310. package/cjs/Scheduler/index.js.map +1 -0
  311. package/cjs/Scheduler/scheduled.d.ts +10 -0
  312. package/cjs/Scheduler/scheduled.d.ts.map +1 -0
  313. package/cjs/Scheduler/scheduled.js +25 -0
  314. package/cjs/Scheduler/scheduled.js.map +1 -0
  315. package/cjs/Scope/Closeable.d.ts +11 -0
  316. package/cjs/Scope/Closeable.d.ts.map +1 -0
  317. package/cjs/Scope/Closeable.js +25 -0
  318. package/cjs/Scope/Closeable.js.map +1 -0
  319. package/cjs/Scope/GlobalScope.d.ts +3 -0
  320. package/cjs/Scope/GlobalScope.d.ts.map +1 -0
  321. package/cjs/Scope/GlobalScope.js +15 -0
  322. package/cjs/Scope/GlobalScope.js.map +1 -0
  323. package/cjs/Scope/LocalScope.d.ts +24 -0
  324. package/cjs/Scope/LocalScope.d.ts.map +1 -0
  325. package/cjs/Scope/LocalScope.js +97 -0
  326. package/cjs/Scope/LocalScope.js.map +1 -0
  327. package/cjs/Scope/ReleaseMap.d.ts +19 -0
  328. package/cjs/Scope/ReleaseMap.d.ts.map +1 -0
  329. package/cjs/Scope/ReleaseMap.js +66 -0
  330. package/cjs/Scope/ReleaseMap.js.map +1 -0
  331. package/cjs/Scope/Scope.d.ts +11 -0
  332. package/cjs/Scope/Scope.d.ts.map +1 -0
  333. package/cjs/Scope/Scope.js +6 -0
  334. package/cjs/Scope/Scope.js.map +1 -0
  335. package/cjs/Scope/ScopeState.d.ts +19 -0
  336. package/cjs/Scope/ScopeState.d.ts.map +1 -0
  337. package/cjs/Scope/ScopeState.js +30 -0
  338. package/cjs/Scope/ScopeState.js.map +1 -0
  339. package/cjs/Scope/index.d.ts +7 -0
  340. package/cjs/Scope/index.d.ts.map +1 -0
  341. package/cjs/Scope/index.js +23 -0
  342. package/cjs/Scope/index.js.map +1 -0
  343. package/cjs/Semaphore/Semaphore.d.ts +38 -0
  344. package/cjs/Semaphore/Semaphore.d.ts.map +1 -0
  345. package/cjs/Semaphore/Semaphore.js +96 -0
  346. package/cjs/Semaphore/Semaphore.js.map +1 -0
  347. package/cjs/Semaphore/index.d.ts +2 -0
  348. package/cjs/Semaphore/index.d.ts.map +1 -0
  349. package/cjs/Semaphore/index.js +18 -0
  350. package/cjs/Semaphore/index.js.map +1 -0
  351. package/cjs/Service/Id.d.ts +59 -0
  352. package/cjs/Service/Id.d.ts.map +1 -0
  353. package/cjs/Service/Id.js +90 -0
  354. package/cjs/Service/Id.js.map +1 -0
  355. package/cjs/Service/Service.d.ts +20 -0
  356. package/cjs/Service/Service.d.ts.map +1 -0
  357. package/cjs/Service/Service.js +19 -0
  358. package/cjs/Service/Service.js.map +1 -0
  359. package/cjs/Service/index.d.ts +4 -0
  360. package/cjs/Service/index.d.ts.map +1 -0
  361. package/cjs/Service/index.js +20 -0
  362. package/cjs/Service/index.js.map +1 -0
  363. package/cjs/Service/tagged.d.ts +23 -0
  364. package/cjs/Service/tagged.d.ts.map +1 -0
  365. package/cjs/Service/tagged.js +13 -0
  366. package/cjs/Service/tagged.js.map +1 -0
  367. package/cjs/Sink/Sink.d.ts +22 -0
  368. package/cjs/Sink/Sink.d.ts.map +1 -0
  369. package/cjs/Sink/Sink.js +31 -0
  370. package/cjs/Sink/Sink.js.map +1 -0
  371. package/cjs/Sink/index.d.ts +1 -0
  372. package/cjs/Sink/index.d.ts.map +1 -0
  373. package/cjs/Sink/index.js +2 -0
  374. package/cjs/Sink/index.js.map +1 -0
  375. package/cjs/Stack/index.d.ts +20 -0
  376. package/cjs/Stack/index.d.ts.map +1 -0
  377. package/cjs/Stack/index.js +103 -0
  378. package/cjs/Stack/index.js.map +1 -0
  379. package/cjs/StackFrame/StackFrame.d.ts +29 -0
  380. package/cjs/StackFrame/StackFrame.d.ts.map +1 -0
  381. package/cjs/StackFrame/StackFrame.js +61 -0
  382. package/cjs/StackFrame/StackFrame.js.map +1 -0
  383. package/cjs/StackFrame/getStackFrames.d.ts +7 -0
  384. package/cjs/StackFrame/getStackFrames.d.ts.map +1 -0
  385. package/cjs/StackFrame/getStackFrames.js +56 -0
  386. package/cjs/StackFrame/getStackFrames.js.map +1 -0
  387. package/cjs/StackFrame/index.d.ts +3 -0
  388. package/cjs/StackFrame/index.d.ts.map +1 -0
  389. package/cjs/StackFrame/index.js +19 -0
  390. package/cjs/StackFrame/index.js.map +1 -0
  391. package/cjs/StackFrame/parseChromeStack.d.ts +3 -0
  392. package/cjs/StackFrame/parseChromeStack.d.ts.map +1 -0
  393. package/cjs/StackFrame/parseChromeStack.js +36 -0
  394. package/cjs/StackFrame/parseChromeStack.js.map +1 -0
  395. package/cjs/StackFrame/parseGeckoStackFrame.d.ts +3 -0
  396. package/cjs/StackFrame/parseGeckoStackFrame.d.ts.map +1 -0
  397. package/cjs/StackFrame/parseGeckoStackFrame.js +28 -0
  398. package/cjs/StackFrame/parseGeckoStackFrame.js.map +1 -0
  399. package/cjs/Stream/Stream.d.ts +18 -0
  400. package/cjs/Stream/Stream.d.ts.map +1 -0
  401. package/cjs/Stream/Stream.js +8 -0
  402. package/cjs/Stream/Stream.js.map +1 -0
  403. package/cjs/Stream/drain.d.ts +11 -0
  404. package/cjs/Stream/drain.d.ts.map +1 -0
  405. package/cjs/Stream/drain.js +51 -0
  406. package/cjs/Stream/drain.js.map +1 -0
  407. package/cjs/Stream/fromFx.d.ts +4 -0
  408. package/cjs/Stream/fromFx.d.ts.map +1 -0
  409. package/cjs/Stream/fromFx.js +34 -0
  410. package/cjs/Stream/fromFx.js.map +1 -0
  411. package/cjs/Stream/index.d.ts +4 -0
  412. package/cjs/Stream/index.d.ts.map +1 -0
  413. package/cjs/Stream/index.js +20 -0
  414. package/cjs/Stream/index.js.map +1 -0
  415. package/cjs/Supervisor/Supervisor.d.ts +32 -0
  416. package/cjs/Supervisor/Supervisor.d.ts.map +1 -0
  417. package/cjs/Supervisor/Supervisor.js +46 -0
  418. package/cjs/Supervisor/Supervisor.js.map +1 -0
  419. package/cjs/Supervisor/index.d.ts +2 -0
  420. package/cjs/Supervisor/index.d.ts.map +1 -0
  421. package/cjs/Supervisor/index.js +18 -0
  422. package/cjs/Supervisor/index.js.map +1 -0
  423. package/cjs/Tagged/index.d.ts +79 -0
  424. package/cjs/Tagged/index.d.ts.map +1 -0
  425. package/cjs/Tagged/index.js +71 -0
  426. package/cjs/Tagged/index.js.map +1 -0
  427. package/cjs/Time/index.d.ts +95 -0
  428. package/cjs/Time/index.d.ts.map +1 -0
  429. package/cjs/Time/index.js +59 -0
  430. package/cjs/Time/index.js.map +1 -0
  431. package/cjs/Timeline/index.d.ts +27 -0
  432. package/cjs/Timeline/index.d.ts.map +1 -0
  433. package/cjs/Timeline/index.js +102 -0
  434. package/cjs/Timeline/index.js.map +1 -0
  435. package/cjs/Timer/SetTimeoutTimer.d.ts +4 -0
  436. package/cjs/Timer/SetTimeoutTimer.d.ts.map +1 -0
  437. package/cjs/Timer/SetTimeoutTimer.js +18 -0
  438. package/cjs/Timer/SetTimeoutTimer.js.map +1 -0
  439. package/cjs/Timer/TestTimer.d.ts +9 -0
  440. package/cjs/Timer/TestTimer.d.ts.map +1 -0
  441. package/cjs/Timer/TestTimer.js +52 -0
  442. package/cjs/Timer/TestTimer.js.map +1 -0
  443. package/cjs/Timer/Timer.d.ts +11 -0
  444. package/cjs/Timer/Timer.d.ts.map +1 -0
  445. package/cjs/Timer/Timer.js +44 -0
  446. package/cjs/Timer/Timer.js.map +1 -0
  447. package/cjs/Timer/index.d.ts +4 -0
  448. package/cjs/Timer/index.d.ts.map +1 -0
  449. package/cjs/Timer/index.js +20 -0
  450. package/cjs/Timer/index.js.map +1 -0
  451. package/cjs/Trace/Trace.d.ts +38 -0
  452. package/cjs/Trace/Trace.d.ts.map +1 -0
  453. package/cjs/Trace/Trace.js +183 -0
  454. package/cjs/Trace/Trace.js.map +1 -0
  455. package/cjs/Trace/index.d.ts +2 -0
  456. package/cjs/Trace/index.d.ts.map +1 -0
  457. package/cjs/Trace/index.js +18 -0
  458. package/cjs/Trace/index.js.map +1 -0
  459. package/cjs/Tracing/plugin.d.ts +10 -0
  460. package/cjs/Tracing/plugin.d.ts.map +1 -0
  461. package/cjs/Tracing/plugin.js +100 -0
  462. package/cjs/Tracing/plugin.js.map +1 -0
  463. package/cjs/Tracing/vite.d.ts +10 -0
  464. package/cjs/Tracing/vite.d.ts.map +1 -0
  465. package/cjs/Tracing/vite.js +54 -0
  466. package/cjs/Tracing/vite.js.map +1 -0
  467. package/cjs/index.d.ts +35 -0
  468. package/cjs/index.d.ts.map +1 -0
  469. package/cjs/index.js +64 -0
  470. package/cjs/index.js.map +1 -0
  471. package/cjs/internal.d.ts +18 -0
  472. package/cjs/internal.d.ts.map +1 -0
  473. package/cjs/internal.js +3 -0
  474. package/cjs/internal.js.map +1 -0
  475. package/cjs/test.d.ts +1 -0
  476. package/cjs/test.d.ts.map +1 -0
  477. package/cjs/test.js +2 -0
  478. package/cjs/test.js.map +1 -0
  479. package/coverage/tmp/coverage-74826-1660784295157-0.json +1 -0
  480. package/coverage/tmp/coverage-74830-1660784295115-0.json +1 -0
  481. package/coverage/tmp/coverage-74836-1660784295074-0.json +1 -0
  482. package/esm/Atomic/Atomic.d.ts +56 -0
  483. package/esm/Atomic/Atomic.d.ts.map +1 -0
  484. package/esm/Atomic/Atomic.js +79 -0
  485. package/esm/Atomic/Atomic.js.map +1 -0
  486. package/esm/Atomic/AtomicCounter.d.ts +10 -0
  487. package/esm/Atomic/AtomicCounter.d.ts.map +1 -0
  488. package/esm/Atomic/AtomicCounter.js +10 -0
  489. package/esm/Atomic/AtomicCounter.js.map +1 -0
  490. package/esm/Atomic/index.d.ts +3 -0
  491. package/esm/Atomic/index.d.ts.map +1 -0
  492. package/esm/Atomic/index.js +3 -0
  493. package/esm/Atomic/index.js.map +1 -0
  494. package/esm/Cause/Cause.d.ts +169 -0
  495. package/esm/Cause/Cause.d.ts.map +1 -0
  496. package/esm/Cause/Cause.js +296 -0
  497. package/esm/Cause/Cause.js.map +1 -0
  498. package/esm/Cause/CauseError.d.ts +13 -0
  499. package/esm/Cause/CauseError.d.ts.map +1 -0
  500. package/esm/Cause/CauseError.js +44 -0
  501. package/esm/Cause/CauseError.js.map +1 -0
  502. package/esm/Cause/Renderer.d.ts +47 -0
  503. package/esm/Cause/Renderer.d.ts.map +1 -0
  504. package/esm/Cause/Renderer.js +191 -0
  505. package/esm/Cause/Renderer.js.map +1 -0
  506. package/esm/Cause/index.d.ts +2 -0
  507. package/esm/Cause/index.d.ts.map +1 -0
  508. package/esm/Cause/index.js +2 -0
  509. package/esm/Cause/index.js.map +1 -0
  510. package/esm/Cause/prettyStringify.d.ts +2 -0
  511. package/esm/Cause/prettyStringify.d.ts.map +1 -0
  512. package/esm/Cause/prettyStringify.js +7 -0
  513. package/esm/Cause/prettyStringify.js.map +1 -0
  514. package/esm/Clock/Clock.d.ts +26 -0
  515. package/esm/Clock/Clock.d.ts.map +1 -0
  516. package/esm/Clock/Clock.js +50 -0
  517. package/esm/Clock/Clock.js.map +1 -0
  518. package/esm/Clock/DateClock.d.ts +3 -0
  519. package/esm/Clock/DateClock.d.ts.map +1 -0
  520. package/esm/Clock/DateClock.js +7 -0
  521. package/esm/Clock/DateClock.js.map +1 -0
  522. package/esm/Clock/TestClock.d.ts +11 -0
  523. package/esm/Clock/TestClock.d.ts.map +1 -0
  524. package/esm/Clock/TestClock.js +15 -0
  525. package/esm/Clock/TestClock.js.map +1 -0
  526. package/esm/Clock/index.d.ts +4 -0
  527. package/esm/Clock/index.d.ts.map +1 -0
  528. package/esm/Clock/index.js +4 -0
  529. package/esm/Clock/index.js.map +1 -0
  530. package/esm/Disposable/Disposable.d.ts +25 -0
  531. package/esm/Disposable/Disposable.d.ts.map +1 -0
  532. package/esm/Disposable/Disposable.js +39 -0
  533. package/esm/Disposable/Disposable.js.map +1 -0
  534. package/esm/Disposable/index.d.ts +2 -0
  535. package/esm/Disposable/index.d.ts.map +1 -0
  536. package/esm/Disposable/index.js +2 -0
  537. package/esm/Disposable/index.js.map +1 -0
  538. package/esm/Duration/Duration.d.ts +27 -0
  539. package/esm/Duration/Duration.d.ts.map +1 -0
  540. package/esm/Duration/Duration.js +106 -0
  541. package/esm/Duration/Duration.js.map +1 -0
  542. package/esm/Duration/index.d.ts +2 -0
  543. package/esm/Duration/index.d.ts.map +1 -0
  544. package/esm/Duration/index.js +2 -0
  545. package/esm/Duration/index.js.map +1 -0
  546. package/esm/Env/Env.d.ts +8 -0
  547. package/esm/Env/Env.d.ts.map +1 -0
  548. package/esm/Env/Env.js +37 -0
  549. package/esm/Env/Env.js.map +1 -0
  550. package/esm/Env/index.d.ts +2 -0
  551. package/esm/Env/index.d.ts.map +1 -0
  552. package/esm/Env/index.js +2 -0
  553. package/esm/Env/index.js.map +1 -0
  554. package/esm/Exit/Exit.d.ts +21 -0
  555. package/esm/Exit/Exit.d.ts.map +1 -0
  556. package/esm/Exit/Exit.js +16 -0
  557. package/esm/Exit/Exit.js.map +1 -0
  558. package/esm/Exit/hkt.d.ts +17 -0
  559. package/esm/Exit/hkt.d.ts.map +1 -0
  560. package/esm/Exit/hkt.js +19 -0
  561. package/esm/Exit/hkt.js.map +1 -0
  562. package/esm/Exit/index.d.ts +3 -0
  563. package/esm/Exit/index.d.ts.map +1 -0
  564. package/esm/Exit/index.js +3 -0
  565. package/esm/Exit/index.js.map +1 -0
  566. package/esm/Fiber/Fiber.d.ts +36 -0
  567. package/esm/Fiber/Fiber.d.ts.map +1 -0
  568. package/esm/Fiber/Fiber.js +25 -0
  569. package/esm/Fiber/Fiber.js.map +1 -0
  570. package/esm/Fiber/index.d.ts +2 -0
  571. package/esm/Fiber/index.d.ts.map +1 -0
  572. package/esm/Fiber/index.js +2 -0
  573. package/esm/Fiber/index.js.map +1 -0
  574. package/esm/FiberContext/FiberContext.d.ts +22 -0
  575. package/esm/FiberContext/FiberContext.d.ts.map +1 -0
  576. package/esm/FiberContext/FiberContext.js +36 -0
  577. package/esm/FiberContext/FiberContext.js.map +1 -0
  578. package/esm/FiberContext/index.d.ts +2 -0
  579. package/esm/FiberContext/index.d.ts.map +1 -0
  580. package/esm/FiberContext/index.js +2 -0
  581. package/esm/FiberContext/index.js.map +1 -0
  582. package/esm/FiberId/FiberId.d.ts +46 -0
  583. package/esm/FiberId/FiberId.d.ts.map +1 -0
  584. package/esm/FiberId/FiberId.js +93 -0
  585. package/esm/FiberId/FiberId.js.map +1 -0
  586. package/esm/FiberId/index.d.ts +2 -0
  587. package/esm/FiberId/index.d.ts.map +1 -0
  588. package/esm/FiberId/index.js +2 -0
  589. package/esm/FiberId/index.js.map +1 -0
  590. package/esm/FiberRef/FiberRef.d.ts +38 -0
  591. package/esm/FiberRef/FiberRef.d.ts.map +1 -0
  592. package/esm/FiberRef/FiberRef.js +52 -0
  593. package/esm/FiberRef/FiberRef.js.map +1 -0
  594. package/esm/FiberRef/index.d.ts +3 -0
  595. package/esm/FiberRef/index.d.ts.map +1 -0
  596. package/esm/FiberRef/index.js +4 -0
  597. package/esm/FiberRef/index.js.map +1 -0
  598. package/esm/FiberRef/operations.d.ts +9 -0
  599. package/esm/FiberRef/operations.d.ts.map +1 -0
  600. package/esm/FiberRef/operations.js +13 -0
  601. package/esm/FiberRef/operations.js.map +1 -0
  602. package/esm/FiberRefs/FiberRefs.d.ts +19 -0
  603. package/esm/FiberRefs/FiberRefs.d.ts.map +1 -0
  604. package/esm/FiberRefs/FiberRefs.js +95 -0
  605. package/esm/FiberRefs/FiberRefs.js.map +1 -0
  606. package/esm/FiberRefs/index.d.ts +2 -0
  607. package/esm/FiberRefs/index.d.ts.map +1 -0
  608. package/esm/FiberRefs/index.js +2 -0
  609. package/esm/FiberRefs/index.js.map +1 -0
  610. package/esm/FiberRuntime/FiberRuntime.d.ts +154 -0
  611. package/esm/FiberRuntime/FiberRuntime.d.ts.map +1 -0
  612. package/esm/FiberRuntime/FiberRuntime.js +479 -0
  613. package/esm/FiberRuntime/FiberRuntime.js.map +1 -0
  614. package/esm/FiberRuntime/Frame.d.ts +14 -0
  615. package/esm/FiberRuntime/Frame.d.ts.map +1 -0
  616. package/esm/FiberRuntime/Frame.js +13 -0
  617. package/esm/FiberRuntime/Frame.js.map +1 -0
  618. package/esm/FiberRuntime/index.d.ts +2 -0
  619. package/esm/FiberRuntime/index.d.ts.map +1 -0
  620. package/esm/FiberRuntime/index.js +2 -0
  621. package/esm/FiberRuntime/index.js.map +1 -0
  622. package/esm/FiberStatus/index.d.ts +19 -0
  623. package/esm/FiberStatus/index.d.ts.map +1 -0
  624. package/esm/FiberStatus/index.js +18 -0
  625. package/esm/FiberStatus/index.js.map +1 -0
  626. package/esm/Finalizer/Finalizer.d.ts +39 -0
  627. package/esm/Finalizer/Finalizer.d.ts.map +1 -0
  628. package/esm/Finalizer/Finalizer.js +19 -0
  629. package/esm/Finalizer/Finalizer.js.map +1 -0
  630. package/esm/Finalizer/index.d.ts +2 -0
  631. package/esm/Finalizer/index.d.ts.map +1 -0
  632. package/esm/Finalizer/index.js +2 -0
  633. package/esm/Finalizer/index.js.map +1 -0
  634. package/esm/Future/Future.d.ts +23 -0
  635. package/esm/Future/Future.d.ts.map +1 -0
  636. package/esm/Future/Future.js +36 -0
  637. package/esm/Future/Future.js.map +1 -0
  638. package/esm/Future/MutableFutureQueue.d.ts +16 -0
  639. package/esm/Future/MutableFutureQueue.d.ts.map +1 -0
  640. package/esm/Future/MutableFutureQueue.js +36 -0
  641. package/esm/Future/MutableFutureQueue.js.map +1 -0
  642. package/esm/Future/complete.d.ts +4 -0
  643. package/esm/Future/complete.d.ts.map +1 -0
  644. package/esm/Future/complete.js +10 -0
  645. package/esm/Future/complete.js.map +1 -0
  646. package/esm/Future/index.d.ts +4 -0
  647. package/esm/Future/index.d.ts.map +1 -0
  648. package/esm/Future/index.js +4 -0
  649. package/esm/Future/index.js.map +1 -0
  650. package/esm/Future/wait.d.ts +4 -0
  651. package/esm/Future/wait.d.ts.map +1 -0
  652. package/esm/Future/wait.js +5 -0
  653. package/esm/Future/wait.js.map +1 -0
  654. package/esm/Fx/Fx.d.ts +136 -0
  655. package/esm/Fx/Fx.d.ts.map +1 -0
  656. package/esm/Fx/Fx.js +173 -0
  657. package/esm/Fx/Fx.js.map +1 -0
  658. package/esm/Fx/Instruction.d.ts +202 -0
  659. package/esm/Fx/Instruction.d.ts.map +1 -0
  660. package/esm/Fx/Instruction.js +358 -0
  661. package/esm/Fx/Instruction.js.map +1 -0
  662. package/esm/Fx/index.d.ts +5 -0
  663. package/esm/Fx/index.d.ts.map +1 -0
  664. package/esm/Fx/index.js +5 -0
  665. package/esm/Fx/index.js.map +1 -0
  666. package/esm/Fx/join.d.ts +4 -0
  667. package/esm/Fx/join.d.ts.map +1 -0
  668. package/esm/Fx/join.js +12 -0
  669. package/esm/Fx/join.js.map +1 -0
  670. package/esm/Fx/logging.d.ts +11 -0
  671. package/esm/Fx/logging.d.ts.map +1 -0
  672. package/esm/Fx/logging.js +17 -0
  673. package/esm/Fx/logging.js.map +1 -0
  674. package/esm/Fx/scoped.d.ts +20 -0
  675. package/esm/Fx/scoped.d.ts.map +1 -0
  676. package/esm/Fx/scoped.js +45 -0
  677. package/esm/Fx/scoped.js.map +1 -0
  678. package/esm/ImmutableMap/ImmutableMap.d.ts +15 -0
  679. package/esm/ImmutableMap/ImmutableMap.d.ts.map +1 -0
  680. package/esm/ImmutableMap/ImmutableMap.js +35 -0
  681. package/esm/ImmutableMap/ImmutableMap.js.map +1 -0
  682. package/esm/ImmutableMap/index.d.ts +2 -0
  683. package/esm/ImmutableMap/index.d.ts.map +1 -0
  684. package/esm/ImmutableMap/index.js +2 -0
  685. package/esm/ImmutableMap/index.js.map +1 -0
  686. package/esm/Layer/Layer.d.ts +14 -0
  687. package/esm/Layer/Layer.d.ts.map +1 -0
  688. package/esm/Layer/Layer.js +14 -0
  689. package/esm/Layer/Layer.js.map +1 -0
  690. package/esm/Layer/index.d.ts +2 -0
  691. package/esm/Layer/index.d.ts.map +1 -0
  692. package/esm/Layer/index.js +2 -0
  693. package/esm/Layer/index.js.map +1 -0
  694. package/esm/Logger/Console.d.ts +3 -0
  695. package/esm/Logger/Console.d.ts.map +1 -0
  696. package/esm/Logger/Console.js +72 -0
  697. package/esm/Logger/Console.js.map +1 -0
  698. package/esm/Logger/LogAnnotation.d.ts +6 -0
  699. package/esm/Logger/LogAnnotation.d.ts.map +1 -0
  700. package/esm/Logger/LogAnnotation.js +4 -0
  701. package/esm/Logger/LogAnnotation.js.map +1 -0
  702. package/esm/Logger/LogLevel.d.ts +11 -0
  703. package/esm/Logger/LogLevel.d.ts.map +1 -0
  704. package/esm/Logger/LogLevel.js +12 -0
  705. package/esm/Logger/LogLevel.js.map +1 -0
  706. package/esm/Logger/LogSpan.d.ts +7 -0
  707. package/esm/Logger/LogSpan.d.ts.map +1 -0
  708. package/esm/Logger/LogSpan.js +4 -0
  709. package/esm/Logger/LogSpan.js.map +1 -0
  710. package/esm/Logger/Logger.d.ts +31 -0
  711. package/esm/Logger/Logger.d.ts.map +1 -0
  712. package/esm/Logger/Logger.js +36 -0
  713. package/esm/Logger/Logger.js.map +1 -0
  714. package/esm/Logger/index.d.ts +2 -0
  715. package/esm/Logger/index.d.ts.map +1 -0
  716. package/esm/Logger/index.js +2 -0
  717. package/esm/Logger/index.js.map +1 -0
  718. package/esm/Platform/Platform.d.ts +14 -0
  719. package/esm/Platform/Platform.d.ts.map +1 -0
  720. package/esm/Platform/Platform.js +19 -0
  721. package/esm/Platform/Platform.js.map +1 -0
  722. package/esm/Platform/TestPlatform.d.ts +7 -0
  723. package/esm/Platform/TestPlatform.d.ts.map +1 -0
  724. package/esm/Platform/TestPlatform.js +9 -0
  725. package/esm/Platform/TestPlatform.js.map +1 -0
  726. package/esm/Platform/index.d.ts +3 -0
  727. package/esm/Platform/index.d.ts.map +1 -0
  728. package/esm/Platform/index.js +3 -0
  729. package/esm/Platform/index.js.map +1 -0
  730. package/esm/Ref/Ref.d.ts +40 -0
  731. package/esm/Ref/Ref.d.ts.map +1 -0
  732. package/esm/Ref/Ref.js +30 -0
  733. package/esm/Ref/Ref.js.map +1 -0
  734. package/esm/Ref/atomic.d.ts +5 -0
  735. package/esm/Ref/atomic.d.ts.map +1 -0
  736. package/esm/Ref/atomic.js +16 -0
  737. package/esm/Ref/atomic.js.map +1 -0
  738. package/esm/Ref/index.d.ts +3 -0
  739. package/esm/Ref/index.d.ts.map +1 -0
  740. package/esm/Ref/index.js +3 -0
  741. package/esm/Ref/index.js.map +1 -0
  742. package/esm/Schedule/Decision.d.ts +15 -0
  743. package/esm/Schedule/Decision.d.ts.map +1 -0
  744. package/esm/Schedule/Decision.js +34 -0
  745. package/esm/Schedule/Decision.js.map +1 -0
  746. package/esm/Schedule/Schedule.d.ts +30 -0
  747. package/esm/Schedule/Schedule.d.ts.map +1 -0
  748. package/esm/Schedule/Schedule.js +64 -0
  749. package/esm/Schedule/Schedule.js.map +1 -0
  750. package/esm/Schedule/ScheduleState.d.ts +45 -0
  751. package/esm/Schedule/ScheduleState.d.ts.map +1 -0
  752. package/esm/Schedule/ScheduleState.js +54 -0
  753. package/esm/Schedule/ScheduleState.js.map +1 -0
  754. package/esm/Schedule/index.d.ts +4 -0
  755. package/esm/Schedule/index.d.ts.map +1 -0
  756. package/esm/Schedule/index.js +4 -0
  757. package/esm/Schedule/index.js.map +1 -0
  758. package/esm/Scheduler/RootScheduler.d.ts +4 -0
  759. package/esm/Scheduler/RootScheduler.d.ts.map +1 -0
  760. package/esm/Scheduler/RootScheduler.js +53 -0
  761. package/esm/Scheduler/RootScheduler.js.map +1 -0
  762. package/esm/Scheduler/Scheduler.d.ts +14 -0
  763. package/esm/Scheduler/Scheduler.d.ts.map +1 -0
  764. package/esm/Scheduler/Scheduler.js +3 -0
  765. package/esm/Scheduler/Scheduler.js.map +1 -0
  766. package/esm/Scheduler/callbackScheduler.d.ts +5 -0
  767. package/esm/Scheduler/callbackScheduler.d.ts.map +1 -0
  768. package/esm/Scheduler/callbackScheduler.js +32 -0
  769. package/esm/Scheduler/callbackScheduler.js.map +1 -0
  770. package/esm/Scheduler/index.d.ts +1 -0
  771. package/esm/Scheduler/index.d.ts.map +1 -0
  772. package/esm/Scheduler/index.js +2 -0
  773. package/esm/Scheduler/index.js.map +1 -0
  774. package/esm/Scheduler/scheduled.d.ts +10 -0
  775. package/esm/Scheduler/scheduled.d.ts.map +1 -0
  776. package/esm/Scheduler/scheduled.js +21 -0
  777. package/esm/Scheduler/scheduled.js.map +1 -0
  778. package/esm/Scope/Closeable.d.ts +11 -0
  779. package/esm/Scope/Closeable.d.ts.map +1 -0
  780. package/esm/Scope/Closeable.js +20 -0
  781. package/esm/Scope/Closeable.js.map +1 -0
  782. package/esm/Scope/GlobalScope.d.ts +3 -0
  783. package/esm/Scope/GlobalScope.d.ts.map +1 -0
  784. package/esm/Scope/GlobalScope.js +12 -0
  785. package/esm/Scope/GlobalScope.js.map +1 -0
  786. package/esm/Scope/LocalScope.d.ts +24 -0
  787. package/esm/Scope/LocalScope.d.ts.map +1 -0
  788. package/esm/Scope/LocalScope.js +70 -0
  789. package/esm/Scope/LocalScope.js.map +1 -0
  790. package/esm/Scope/ReleaseMap.d.ts +19 -0
  791. package/esm/Scope/ReleaseMap.d.ts.map +1 -0
  792. package/esm/Scope/ReleaseMap.js +62 -0
  793. package/esm/Scope/ReleaseMap.js.map +1 -0
  794. package/esm/Scope/Scope.d.ts +11 -0
  795. package/esm/Scope/Scope.d.ts.map +1 -0
  796. package/esm/Scope/Scope.js +3 -0
  797. package/esm/Scope/Scope.js.map +1 -0
  798. package/esm/Scope/ScopeState.d.ts +19 -0
  799. package/esm/Scope/ScopeState.d.ts.map +1 -0
  800. package/esm/Scope/ScopeState.js +24 -0
  801. package/esm/Scope/ScopeState.js.map +1 -0
  802. package/esm/Scope/index.d.ts +7 -0
  803. package/esm/Scope/index.d.ts.map +1 -0
  804. package/esm/Scope/index.js +7 -0
  805. package/esm/Scope/index.js.map +1 -0
  806. package/esm/Semaphore/Semaphore.d.ts +38 -0
  807. package/esm/Semaphore/Semaphore.d.ts.map +1 -0
  808. package/esm/Semaphore/Semaphore.js +87 -0
  809. package/esm/Semaphore/Semaphore.js.map +1 -0
  810. package/esm/Semaphore/index.d.ts +2 -0
  811. package/esm/Semaphore/index.d.ts.map +1 -0
  812. package/esm/Semaphore/index.js +2 -0
  813. package/esm/Semaphore/index.js.map +1 -0
  814. package/esm/Service/Id.d.ts +59 -0
  815. package/esm/Service/Id.d.ts.map +1 -0
  816. package/esm/Service/Id.js +62 -0
  817. package/esm/Service/Id.js.map +1 -0
  818. package/esm/Service/Service.d.ts +20 -0
  819. package/esm/Service/Service.d.ts.map +1 -0
  820. package/esm/Service/Service.js +14 -0
  821. package/esm/Service/Service.js.map +1 -0
  822. package/esm/Service/index.d.ts +4 -0
  823. package/esm/Service/index.d.ts.map +1 -0
  824. package/esm/Service/index.js +4 -0
  825. package/esm/Service/index.js.map +1 -0
  826. package/esm/Service/tagged.d.ts +23 -0
  827. package/esm/Service/tagged.d.ts.map +1 -0
  828. package/esm/Service/tagged.js +9 -0
  829. package/esm/Service/tagged.js.map +1 -0
  830. package/esm/Sink/Sink.d.ts +22 -0
  831. package/esm/Sink/Sink.d.ts.map +1 -0
  832. package/esm/Sink/Sink.js +26 -0
  833. package/esm/Sink/Sink.js.map +1 -0
  834. package/esm/Sink/index.d.ts +1 -0
  835. package/esm/Sink/index.d.ts.map +1 -0
  836. package/esm/Sink/index.js +2 -0
  837. package/esm/Sink/index.js.map +1 -0
  838. package/esm/Stack/index.d.ts +20 -0
  839. package/esm/Stack/index.d.ts.map +1 -0
  840. package/esm/Stack/index.js +70 -0
  841. package/esm/Stack/index.js.map +1 -0
  842. package/esm/StackFrame/StackFrame.d.ts +29 -0
  843. package/esm/StackFrame/StackFrame.d.ts.map +1 -0
  844. package/esm/StackFrame/StackFrame.js +35 -0
  845. package/esm/StackFrame/StackFrame.js.map +1 -0
  846. package/esm/StackFrame/getStackFrames.d.ts +7 -0
  847. package/esm/StackFrame/getStackFrames.d.ts.map +1 -0
  848. package/esm/StackFrame/getStackFrames.js +51 -0
  849. package/esm/StackFrame/getStackFrames.js.map +1 -0
  850. package/esm/StackFrame/index.d.ts +3 -0
  851. package/esm/StackFrame/index.d.ts.map +1 -0
  852. package/esm/StackFrame/index.js +3 -0
  853. package/esm/StackFrame/index.js.map +1 -0
  854. package/esm/StackFrame/parseChromeStack.d.ts +3 -0
  855. package/esm/StackFrame/parseChromeStack.d.ts.map +1 -0
  856. package/esm/StackFrame/parseChromeStack.js +32 -0
  857. package/esm/StackFrame/parseChromeStack.js.map +1 -0
  858. package/esm/StackFrame/parseGeckoStackFrame.d.ts +3 -0
  859. package/esm/StackFrame/parseGeckoStackFrame.d.ts.map +1 -0
  860. package/esm/StackFrame/parseGeckoStackFrame.js +24 -0
  861. package/esm/StackFrame/parseGeckoStackFrame.js.map +1 -0
  862. package/esm/Stream/Stream.d.ts +18 -0
  863. package/esm/Stream/Stream.d.ts.map +1 -0
  864. package/esm/Stream/Stream.js +4 -0
  865. package/esm/Stream/Stream.js.map +1 -0
  866. package/esm/Stream/drain.d.ts +11 -0
  867. package/esm/Stream/drain.d.ts.map +1 -0
  868. package/esm/Stream/drain.js +21 -0
  869. package/esm/Stream/drain.js.map +1 -0
  870. package/esm/Stream/fromFx.d.ts +4 -0
  871. package/esm/Stream/fromFx.d.ts.map +1 -0
  872. package/esm/Stream/fromFx.js +7 -0
  873. package/esm/Stream/fromFx.js.map +1 -0
  874. package/esm/Stream/index.d.ts +4 -0
  875. package/esm/Stream/index.d.ts.map +1 -0
  876. package/esm/Stream/index.js +4 -0
  877. package/esm/Stream/index.js.map +1 -0
  878. package/esm/Supervisor/Supervisor.d.ts +32 -0
  879. package/esm/Supervisor/Supervisor.d.ts.map +1 -0
  880. package/esm/Supervisor/Supervisor.js +40 -0
  881. package/esm/Supervisor/Supervisor.js.map +1 -0
  882. package/esm/Supervisor/index.d.ts +2 -0
  883. package/esm/Supervisor/index.d.ts.map +1 -0
  884. package/esm/Supervisor/index.js +2 -0
  885. package/esm/Supervisor/index.js.map +1 -0
  886. package/esm/Tagged/index.d.ts +79 -0
  887. package/esm/Tagged/index.d.ts.map +1 -0
  888. package/esm/Tagged/index.js +43 -0
  889. package/esm/Tagged/index.js.map +1 -0
  890. package/esm/Time/index.d.ts +95 -0
  891. package/esm/Time/index.d.ts.map +1 -0
  892. package/esm/Time/index.js +33 -0
  893. package/esm/Time/index.js.map +1 -0
  894. package/esm/Timeline/index.d.ts +27 -0
  895. package/esm/Timeline/index.d.ts.map +1 -0
  896. package/esm/Timeline/index.js +98 -0
  897. package/esm/Timeline/index.js.map +1 -0
  898. package/esm/Timer/SetTimeoutTimer.d.ts +4 -0
  899. package/esm/Timer/SetTimeoutTimer.d.ts.map +1 -0
  900. package/esm/Timer/SetTimeoutTimer.js +14 -0
  901. package/esm/Timer/SetTimeoutTimer.js.map +1 -0
  902. package/esm/Timer/TestTimer.d.ts +9 -0
  903. package/esm/Timer/TestTimer.d.ts.map +1 -0
  904. package/esm/Timer/TestTimer.js +25 -0
  905. package/esm/Timer/TestTimer.js.map +1 -0
  906. package/esm/Timer/Timer.d.ts +11 -0
  907. package/esm/Timer/Timer.d.ts.map +1 -0
  908. package/esm/Timer/Timer.js +16 -0
  909. package/esm/Timer/Timer.js.map +1 -0
  910. package/esm/Timer/index.d.ts +4 -0
  911. package/esm/Timer/index.d.ts.map +1 -0
  912. package/esm/Timer/index.js +4 -0
  913. package/esm/Timer/index.js.map +1 -0
  914. package/esm/Trace/Trace.d.ts +38 -0
  915. package/esm/Trace/Trace.d.ts.map +1 -0
  916. package/esm/Trace/Trace.js +152 -0
  917. package/esm/Trace/Trace.js.map +1 -0
  918. package/esm/Trace/index.d.ts +2 -0
  919. package/esm/Trace/index.d.ts.map +1 -0
  920. package/esm/Trace/index.js +2 -0
  921. package/esm/Trace/index.js.map +1 -0
  922. package/esm/Tracing/plugin.d.ts +10 -0
  923. package/esm/Tracing/plugin.d.ts.map +1 -0
  924. package/esm/Tracing/plugin.js +93 -0
  925. package/esm/Tracing/plugin.js.map +1 -0
  926. package/esm/Tracing/vite.d.ts +10 -0
  927. package/esm/Tracing/vite.d.ts.map +1 -0
  928. package/esm/Tracing/vite.js +50 -0
  929. package/esm/Tracing/vite.js.map +1 -0
  930. package/esm/index.d.ts +35 -0
  931. package/esm/index.d.ts.map +1 -0
  932. package/esm/index.js +68 -0
  933. package/esm/index.js.map +1 -0
  934. package/esm/internal.d.ts +18 -0
  935. package/esm/internal.d.ts.map +1 -0
  936. package/esm/internal.js +2 -0
  937. package/esm/internal.js.map +1 -0
  938. package/esm/test.d.ts +1 -0
  939. package/esm/test.d.ts.map +1 -0
  940. package/esm/test.js +2 -0
  941. package/esm/test.js.map +1 -0
  942. package/package.json +1238 -0
  943. package/readme.md +35 -0
  944. package/src/Atomic/Atomic.ts +122 -0
  945. package/src/Atomic/AtomicCounter.ts +23 -0
  946. package/src/Atomic/index.ts +2 -0
  947. package/src/Cause/Cause.ts +425 -0
  948. package/src/Cause/CauseError.ts +55 -0
  949. package/src/Cause/Renderer.ts +289 -0
  950. package/src/Cause/index.ts +1 -0
  951. package/src/Cause/prettyStringify.ts +8 -0
  952. package/src/Clock/Clock.ts +82 -0
  953. package/src/Clock/DateClock.ts +9 -0
  954. package/src/Clock/TestClock.ts +25 -0
  955. package/src/Clock/index.ts +3 -0
  956. package/src/Disposable/Disposable.ts +63 -0
  957. package/src/Disposable/index.ts +1 -0
  958. package/src/Duration/Duration.ts +125 -0
  959. package/src/Duration/index.ts +1 -0
  960. package/src/Env/Env.ts +62 -0
  961. package/src/Env/index.ts +1 -0
  962. package/src/Exit/Exit.ts +50 -0
  963. package/src/Exit/hkt.ts +29 -0
  964. package/src/Exit/index.ts +2 -0
  965. package/src/Fiber/Fiber.ts +85 -0
  966. package/src/Fiber/index.ts +1 -0
  967. package/src/FiberContext/FiberContext.ts +67 -0
  968. package/src/FiberContext/index.ts +1 -0
  969. package/src/FiberId/FiberId.ts +122 -0
  970. package/src/FiberId/index.ts +1 -0
  971. package/src/FiberRef/FiberRef.ts +93 -0
  972. package/src/FiberRef/index.ts +3 -0
  973. package/src/FiberRef/operations.ts +19 -0
  974. package/src/FiberRefs/FiberRefs.ts +162 -0
  975. package/src/FiberRefs/index.ts +1 -0
  976. package/src/FiberRuntime/FiberRuntime.ts +742 -0
  977. package/src/FiberRuntime/Frame.ts +28 -0
  978. package/src/FiberRuntime/index.ts +1 -0
  979. package/src/FiberStatus/index.ts +37 -0
  980. package/src/Finalizer/Finalizer.ts +48 -0
  981. package/src/Finalizer/index.ts +1 -0
  982. package/src/Future/Future.ts +72 -0
  983. package/src/Future/MutableFutureQueue.ts +58 -0
  984. package/src/Future/complete.ts +16 -0
  985. package/src/Future/index.ts +3 -0
  986. package/src/Future/wait.ts +8 -0
  987. package/src/Fx/Fx.test.ts +110 -0
  988. package/src/Fx/Fx.ts +629 -0
  989. package/src/Fx/Instruction.ts +468 -0
  990. package/src/Fx/index.ts +4 -0
  991. package/src/Fx/join.ts +17 -0
  992. package/src/Fx/logging.ts +69 -0
  993. package/src/Fx/scoped.ts +77 -0
  994. package/src/ImmutableMap/ImmutableMap.ts +55 -0
  995. package/src/ImmutableMap/index.ts +1 -0
  996. package/src/Layer/Layer.ts +44 -0
  997. package/src/Layer/index.ts +1 -0
  998. package/src/Logger/Console.test.ts +10 -0
  999. package/src/Logger/Console.ts +85 -0
  1000. package/src/Logger/LogAnnotation.ts +8 -0
  1001. package/src/Logger/LogLevel.ts +10 -0
  1002. package/src/Logger/LogSpan.ts +10 -0
  1003. package/src/Logger/Logger.ts +83 -0
  1004. package/src/Logger/index.ts +1 -0
  1005. package/src/Platform/Platform.ts +42 -0
  1006. package/src/Platform/TestPlatform.ts +14 -0
  1007. package/src/Platform/index.ts +2 -0
  1008. package/src/Ref/Ref.test.ts +34 -0
  1009. package/src/Ref/Ref.ts +76 -0
  1010. package/src/Ref/atomic.ts +33 -0
  1011. package/src/Ref/index.ts +2 -0
  1012. package/src/Schedule/Decision.ts +44 -0
  1013. package/src/Schedule/Schedule.ts +148 -0
  1014. package/src/Schedule/ScheduleState.ts +80 -0
  1015. package/src/Schedule/index.ts +3 -0
  1016. package/src/Scheduler/RootScheduler.ts +84 -0
  1017. package/src/Scheduler/Scheduler.ts +21 -0
  1018. package/src/Scheduler/callbackScheduler.ts +43 -0
  1019. package/src/Scheduler/index.ts +0 -0
  1020. package/src/Scheduler/scheduled.ts +32 -0
  1021. package/src/Scope/Closeable.test.ts +98 -0
  1022. package/src/Scope/Closeable.ts +35 -0
  1023. package/src/Scope/GlobalScope.ts +15 -0
  1024. package/src/Scope/LocalScope.ts +93 -0
  1025. package/src/Scope/ReleaseMap.ts +95 -0
  1026. package/src/Scope/Scope.ts +13 -0
  1027. package/src/Scope/ScopeState.ts +45 -0
  1028. package/src/Scope/index.ts +6 -0
  1029. package/src/Semaphore/Semaphore.ts +110 -0
  1030. package/src/Semaphore/index.ts +1 -0
  1031. package/src/Service/Id.ts +87 -0
  1032. package/src/Service/Service.ts +31 -0
  1033. package/src/Service/index.ts +3 -0
  1034. package/src/Service/tagged.ts +10 -0
  1035. package/src/Sink/Sink.ts +65 -0
  1036. package/src/Sink/index.ts +0 -0
  1037. package/src/Stack/index.ts +88 -0
  1038. package/src/StackFrame/StackFrame.ts +68 -0
  1039. package/src/StackFrame/getStackFrames.test.ts +30 -0
  1040. package/src/StackFrame/getStackFrames.ts +70 -0
  1041. package/src/StackFrame/index.ts +2 -0
  1042. package/src/StackFrame/parseChromeStack.ts +43 -0
  1043. package/src/StackFrame/parseGeckoStackFrame.ts +31 -0
  1044. package/src/Stream/Stream.ts +21 -0
  1045. package/src/Stream/drain.ts +73 -0
  1046. package/src/Stream/fromFx.test.ts +39 -0
  1047. package/src/Stream/fromFx.ts +27 -0
  1048. package/src/Stream/index.ts +3 -0
  1049. package/src/Supervisor/Supervisor.ts +49 -0
  1050. package/src/Supervisor/index.ts +1 -0
  1051. package/src/Tagged/index.ts +127 -0
  1052. package/src/Time/index.ts +62 -0
  1053. package/src/Timeline/index.ts +157 -0
  1054. package/src/Timer/SetTimeoutTimer.ts +19 -0
  1055. package/src/Timer/TestTimer.ts +39 -0
  1056. package/src/Timer/Timer.ts +24 -0
  1057. package/src/Timer/index.ts +3 -0
  1058. package/src/Trace/Trace.ts +210 -0
  1059. package/src/Trace/index.ts +1 -0
  1060. package/src/Tracing/plugin.ts +155 -0
  1061. package/src/Tracing/vite.ts +72 -0
  1062. package/src/index.ts +34 -0
  1063. package/src/internal.ts +33 -0
  1064. package/src/test.ts +0 -0
  1065. package/tools/common.ts +43 -0
  1066. package/tools/generatePackageExports.ts +100 -0
  1067. package/tsconfig.base.json +32 -0
  1068. package/tsconfig.build.cjs.json +26 -0
  1069. package/tsconfig.build.esm.json +30 -0
  1070. package/tsconfig.build.tracing.json +16 -0
  1071. package/tsconfig.json +8 -0
  1072. package/tsconfig.test.json +17 -0
  1073. package/vite.config.ts +28 -0
package/.editorconfig ADDED
@@ -0,0 +1,14 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 2
6
+ tab_width = 2
7
+ end_of_line = lf
8
+ charset = utf-8
9
+ trim_trailing_whitespace = true
10
+ insert_final_newline = true
11
+
12
+ [*.md]
13
+ trim_trailing_whitespace = false
14
+ insert_final_newline = false
package/.eslintcache ADDED
@@ -0,0 +1 @@
1
+ [{"/Users/TylorSteinberger/code/tylors/fx/src/Atomic/Atomic.ts":"1","/Users/TylorSteinberger/code/tylors/fx/src/Atomic/AtomicCounter.ts":"2","/Users/TylorSteinberger/code/tylors/fx/src/Atomic/index.ts":"3","/Users/TylorSteinberger/code/tylors/fx/src/Clock/Clock.ts":"4","/Users/TylorSteinberger/code/tylors/fx/src/Clock/index.ts":"5","/Users/TylorSteinberger/code/tylors/fx/src/Schedule/Decision.ts":"6","/Users/TylorSteinberger/code/tylors/fx/src/Schedule/Schedule.ts":"7","/Users/TylorSteinberger/code/tylors/fx/src/Schedule/ScheduleState.ts":"8","/Users/TylorSteinberger/code/tylors/fx/src/Schedule/index.ts":"9","/Users/TylorSteinberger/code/tylors/fx/src/Service/index.ts":"10","/Users/TylorSteinberger/code/tylors/fx/src/Stack/index.ts":"11","/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/StackFrame.ts":"12","/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/getStackFrames.test.ts":"13","/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/getStackFrames.ts":"14","/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/index.ts":"15","/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/parseChromeStack.ts":"16","/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/parseGeckoStackFrame.ts":"17","/Users/TylorSteinberger/code/tylors/fx/src/Tagged/index.ts":"18","/Users/TylorSteinberger/code/tylors/fx/src/Clock/DateClock.ts":"19","/Users/TylorSteinberger/code/tylors/fx/src/Duration/Duration.ts":"20","/Users/TylorSteinberger/code/tylors/fx/src/Duration/index.ts":"21","/Users/TylorSteinberger/code/tylors/fx/src/Time/index.ts":"22","/Users/TylorSteinberger/code/tylors/fx/src/Tracing/vite.ts":"23","/Users/TylorSteinberger/code/tylors/fx/src/Clock/TestClock.ts":"24","/Users/TylorSteinberger/code/tylors/fx/src/Fx/index.ts":"25","/Users/TylorSteinberger/code/tylors/fx/src/Cause/Cause.ts":"26","/Users/TylorSteinberger/code/tylors/fx/src/Cause/CauseError.ts":"27","/Users/TylorSteinberger/code/tylors/fx/src/Cause/Renderer.ts":"28","/Users/TylorSteinberger/code/tylors/fx/src/Cause/index.ts":"29","/Users/TylorSteinberger/code/tylors/fx/src/Cause/prettyStringify.ts":"30","/Users/TylorSteinberger/code/tylors/fx/src/Disposable/Disposable.ts":"31","/Users/TylorSteinberger/code/tylors/fx/src/Disposable/index.ts":"32","/Users/TylorSteinberger/code/tylors/fx/src/Env/Env.ts":"33","/Users/TylorSteinberger/code/tylors/fx/src/Env/index.ts":"34","/Users/TylorSteinberger/code/tylors/fx/src/Exit/Exit.ts":"35","/Users/TylorSteinberger/code/tylors/fx/src/Exit/hkt.ts":"36","/Users/TylorSteinberger/code/tylors/fx/src/Exit/index.ts":"37","/Users/TylorSteinberger/code/tylors/fx/src/Fiber/Fiber.ts":"38","/Users/TylorSteinberger/code/tylors/fx/src/Fiber/index.ts":"39","/Users/TylorSteinberger/code/tylors/fx/src/FiberContext/FiberContext.ts":"40","/Users/TylorSteinberger/code/tylors/fx/src/FiberContext/index.ts":"41","/Users/TylorSteinberger/code/tylors/fx/src/FiberId/FiberId.ts":"42","/Users/TylorSteinberger/code/tylors/fx/src/FiberId/index.ts":"43","/Users/TylorSteinberger/code/tylors/fx/src/FiberRef/FiberRef.ts":"44","/Users/TylorSteinberger/code/tylors/fx/src/FiberRef/index.ts":"45","/Users/TylorSteinberger/code/tylors/fx/src/FiberRefs/FiberRefs.ts":"46","/Users/TylorSteinberger/code/tylors/fx/src/FiberRefs/index.ts":"47","/Users/TylorSteinberger/code/tylors/fx/src/FiberStatus/index.ts":"48","/Users/TylorSteinberger/code/tylors/fx/src/Finalizer/Finalizer.ts":"49","/Users/TylorSteinberger/code/tylors/fx/src/Finalizer/index.ts":"50","/Users/TylorSteinberger/code/tylors/fx/src/Future/Future.ts":"51","/Users/TylorSteinberger/code/tylors/fx/src/Future/MutableFutureQueue.ts":"52","/Users/TylorSteinberger/code/tylors/fx/src/Future/complete.ts":"53","/Users/TylorSteinberger/code/tylors/fx/src/Future/index.ts":"54","/Users/TylorSteinberger/code/tylors/fx/src/Future/wait.ts":"55","/Users/TylorSteinberger/code/tylors/fx/src/Fx/Fx.test.ts":"56","/Users/TylorSteinberger/code/tylors/fx/src/Fx/Fx.ts":"57","/Users/TylorSteinberger/code/tylors/fx/src/Fx/scoped.ts":"58","/Users/TylorSteinberger/code/tylors/fx/src/Layer/Layer.ts":"59","/Users/TylorSteinberger/code/tylors/fx/src/Layer/index.ts":"60","/Users/TylorSteinberger/code/tylors/fx/src/Platform/Platform.ts":"61","/Users/TylorSteinberger/code/tylors/fx/src/Platform/index.ts":"62","/Users/TylorSteinberger/code/tylors/fx/src/Ref/Ref.ts":"63","/Users/TylorSteinberger/code/tylors/fx/src/Ref/index.ts":"64","/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/RootScheduler.ts":"65","/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/Scheduler.ts":"66","/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/index.ts":"67","/Users/TylorSteinberger/code/tylors/fx/src/Scope/Closeable.test.ts":"68","/Users/TylorSteinberger/code/tylors/fx/src/Scope/Closeable.ts":"69","/Users/TylorSteinberger/code/tylors/fx/src/Scope/GlobalScope.ts":"70","/Users/TylorSteinberger/code/tylors/fx/src/Scope/LocalScope.ts":"71","/Users/TylorSteinberger/code/tylors/fx/src/Scope/ReleaseMap.ts":"72","/Users/TylorSteinberger/code/tylors/fx/src/Scope/Scope.ts":"73","/Users/TylorSteinberger/code/tylors/fx/src/Scope/ScopeState.ts":"74","/Users/TylorSteinberger/code/tylors/fx/src/Scope/index.ts":"75","/Users/TylorSteinberger/code/tylors/fx/src/Semaphore/Semaphore.ts":"76","/Users/TylorSteinberger/code/tylors/fx/src/Semaphore/index.ts":"77","/Users/TylorSteinberger/code/tylors/fx/src/Sink/Sink.ts":"78","/Users/TylorSteinberger/code/tylors/fx/src/Sink/index.ts":"79","/Users/TylorSteinberger/code/tylors/fx/src/Stream/Stream.ts":"80","/Users/TylorSteinberger/code/tylors/fx/src/Stream/drain.ts":"81","/Users/TylorSteinberger/code/tylors/fx/src/Stream/fromFx.test.ts":"82","/Users/TylorSteinberger/code/tylors/fx/src/Stream/fromFx.ts":"83","/Users/TylorSteinberger/code/tylors/fx/src/Stream/index.ts":"84","/Users/TylorSteinberger/code/tylors/fx/src/Timeline/index.ts":"85","/Users/TylorSteinberger/code/tylors/fx/src/Timer/SetTimeoutTimer.ts":"86","/Users/TylorSteinberger/code/tylors/fx/src/Timer/TestTimer.ts":"87","/Users/TylorSteinberger/code/tylors/fx/src/Timer/Timer.ts":"88","/Users/TylorSteinberger/code/tylors/fx/src/Timer/index.ts":"89","/Users/TylorSteinberger/code/tylors/fx/src/Trace/Trace.ts":"90","/Users/TylorSteinberger/code/tylors/fx/src/Trace/index.ts":"91","/Users/TylorSteinberger/code/tylors/fx/src/internal.ts":"92","/Users/TylorSteinberger/code/tylors/fx/src/FiberRuntime/FiberRuntime.ts":"93","/Users/TylorSteinberger/code/tylors/fx/src/FiberRuntime/index.ts":"94","/Users/TylorSteinberger/code/tylors/fx/src/Logger/Logger.ts":"95","/Users/TylorSteinberger/code/tylors/fx/src/Logger/index.ts":"96","/Users/TylorSteinberger/code/tylors/fx/src/Platform/TestPlatform.ts":"97","/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/callbackScheduler.ts":"98","/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/scheduled.ts":"99","/Users/TylorSteinberger/code/tylors/fx/src/Service/Id.ts":"100","/Users/TylorSteinberger/code/tylors/fx/src/Service/Service.ts":"101","/Users/TylorSteinberger/code/tylors/fx/src/Service/tagged.ts":"102","/Users/TylorSteinberger/code/tylors/fx/src/Supervisor/Supervisor.ts":"103","/Users/TylorSteinberger/code/tylors/fx/src/Supervisor/index.ts":"104","/Users/TylorSteinberger/code/tylors/fx/src/index.ts":"105","/Users/TylorSteinberger/code/tylors/fx/src/FiberRef/operations.ts":"106","/Users/TylorSteinberger/code/tylors/fx/src/FiberRuntime/Frame.ts":"107","/Users/TylorSteinberger/code/tylors/fx/src/Fx/Instruction.ts":"108","/Users/TylorSteinberger/code/tylors/fx/src/Fx/join.ts":"109","/Users/TylorSteinberger/code/tylors/fx/src/ImmutableMap/ImmutableMap.ts":"110","/Users/TylorSteinberger/code/tylors/fx/src/ImmutableMap/index.ts":"111","/Users/TylorSteinberger/code/tylors/fx/src/test.ts":"112","/Users/TylorSteinberger/code/tylors/fx/src/Fx/logging.ts":"113","/Users/TylorSteinberger/code/tylors/fx/src/Logger/Console.test.ts":"114","/Users/TylorSteinberger/code/tylors/fx/src/Logger/Console.ts":"115","/Users/TylorSteinberger/code/tylors/fx/src/Logger/LogAnnotation.ts":"116","/Users/TylorSteinberger/code/tylors/fx/src/Logger/LogLevel.ts":"117","/Users/TylorSteinberger/code/tylors/fx/src/Logger/LogSpan.ts":"118","/Users/TylorSteinberger/code/tylors/fx/src/Ref/Ref.test.ts":"119","/Users/TylorSteinberger/code/tylors/fx/src/Ref/atomic.ts":"120","/Users/TylorSteinberger/code/tylors/fx/src/Tracing/plugin.ts":"121"},{"size":3072,"mtime":1660877990816,"results":"122","hashOfConfig":"123"},{"size":985,"mtime":1659927160430,"results":"124","hashOfConfig":"123"},{"size":63,"mtime":1659325010230,"results":"125","hashOfConfig":"123"},{"size":2339,"mtime":1660527187547,"results":"126","hashOfConfig":"123"},{"size":89,"mtime":1658980296886,"results":"127","hashOfConfig":"123"},{"size":896,"mtime":1658980296926,"results":"128","hashOfConfig":"123"},{"size":4275,"mtime":1660455773998,"results":"129","hashOfConfig":"123"},{"size":2592,"mtime":1659325297960,"results":"130","hashOfConfig":"123"},{"size":95,"mtime":1658980296928,"results":"131","hashOfConfig":"123"},{"size":81,"mtime":1660526378954,"results":"132","hashOfConfig":"123"},{"size":2410,"mtime":1661484446106,"results":"133","hashOfConfig":"123"},{"size":1611,"mtime":1658980296929,"results":"134","hashOfConfig":"123"},{"size":853,"mtime":1659469295256,"results":"135","hashOfConfig":"123"},{"size":1599,"mtime":1659469249199,"results":"136","hashOfConfig":"123"},{"size":68,"mtime":1658980296931,"results":"137","hashOfConfig":"123"},{"size":1190,"mtime":1659469198043,"results":"138","hashOfConfig":"123"},{"size":882,"mtime":1658980296932,"results":"139","hashOfConfig":"123"},{"size":3940,"mtime":1659325639662,"results":"140","hashOfConfig":"123"},{"size":272,"mtime":1660527271085,"results":"141","hashOfConfig":"123"},{"size":3400,"mtime":1661637246156,"results":"142","hashOfConfig":"123"},{"size":30,"mtime":1658980296887,"results":"143","hashOfConfig":"123"},{"size":2545,"mtime":1660612922970,"results":"144","hashOfConfig":"123"},{"size":1996,"mtime":1661638601441,"results":"145","hashOfConfig":"123"},{"size":635,"mtime":1660527192685,"results":"146","hashOfConfig":"123"},{"size":107,"mtime":1661637034057,"results":"147","hashOfConfig":"123"},{"size":12299,"mtime":1661357165575,"results":"148","hashOfConfig":"123"},{"size":1613,"mtime":1661357165577,"results":"149","hashOfConfig":"123"},{"size":7800,"mtime":1661357165579,"results":"150","hashOfConfig":"123"},{"size":27,"mtime":1661357165580,"results":"151","hashOfConfig":"123"},{"size":320,"mtime":1659312463453,"results":"152","hashOfConfig":"123"},{"size":1321,"mtime":1661357165580,"results":"153","hashOfConfig":"123"},{"size":32,"mtime":1659315413200,"results":"154","hashOfConfig":"123"},{"size":1798,"mtime":1661638133706,"results":"155","hashOfConfig":"123"},{"size":25,"mtime":1661489989712,"results":"156","hashOfConfig":"123"},{"size":1950,"mtime":1660840550518,"results":"157","hashOfConfig":"123"},{"size":867,"mtime":1659312617637,"results":"158","hashOfConfig":"123"},{"size":51,"mtime":1659312609951,"results":"159","hashOfConfig":"123"},{"size":2708,"mtime":1661629039203,"results":"160","hashOfConfig":"123"},{"size":27,"mtime":1661367497356,"results":"161","hashOfConfig":"123"},{"size":2077,"mtime":1661638523840,"results":"162","hashOfConfig":"123"},{"size":34,"mtime":1661282041804,"results":"163","hashOfConfig":"123"},{"size":3526,"mtime":1661463749160,"results":"164","hashOfConfig":"123"},{"size":29,"mtime":1659312426162,"results":"165","hashOfConfig":"123"},{"size":3046,"mtime":1661635653278,"results":"166","hashOfConfig":"123"},{"size":106,"mtime":1661533464104,"results":"167","hashOfConfig":"123"},{"size":4820,"mtime":1661635663557,"results":"168","hashOfConfig":"123"},{"size":31,"mtime":1661279326480,"results":"169","hashOfConfig":"123"},{"size":803,"mtime":1661357165585,"results":"170","hashOfConfig":"123"},{"size":1405,"mtime":1661357165586,"results":"171","hashOfConfig":"123"},{"size":31,"mtime":1659574073443,"results":"172","hashOfConfig":"123"},{"size":1846,"mtime":1661357165587,"results":"173","hashOfConfig":"123"},{"size":1445,"mtime":1661276064347,"results":"174","hashOfConfig":"123"},{"size":378,"mtime":1661357165588,"results":"175","hashOfConfig":"123"},{"size":84,"mtime":1661118647476,"results":"176","hashOfConfig":"123"},{"size":223,"mtime":1661357165589,"results":"177","hashOfConfig":"123"},{"size":2731,"mtime":1661542376293,"results":"178","hashOfConfig":"123"},{"size":18325,"mtime":1661636683433,"results":"179","hashOfConfig":"123"},{"size":1968,"mtime":1661357165592,"results":"180","hashOfConfig":"123"},{"size":1250,"mtime":1661484446105,"results":"181","hashOfConfig":"123"},{"size":27,"mtime":1660594854397,"results":"182","hashOfConfig":"123"},{"size":1168,"mtime":1660840237797,"results":"183","hashOfConfig":"123"},{"size":64,"mtime":1660195624397,"results":"184","hashOfConfig":"123"},{"size":2254,"mtime":1661631376308,"results":"185","hashOfConfig":"123"},{"size":53,"mtime":1661630783130,"results":"186","hashOfConfig":"123"},{"size":2561,"mtime":1661490353509,"results":"187","hashOfConfig":"123"},{"size":737,"mtime":1661384333318,"results":"188","hashOfConfig":"123"},{"size":0,"mtime":1661357165599,"results":"189","hashOfConfig":"123"},{"size":2597,"mtime":1661365115129,"results":"190","hashOfConfig":"123"},{"size":1021,"mtime":1661531074766,"results":"191","hashOfConfig":"123"},{"size":520,"mtime":1661357165602,"results":"192","hashOfConfig":"123"},{"size":2618,"mtime":1661532347176,"results":"193","hashOfConfig":"123"},{"size":2329,"mtime":1661357165602,"results":"194","hashOfConfig":"123"},{"size":440,"mtime":1660526973757,"results":"195","hashOfConfig":"123"},{"size":816,"mtime":1660020572151,"results":"196","hashOfConfig":"123"},{"size":187,"mtime":1660704969573,"results":"197","hashOfConfig":"123"},{"size":2668,"mtime":1661276064522,"results":"198","hashOfConfig":"123"},{"size":31,"mtime":1660187064547,"results":"199","hashOfConfig":"123"},{"size":1735,"mtime":1661390510269,"results":"200","hashOfConfig":"123"},{"size":0,"mtime":1661371833138,"results":"201","hashOfConfig":"123"},{"size":663,"mtime":1661387986048,"results":"202","hashOfConfig":"123"},{"size":2419,"mtime":1661627792481,"results":"203","hashOfConfig":"123"},{"size":1052,"mtime":1661532327778,"results":"204","hashOfConfig":"123"},{"size":569,"mtime":1661531474923,"results":"205","hashOfConfig":"123"},{"size":83,"mtime":1661391356094,"results":"206","hashOfConfig":"123"},{"size":3444,"mtime":1661367290073,"results":"207","hashOfConfig":"123"},{"size":523,"mtime":1661204030090,"results":"208","hashOfConfig":"123"},{"size":1206,"mtime":1661367297467,"results":"209","hashOfConfig":"123"},{"size":569,"mtime":1659404779477,"results":"210","hashOfConfig":"123"},{"size":95,"mtime":1659315443619,"results":"211","hashOfConfig":"123"},{"size":5305,"mtime":1661357165608,"results":"212","hashOfConfig":"123"},{"size":27,"mtime":1658980296923,"results":"213","hashOfConfig":"123"},{"size":931,"mtime":1659315215266,"results":"214","hashOfConfig":"123"},{"size":22484,"mtime":1661639682729,"results":"215","hashOfConfig":"123"},{"size":34,"mtime":1661282060375,"results":"216","hashOfConfig":"123"},{"size":2386,"mtime":1661633187207,"results":"217","hashOfConfig":"123"},{"size":28,"mtime":1660927849309,"results":"218","hashOfConfig":"123"},{"size":334,"mtime":1660195613096,"results":"219","hashOfConfig":"123"},{"size":1415,"mtime":1661367380661,"results":"220","hashOfConfig":"123"},{"size":959,"mtime":1661371728871,"results":"221","hashOfConfig":"123"},{"size":2229,"mtime":1661488897794,"results":"222","hashOfConfig":"123"},{"size":694,"mtime":1660526384021,"results":"223","hashOfConfig":"123"},{"size":302,"mtime":1661488967302,"results":"224","hashOfConfig":"123"},{"size":1582,"mtime":1661462747710,"results":"225","hashOfConfig":"123"},{"size":32,"mtime":1660704969580,"results":"226","hashOfConfig":"123"},{"size":1538,"mtime":1661491127438,"results":"227","hashOfConfig":"123"},{"size":535,"mtime":1661482478950,"results":"228","hashOfConfig":"123"},{"size":552,"mtime":1661467676533,"results":"229","hashOfConfig":"123"},{"size":12003,"mtime":1661490109214,"results":"230","hashOfConfig":"123"},{"size":392,"mtime":1661627585038,"results":"231","hashOfConfig":"123"},{"size":1666,"mtime":1661636077830,"results":"232","hashOfConfig":"123"},{"size":34,"mtime":1661357165594,"results":"233","hashOfConfig":"123"},{"size":0,"mtime":1660618717522,"results":"234","hashOfConfig":"123"},{"size":2079,"mtime":1661637027926,"results":"235","hashOfConfig":"123"},{"size":266,"mtime":1661637054601,"results":"236","hashOfConfig":"123"},{"size":2275,"mtime":1661637356158,"results":"237","hashOfConfig":"123"},{"size":191,"mtime":1661636259261,"results":"238","hashOfConfig":"123"},{"size":92,"mtime":1661634252365,"results":"239","hashOfConfig":"123"},{"size":209,"mtime":1661636836575,"results":"240","hashOfConfig":"123"},{"size":844,"mtime":1661630425370,"results":"241","hashOfConfig":"123"},{"size":1006,"mtime":1661631383444,"results":"242","hashOfConfig":"123"},{"size":5292,"mtime":1661357165608,"results":"243","hashOfConfig":"123"},{"filePath":"244","messages":"245","suppressedMessages":"246","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"f2rawx",{"filePath":"247","messages":"248","suppressedMessages":"249","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"250","messages":"251","suppressedMessages":"252","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"253","messages":"254","suppressedMessages":"255","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"256","messages":"257","suppressedMessages":"258","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"259","messages":"260","suppressedMessages":"261","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"262","messages":"263","suppressedMessages":"264","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"265","messages":"266","suppressedMessages":"267","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"268","messages":"269","suppressedMessages":"270","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"271","messages":"272","suppressedMessages":"273","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"274","messages":"275","suppressedMessages":"276","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"277","messages":"278","suppressedMessages":"279","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"280","messages":"281","suppressedMessages":"282","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"283","messages":"284","suppressedMessages":"285","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"286","messages":"287","suppressedMessages":"288","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"289","messages":"290","suppressedMessages":"291","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"292","messages":"293","suppressedMessages":"294","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"295","messages":"296","suppressedMessages":"297","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"298","messages":"299","suppressedMessages":"300","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"301","messages":"302","suppressedMessages":"303","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"304","messages":"305","suppressedMessages":"306","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"307","messages":"308","suppressedMessages":"309","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"310","messages":"311","suppressedMessages":"312","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"313","messages":"314","suppressedMessages":"315","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"316","messages":"317","suppressedMessages":"318","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"319","messages":"320","suppressedMessages":"321","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"322","messages":"323","suppressedMessages":"324","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"325","messages":"326","suppressedMessages":"327","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"328","messages":"329","suppressedMessages":"330","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"331","messages":"332","suppressedMessages":"333","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"334","messages":"335","suppressedMessages":"336","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"337","messages":"338","suppressedMessages":"339","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"340","messages":"341","suppressedMessages":"342","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"343","messages":"344","suppressedMessages":"345","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"346","messages":"347","suppressedMessages":"348","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"349","messages":"350","suppressedMessages":"351","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"352","messages":"353","suppressedMessages":"354","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"355","messages":"356","suppressedMessages":"357","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"358","messages":"359","suppressedMessages":"360","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"361","messages":"362","suppressedMessages":"363","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"364","messages":"365","suppressedMessages":"366","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"367","messages":"368","suppressedMessages":"369","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"370","messages":"371","suppressedMessages":"372","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"373","messages":"374","suppressedMessages":"375","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"376","messages":"377","suppressedMessages":"378","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"379","messages":"380","suppressedMessages":"381","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"382","messages":"383","suppressedMessages":"384","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"385","messages":"386","suppressedMessages":"387","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"388","messages":"389","suppressedMessages":"390","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"391","messages":"392","suppressedMessages":"393","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"394","messages":"395","suppressedMessages":"396","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"397","messages":"398","suppressedMessages":"399","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"400","messages":"401","suppressedMessages":"402","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"403","messages":"404","suppressedMessages":"405","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"406","messages":"407","suppressedMessages":"408","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"409","messages":"410","suppressedMessages":"411","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"412","messages":"413","suppressedMessages":"414","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"415","messages":"416","suppressedMessages":"417","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"418","messages":"419","suppressedMessages":"420","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"421","messages":"422","suppressedMessages":"423","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"424","messages":"425","suppressedMessages":"426","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"427","messages":"428","suppressedMessages":"429","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"430","messages":"431","suppressedMessages":"432","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"433","messages":"434","suppressedMessages":"435","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"436","messages":"437","suppressedMessages":"438","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"439","messages":"440","suppressedMessages":"441","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"442","messages":"443","suppressedMessages":"444","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"445","messages":"446","suppressedMessages":"447","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"448","messages":"449","suppressedMessages":"450","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"451","messages":"452","suppressedMessages":"453","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"454","messages":"455","suppressedMessages":"456","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"457","messages":"458","suppressedMessages":"459","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"460","messages":"461","suppressedMessages":"462","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"463","messages":"464","suppressedMessages":"465","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"466","messages":"467","suppressedMessages":"468","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"469","messages":"470","suppressedMessages":"471","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"472","messages":"473","suppressedMessages":"474","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"475","messages":"476","suppressedMessages":"477","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"478","messages":"479","suppressedMessages":"480","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"481","messages":"482","suppressedMessages":"483","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"484","messages":"485","suppressedMessages":"486","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"487","messages":"488","suppressedMessages":"489","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"490","messages":"491","suppressedMessages":"492","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"493","messages":"494","suppressedMessages":"495","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"496","messages":"497","suppressedMessages":"498","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"499","messages":"500","suppressedMessages":"501","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"502","messages":"503","suppressedMessages":"504","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"505","messages":"506","suppressedMessages":"507","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"508","messages":"509","suppressedMessages":"510","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"511","messages":"512","suppressedMessages":"513","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"514","messages":"515","suppressedMessages":"516","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"517","messages":"518","suppressedMessages":"519","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"520","messages":"521","suppressedMessages":"522","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"523","messages":"524","suppressedMessages":"525","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"526","messages":"527","suppressedMessages":"528","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"529","messages":"530","suppressedMessages":"531","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"532","messages":"533","suppressedMessages":"534","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"535","messages":"536","suppressedMessages":"537","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"538","messages":"539","suppressedMessages":"540","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"541","messages":"542","suppressedMessages":"543","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"544","messages":"545","suppressedMessages":"546","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"547","messages":"548","suppressedMessages":"549","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"550","messages":"551","suppressedMessages":"552","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"553","messages":"554","suppressedMessages":"555","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"556","messages":"557","suppressedMessages":"558","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"559","messages":"560","suppressedMessages":"561","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"562","messages":"563","suppressedMessages":"564","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"565","messages":"566","suppressedMessages":"567","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"568","messages":"569","suppressedMessages":"570","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"571","messages":"572","suppressedMessages":"573","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"574","messages":"575","suppressedMessages":"576","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"577","messages":"578","suppressedMessages":"579","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"580","messages":"581","suppressedMessages":"582","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"583","messages":"584","suppressedMessages":"585","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"586","messages":"587","suppressedMessages":"588","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"589","messages":"590","suppressedMessages":"591","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"592","messages":"593","suppressedMessages":"594","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"595","messages":"596","suppressedMessages":"597","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"598","messages":"599","suppressedMessages":"600","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"601","messages":"602","suppressedMessages":"603","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"604","messages":"605","suppressedMessages":"606","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/Users/TylorSteinberger/code/tylors/fx/src/Atomic/Atomic.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Atomic/AtomicCounter.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Atomic/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Clock/Clock.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Clock/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Schedule/Decision.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Schedule/Schedule.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Schedule/ScheduleState.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Schedule/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Service/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Stack/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/StackFrame.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/getStackFrames.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/getStackFrames.ts",[],["607","608"],"/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/parseChromeStack.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/StackFrame/parseGeckoStackFrame.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Tagged/index.ts",[],["609","610"],"/Users/TylorSteinberger/code/tylors/fx/src/Clock/DateClock.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Duration/Duration.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Duration/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Time/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Tracing/vite.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Clock/TestClock.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Fx/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Cause/Cause.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Cause/CauseError.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Cause/Renderer.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Cause/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Cause/prettyStringify.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Disposable/Disposable.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Disposable/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Env/Env.ts",[],["611","612"],"/Users/TylorSteinberger/code/tylors/fx/src/Env/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Exit/Exit.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Exit/hkt.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Exit/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Fiber/Fiber.ts",[],["613","614"],"/Users/TylorSteinberger/code/tylors/fx/src/Fiber/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/FiberContext/FiberContext.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/FiberContext/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/FiberId/FiberId.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/FiberId/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/FiberRef/FiberRef.ts",[],["615","616","617","618","619","620","621"],"/Users/TylorSteinberger/code/tylors/fx/src/FiberRef/index.ts",[],["622"],"/Users/TylorSteinberger/code/tylors/fx/src/FiberRefs/FiberRefs.ts",[],["623"],"/Users/TylorSteinberger/code/tylors/fx/src/FiberRefs/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/FiberStatus/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Finalizer/Finalizer.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Finalizer/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Future/Future.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Future/MutableFutureQueue.ts",[],["624"],"/Users/TylorSteinberger/code/tylors/fx/src/Future/complete.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Future/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Future/wait.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Fx/Fx.test.ts",[],["625","626"],"/Users/TylorSteinberger/code/tylors/fx/src/Fx/Fx.ts",[],["627","628","629","630","631","632","633","634","635","636","637","638","639","640","641"],"/Users/TylorSteinberger/code/tylors/fx/src/Fx/scoped.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Layer/Layer.ts",[],["642","643","644","645","646","647"],"/Users/TylorSteinberger/code/tylors/fx/src/Layer/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Platform/Platform.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Platform/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Ref/Ref.ts",[],["648","649","650","651","652","653"],"/Users/TylorSteinberger/code/tylors/fx/src/Ref/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/RootScheduler.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/Scheduler.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scope/Closeable.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scope/Closeable.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scope/GlobalScope.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scope/LocalScope.ts",[],["654"],"/Users/TylorSteinberger/code/tylors/fx/src/Scope/ReleaseMap.ts",[],["655","656"],"/Users/TylorSteinberger/code/tylors/fx/src/Scope/Scope.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scope/ScopeState.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scope/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Semaphore/Semaphore.ts",[],["657"],"/Users/TylorSteinberger/code/tylors/fx/src/Semaphore/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Sink/Sink.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Sink/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Stream/Stream.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Stream/drain.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Stream/fromFx.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Stream/fromFx.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Stream/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Timeline/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Timer/SetTimeoutTimer.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Timer/TestTimer.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Timer/Timer.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Timer/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Trace/Trace.ts",[],["658"],"/Users/TylorSteinberger/code/tylors/fx/src/Trace/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/internal.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/FiberRuntime/FiberRuntime.ts",[],["659","660"],"/Users/TylorSteinberger/code/tylors/fx/src/FiberRuntime/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Logger/Logger.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Logger/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Platform/TestPlatform.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/callbackScheduler.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Scheduler/scheduled.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Service/Id.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Service/Service.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Service/tagged.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Supervisor/Supervisor.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Supervisor/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/FiberRef/operations.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/FiberRuntime/Frame.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Fx/Instruction.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Fx/join.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/ImmutableMap/ImmutableMap.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/ImmutableMap/index.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Fx/logging.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Logger/Console.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Logger/Console.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Logger/LogAnnotation.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Logger/LogLevel.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Logger/LogSpan.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Ref/Ref.test.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Ref/atomic.ts",[],[],"/Users/TylorSteinberger/code/tylors/fx/src/Tracing/plugin.ts",[],["661","662","663","664","665","666","667","668","669","670","671","672","673","674"],{"ruleId":"675","severity":2,"message":"676","line":10,"column":18,"nodeType":"677","messageId":"678","endLine":10,"endColumn":26,"suppressions":"679"},{"ruleId":"675","severity":2,"message":"676","line":42,"column":18,"nodeType":"677","messageId":"678","endLine":42,"endColumn":26,"suppressions":"680"},{"ruleId":"681","severity":1,"message":"682","line":18,"column":18,"nodeType":"677","messageId":"683","endLine":18,"endColumn":19,"suppressions":"684"},{"ruleId":"681","severity":1,"message":"685","line":34,"column":63,"nodeType":"677","messageId":"683","endLine":34,"endColumn":64,"suppressions":"686"},{"ruleId":"687","severity":2,"message":"688","line":5,"column":1,"nodeType":"689","endLine":5,"endColumn":48,"suppressions":"690"},{"ruleId":"687","severity":2,"message":"691","line":7,"column":1,"nodeType":"689","endLine":7,"endColumn":54,"suppressions":"692"},{"ruleId":"681","severity":1,"message":"693","line":17,"column":61,"nodeType":"677","messageId":"683","endLine":17,"endColumn":63,"suppressions":"694"},{"ruleId":"681","severity":1,"message":"695","line":19,"column":52,"nodeType":"677","messageId":"683","endLine":19,"endColumn":54,"suppressions":"696"},{"ruleId":"687","severity":2,"message":"697","line":8,"column":1,"nodeType":"689","endLine":8,"endColumn":35,"suppressions":"698"},{"ruleId":"681","severity":1,"message":"695","line":30,"column":65,"nodeType":"677","messageId":"683","endLine":30,"endColumn":67,"suppressions":"699"},{"ruleId":"681","severity":1,"message":"693","line":30,"column":75,"nodeType":"677","messageId":"683","endLine":30,"endColumn":77,"suppressions":"700"},{"ruleId":"681","severity":1,"message":"701","line":31,"column":52,"nodeType":"677","messageId":"683","endLine":31,"endColumn":54,"suppressions":"702"},{"ruleId":"681","severity":1,"message":"693","line":31,"column":72,"nodeType":"677","messageId":"683","endLine":31,"endColumn":74,"suppressions":"703"},{"ruleId":"681","severity":1,"message":"701","line":32,"column":52,"nodeType":"677","messageId":"683","endLine":32,"endColumn":54,"suppressions":"704"},{"ruleId":"681","severity":1,"message":"695","line":32,"column":62,"nodeType":"677","messageId":"683","endLine":32,"endColumn":64,"suppressions":"705"},{"ruleId":"687","severity":2,"message":"706","line":2,"column":1,"nodeType":"707","endLine":2,"endColumn":30,"suppressions":"708"},{"ruleId":"687","severity":2,"message":"706","line":7,"column":1,"nodeType":"689","endLine":7,"endColumn":51,"suppressions":"709"},{"ruleId":"710","severity":1,"message":"711","line":27,"column":32,"nodeType":"712","messageId":"713","endLine":27,"endColumn":46,"suppressions":"714"},{"ruleId":"715","severity":2,"message":"716","line":25,"column":14,"nodeType":"717","messageId":"718","endLine":33,"endColumn":12,"suppressions":"719"},{"ruleId":"715","severity":2,"message":"716","line":46,"column":18,"nodeType":"717","messageId":"718","endLine":48,"endColumn":16,"suppressions":"720"},{"ruleId":"681","severity":1,"message":"695","line":71,"column":40,"nodeType":"677","messageId":"683","endLine":71,"endColumn":42,"suppressions":"721"},{"ruleId":"681","severity":1,"message":"693","line":71,"column":50,"nodeType":"677","messageId":"683","endLine":71,"endColumn":52,"suppressions":"722"},{"ruleId":"681","severity":1,"message":"695","line":73,"column":37,"nodeType":"677","messageId":"683","endLine":73,"endColumn":39,"suppressions":"723"},{"ruleId":"681","severity":1,"message":"693","line":73,"column":47,"nodeType":"677","messageId":"683","endLine":73,"endColumn":49,"suppressions":"724"},{"ruleId":"681","severity":1,"message":"701","line":79,"column":30,"nodeType":"677","messageId":"683","endLine":79,"endColumn":32,"suppressions":"725"},{"ruleId":"681","severity":1,"message":"693","line":79,"column":50,"nodeType":"677","messageId":"683","endLine":79,"endColumn":52,"suppressions":"726"},{"ruleId":"681","severity":1,"message":"701","line":81,"column":27,"nodeType":"677","messageId":"683","endLine":81,"endColumn":29,"suppressions":"727"},{"ruleId":"681","severity":1,"message":"693","line":81,"column":47,"nodeType":"677","messageId":"683","endLine":81,"endColumn":49,"suppressions":"728"},{"ruleId":"681","severity":1,"message":"701","line":85,"column":49,"nodeType":"677","messageId":"683","endLine":85,"endColumn":51,"suppressions":"729"},{"ruleId":"681","severity":1,"message":"695","line":85,"column":59,"nodeType":"677","messageId":"683","endLine":85,"endColumn":61,"suppressions":"730"},{"ruleId":"681","severity":1,"message":"701","line":339,"column":58,"nodeType":"677","messageId":"683","endLine":339,"endColumn":60,"suppressions":"731"},{"ruleId":"681","severity":1,"message":"732","line":339,"column":68,"nodeType":"677","messageId":"683","endLine":339,"endColumn":70,"suppressions":"733"},{"ruleId":"681","severity":1,"message":"734","line":341,"column":49,"nodeType":"677","messageId":"683","endLine":341,"endColumn":51,"suppressions":"735"},{"ruleId":"681","severity":1,"message":"732","line":341,"column":69,"nodeType":"677","messageId":"683","endLine":341,"endColumn":71,"suppressions":"736"},{"ruleId":"681","severity":1,"message":"685","line":398,"column":36,"nodeType":"677","messageId":"683","endLine":398,"endColumn":49,"suppressions":"737"},{"ruleId":"681","severity":1,"message":"695","line":24,"column":62,"nodeType":"677","messageId":"683","endLine":24,"endColumn":64,"suppressions":"738"},{"ruleId":"681","severity":1,"message":"693","line":24,"column":72,"nodeType":"677","messageId":"683","endLine":24,"endColumn":74,"suppressions":"739"},{"ruleId":"681","severity":1,"message":"701","line":25,"column":49,"nodeType":"677","messageId":"683","endLine":25,"endColumn":51,"suppressions":"740"},{"ruleId":"681","severity":1,"message":"693","line":25,"column":69,"nodeType":"677","messageId":"683","endLine":25,"endColumn":71,"suppressions":"741"},{"ruleId":"681","severity":1,"message":"701","line":26,"column":49,"nodeType":"677","messageId":"683","endLine":26,"endColumn":51,"suppressions":"742"},{"ruleId":"681","severity":1,"message":"695","line":26,"column":59,"nodeType":"677","messageId":"683","endLine":26,"endColumn":61,"suppressions":"743"},{"ruleId":"681","severity":1,"message":"695","line":30,"column":60,"nodeType":"677","messageId":"683","endLine":30,"endColumn":62,"suppressions":"744"},{"ruleId":"681","severity":1,"message":"693","line":30,"column":70,"nodeType":"677","messageId":"683","endLine":30,"endColumn":72,"suppressions":"745"},{"ruleId":"681","severity":1,"message":"701","line":31,"column":47,"nodeType":"677","messageId":"683","endLine":31,"endColumn":49,"suppressions":"746"},{"ruleId":"681","severity":1,"message":"693","line":31,"column":67,"nodeType":"677","messageId":"683","endLine":31,"endColumn":69,"suppressions":"747"},{"ruleId":"681","severity":1,"message":"701","line":32,"column":47,"nodeType":"677","messageId":"683","endLine":32,"endColumn":49,"suppressions":"748"},{"ruleId":"681","severity":1,"message":"695","line":32,"column":57,"nodeType":"677","messageId":"683","endLine":32,"endColumn":59,"suppressions":"749"},{"ruleId":"750","severity":2,"message":"751","line":71,"column":11,"nodeType":"677","messageId":"752","endLine":71,"endColumn":15,"suppressions":"753"},{"ruleId":"710","severity":1,"message":"711","line":42,"column":23,"nodeType":"712","messageId":"713","endLine":42,"endColumn":48,"suppressions":"754"},{"ruleId":"710","severity":1,"message":"711","line":53,"column":30,"nodeType":"712","messageId":"713","endLine":53,"endColumn":55,"suggestions":"755","suppressions":"756"},{"ruleId":"750","severity":2,"message":"751","line":37,"column":11,"nodeType":"677","messageId":"752","endLine":37,"endColumn":15,"suppressions":"757"},{"ruleId":"675","severity":2,"message":"676","line":25,"column":20,"nodeType":"677","messageId":"678","endLine":25,"endColumn":28,"suppressions":"758"},{"ruleId":"681","severity":1,"message":"685","line":347,"column":5,"nodeType":"677","messageId":"683","endLine":347,"endColumn":71,"suppressions":"759"},{"ruleId":"681","severity":1,"message":"685","line":353,"column":29,"nodeType":"677","messageId":"683","endLine":353,"endColumn":85,"suppressions":"760"},{"ruleId":"761","severity":1,"message":"762","line":30,"column":28,"nodeType":"763","endLine":30,"endColumn":38,"suppressions":"764"},{"ruleId":"761","severity":1,"message":"762","line":31,"column":11,"nodeType":"763","endLine":31,"endColumn":21,"suppressions":"765"},{"ruleId":"761","severity":1,"message":"762","line":34,"column":11,"nodeType":"763","endLine":34,"endColumn":21,"suppressions":"766"},{"ruleId":"761","severity":1,"message":"767","line":34,"column":34,"nodeType":"763","endLine":34,"endColumn":47,"suppressions":"768"},{"ruleId":"761","severity":1,"message":"762","line":35,"column":11,"nodeType":"763","endLine":35,"endColumn":21,"suppressions":"769"},{"ruleId":"761","severity":1,"message":"770","line":44,"column":13,"nodeType":"763","endLine":44,"endColumn":32,"suppressions":"771"},{"ruleId":"761","severity":1,"message":"772","line":46,"column":38,"nodeType":"763","endLine":46,"endColumn":51,"suppressions":"773"},{"ruleId":"761","severity":1,"message":"762","line":71,"column":18,"nodeType":"763","endLine":71,"endColumn":28,"suppressions":"774"},{"ruleId":"761","severity":1,"message":"775","line":73,"column":13,"nodeType":"763","endLine":73,"endColumn":25,"suppressions":"776"},{"ruleId":"761","severity":1,"message":"777","line":88,"column":13,"nodeType":"763","endLine":88,"endColumn":37,"suppressions":"778"},{"ruleId":"761","severity":1,"message":"762","line":89,"column":18,"nodeType":"763","endLine":89,"endColumn":28,"suppressions":"779"},{"ruleId":"761","severity":1,"message":"780","line":94,"column":13,"nodeType":"763","endLine":94,"endColumn":30,"suppressions":"781"},{"ruleId":"761","severity":1,"message":"780","line":99,"column":16,"nodeType":"763","endLine":99,"endColumn":33,"suppressions":"782"},{"ruleId":"761","severity":1,"message":"780","line":102,"column":14,"nodeType":"763","endLine":102,"endColumn":31,"suppressions":"783"},"@typescript-eslint/ban-types","Don't use `Function` as a type. The `Function` type accepts any function-like value.\nIt provides no type safety when calling the function, which can be a common source of bugs.\nIt also accepts things like class declarations, which will throw at runtime as they will not be called with `new`.\nIf you are expecting the function to accept certain arguments, you should explicitly define the function shape.","Identifier","bannedTypeMessage",["784"],["785"],"@typescript-eslint/no-unused-vars","'T' is defined but never used.","unusedVar",["786"],"'_' is defined but never used.",["787"],"import/no-cycle","Dependency cycle via ./FiberRef.js:2","ImportDeclaration",["788"],"Dependency cycle via @/FiberRef/FiberRef.js:7",["789"],"'_A' is defined but never used.",["790"],"'_E' is defined but never used.",["791"],"Dependency cycle via @/FiberRef/index.js:5",["792"],["793"],["794"],"'_R' is defined but never used.",["795"],["796"],["797"],["798"],"Dependency cycle via @/Env/Env.js:8","ExportAllDeclaration",["799"],["800"],"@typescript-eslint/no-non-null-assertion","Forbidden non-null assertion.","TSNonNullExpression","noNonNull",["801"],"require-yield","This generator function does not have 'yield'.","FunctionExpression","missingYield",["802"],["803"],["804"],["805"],["806"],["807"],["808"],["809"],["810"],["811"],["812"],["813"],["814"],"'_N' is defined but never used.",["815"],"'_Y' is defined but never used.",["816"],["817"],["818"],["819"],["820"],["821"],["822"],["823"],["824"],["825"],["826"],["827"],["828"],["829"],["830"],"@typescript-eslint/no-this-alias","Unexpected aliasing of 'this' to local variable.","thisAssignment",["831"],["832"],["833"],["834"],["835"],["836"],["837"],["838"],"import/no-named-as-default-member","Caution: `ts` also has a named export `factory`. Check if you meant to write `import {factory} from 'typescript'` instead.","MemberExpression",["839"],["840"],["841"],"Caution: `ts` also has a named export `SyntaxKind`. Check if you meant to write `import {SyntaxKind} from 'typescript'` instead.",["842"],["843"],"Caution: `ts` also has a named export `isCallExpression`. Check if you meant to write `import {isCallExpression} from 'typescript'` instead.",["844"],"Caution: `ts` also has a named export `visitNodes`. Check if you meant to write `import {visitNodes} from 'typescript'` instead.",["845"],["846"],"Caution: `ts` also has a named export `visitNode`. Check if you meant to write `import {visitNode} from 'typescript'` instead.",["847"],"Caution: `ts` also has a named export `isVariableDeclaration`. Check if you meant to write `import {isVariableDeclaration} from 'typescript'` instead.",["848"],["849"],"Caution: `ts` also has a named export `visitEachChild`. Check if you meant to write `import {visitEachChild} from 'typescript'` instead.",["850"],["851"],["852"],{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"messageId":"855","fix":"856","desc":"857"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},{"kind":"853","justification":"854"},"directive","","suggestOptionalChain",{"range":"858","text":"859"},"Consider using the optional chain operator `?.` instead. This operator includes runtime checks, so it is safer than the compile-only non-null assertion operator.",[1437,1438],"?."]
package/.eslintrc.cjs ADDED
@@ -0,0 +1,60 @@
1
+ module.exports = {
2
+ root: true,
3
+ parser: '@typescript-eslint/parser',
4
+ extends: [
5
+ 'eslint:recommended',
6
+ 'plugin:@typescript-eslint/eslint-recommended',
7
+ 'plugin:@typescript-eslint/recommended',
8
+ 'prettier',
9
+ 'plugin:prettier/recommended',
10
+ 'plugin:import/errors',
11
+ 'plugin:import/warnings',
12
+ 'plugin:import/typescript',
13
+ ],
14
+ ignorePatterns: ['docs/**'],
15
+ parserOptions: {
16
+ ecmaVersion: 2018,
17
+ sourceType: 'module',
18
+ },
19
+ env: {
20
+ node: true,
21
+ },
22
+ rules: {
23
+ '@typescript-eslint/no-empty-interface': 'off',
24
+ '@typescript-eslint/no-explicit-any': 'off',
25
+ '@typescript-eslint/no-use-before-define': 'off',
26
+ '@typescript-eslint/no-namespace': 'off',
27
+ 'import/order': [
28
+ 'error',
29
+ {
30
+ 'newlines-between': 'always',
31
+ alphabetize: {
32
+ order: 'asc',
33
+ caseInsensitive: false,
34
+ },
35
+ },
36
+ ],
37
+ // Enable sort-imports to sort named imports within a single import
38
+ // statement, but *disable* its declaration sort, and let
39
+ // import/order's alphabetize feature handle sorting declarations
40
+ // based on import path.
41
+ 'sort-imports': [
42
+ 'error',
43
+ {
44
+ ignoreDeclarationSort: true,
45
+ },
46
+ ],
47
+ 'import/no-unresolved': 'off', // Allow TS to do this checking,
48
+ 'import/no-cycle': ['error', { maxDepth: 3 }],
49
+ },
50
+ settings: {
51
+ 'import/parsers': {
52
+ '@typescript-eslint/parser': ['.ts', '.tsx'],
53
+ },
54
+ 'import/resolver': {
55
+ typescript: {
56
+ project: '.',
57
+ },
58
+ },
59
+ },
60
+ }
package/.huskyrc ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "hooks": {
3
+ "pre-commit": "lint-staged"
4
+ }
5
+ }
package/.lintstagedrc ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "*.{ts, tsx}": [
3
+ "eslint --fix"
4
+ ]
5
+ }
package/.mocharc.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "node-option": [
3
+ "experimental-specifier-resolution=node",
4
+ "loader=@esbuild-kit/esm-loader"
5
+ ]
6
+ }
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 18
@@ -0,0 +1,20 @@
1
+ {
2
+ "0 debug pnpm:scope": {
3
+ "selected": 1
4
+ },
5
+ "1 error pnpm": {
6
+ "errno": 127,
7
+ "code": "ELIFECYCLE",
8
+ "pkgid": "@typed/fx@0.0.0",
9
+ "stage": "test:vite-plugin:build",
10
+ "script": "vite build --ssr ./src/Tracing/test",
11
+ "pkgname": "@typed/fx",
12
+ "err": {
13
+ "name": "pnpm",
14
+ "message": "@typed/fx@0.0.0 test:vite-plugin:build: `vite build --ssr ./src/Tracing/test`\nExit status 127",
15
+ "code": "ELIFECYCLE",
16
+ "stack": "pnpm: @typed/fx@0.0.0 test:vite-plugin:build: `vite build --ssr ./src/Tracing/test`\nExit status 127\n at /Users/TylorSteinberger/.nvm/versions/node/v16.15.0/pnpm-global/5/node_modules/.pnpm/pnpm@7.0.0/node_modules/pnpm/dist/pnpm.cjs:106718:22\n at processTicksAndRejections (node:internal/process/task_queues:96:5)"
17
+ }
18
+ },
19
+ "2 warn pnpm:global": " Local package.json exists, but node_modules missing, did you mean to install?"
20
+ }
@@ -0,0 +1,11 @@
1
+ module.exports = {
2
+ printWidth: 100,
3
+ bracketSpacing: true,
4
+ jsxBracketSameLine: false,
5
+ parser: 'typescript',
6
+ semi: false,
7
+ singleQuote: true,
8
+ tabWidth: 2,
9
+ trailingComma: 'all',
10
+ useTabs: false
11
+ }
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.makeTracingTransformer = void 0;
7
+ /* eslint-disable @typescript-eslint/no-non-null-assertion */
8
+ /* eslint-disable import/no-named-as-default-member */
9
+ const path_1 = require("path");
10
+ const typescript_1 = __importDefault(require("typescript"));
11
+ const INSTRUMENTED_REGEX = /^[a-z]+\s.+:[0-9]+:[0-9]+$/i;
12
+ const isInstrumentedTrace = (trace) => INSTRUMENTED_REGEX.test(trace);
13
+ const makeTracingTransformer = (program, config) => {
14
+ const checker = program.getTypeChecker();
15
+ const root = config?.root ?? program.getCompilerOptions().rootDir ?? process.cwd();
16
+ return (ctx) => {
17
+ return (sourceFile) => {
18
+ const fileName = rewritePaths((0, path_1.relative)(root, sourceFile.fileName), config.rewritePaths);
19
+ function getTrace(node, existingText) {
20
+ const nodeEnd = sourceFile.getLineAndCharacterOfPosition(node.getEnd());
21
+ // Must be an expression, so we create a binary expression to concatenate the 2 parts of the string
22
+ // and to handle existing expressions in existingText.
23
+ const expression = typescript_1.default.factory.createBinaryExpression(typescript_1.default.factory.createStringLiteral(existingText ? trimQuotations(existingText) : node.getText()), typescript_1.default.factory.createToken(typescript_1.default.SyntaxKind.PlusToken), typescript_1.default.factory.createStringLiteral(` ${fileName}:${nodeEnd.line + 1}:${nodeEnd.character + 1}`));
24
+ return expression;
25
+ }
26
+ function visitor(node) {
27
+ if (typescript_1.default.isCallExpression(node)) {
28
+ // Continue processing any arguments that might be CallExpressions
29
+ const processedArguments = typescript_1.default.visitNodes(node.arguments, visitor);
30
+ // Resolve signature to get the declaration parameters.
31
+ const signature = checker.getResolvedSignature(node) ?? getSignatureIfSole(checker, node.expression);
32
+ const signatureDeclaration = signature?.getDeclaration();
33
+ const declarationParameters = Array.from(signatureDeclaration?.parameters || []);
34
+ // Grab the last argument and last declaration parameter.
35
+ const lastParameter = processedArguments[processedArguments.length - 1];
36
+ const lastDeclarationParameter = declarationParameters[declarationParameters.length - 1];
37
+ // Check if this function should append a trace, and how.
38
+ const isTraceLastParameter = lastDeclarationParameter?.name.getText() === '__trace';
39
+ const haveNotProvidedTrace = processedArguments.length === declarationParameters.length - 1;
40
+ const traceIsMissingLocation = processedArguments.length === declarationParameters.length && lastParameter
41
+ ? lastParameter.getText(sourceFile) !== '__trace' &&
42
+ !isInstrumentedTrace(lastParameter.getText(sourceFile))
43
+ : false;
44
+ const shouldAppendTrace = isTraceLastParameter && (haveNotProvidedTrace || traceIsMissingLocation);
45
+ // Update the CallExpression
46
+ return typescript_1.default.factory.updateCallExpression(node, typescript_1.default.visitNode(node.expression, visitor), // Process the expression
47
+ node.typeArguments, shouldAppendTrace
48
+ ? haveNotProvidedTrace
49
+ ? [...node.arguments, getTrace(node.expression)] // Append new Trace
50
+ : [
51
+ // Ammend existing custom Trace with line numbers
52
+ ...node.arguments.slice(0, -1),
53
+ getTrace(node.expression, lastParameter.getText(sourceFile)),
54
+ ]
55
+ : node.arguments);
56
+ }
57
+ // Ensure we traverse through variable declarations
58
+ if (typescript_1.default.isVariableDeclaration(node)) {
59
+ return typescript_1.default.factory.updateVariableDeclaration(node, node.name, node.exclamationToken, node.type, typescript_1.default.visitEachChild(node.initializer, visitor, ctx));
60
+ }
61
+ // Keep traversing through the rest of the tree
62
+ return typescript_1.default.visitEachChild(node, visitor, ctx);
63
+ }
64
+ return typescript_1.default.visitEachChild(sourceFile, visitor, ctx);
65
+ };
66
+ };
67
+ };
68
+ exports.makeTracingTransformer = makeTracingTransformer;
69
+ exports.default = exports.makeTracingTransformer;
70
+ function getSignatureIfSole(checker, node) {
71
+ const ds = checker.getTypeAtLocation(node).getCallSignatures();
72
+ if (ds?.length !== 1) {
73
+ return undefined;
74
+ }
75
+ return ds?.[0];
76
+ }
77
+ const quotes = [`'`, `"`];
78
+ function trimQuotations(s) {
79
+ if (s.length === 0) {
80
+ return s;
81
+ }
82
+ if (quotes.includes(s[0])) {
83
+ s = s.slice(1);
84
+ }
85
+ if (quotes.includes(s[s.length - 1])) {
86
+ s = s.slice(0, -1);
87
+ }
88
+ return s;
89
+ }
90
+ function rewritePaths(path, rewritePaths) {
91
+ if (!rewritePaths) {
92
+ return path;
93
+ }
94
+ for (const [from, to] of rewritePaths) {
95
+ const fromRegex = new RegExp(from, 'g');
96
+ path = path.replace(fromRegex, to);
97
+ }
98
+ return path;
99
+ }
100
+ //# sourceMappingURL=plugin.js.map
@@ -0,0 +1,10 @@
1
+ import { ProgramPattern } from 'ts-patch';
2
+ import ts from 'typescript';
3
+ export interface TracingPluginOptions {
4
+ readonly root?: string;
5
+ readonly rewritePaths?: ReadonlyArray<readonly [string, string]>;
6
+ }
7
+ export declare const makeTracingTransformer: (program: ts.Program, config: TracingPluginOptions) => (ctx: ts.TransformationContext) => (sourceFile: ts.SourceFile) => ts.SourceFile;
8
+ declare const _default: ProgramPattern;
9
+ export default _default;
10
+ //# sourceMappingURL=plugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/Tracing/plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAA;AACzC,OAAO,EAAE,MAAM,YAAY,CAAA;AAM3B,MAAM,WAAW,oBAAoB;IACnC,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IACtB,QAAQ,CAAC,YAAY,CAAC,EAAE,aAAa,CAAC,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAA;CACjE;AAED,eAAO,MAAM,sBAAsB,YAAa,GAAG,OAAO,UAAU,oBAAoB,WAIzE,GAAG,qBAAqB,kBACf,GAAG,UAAU,KAAG,GAAG,UAmF1C,CAAA;;AAED,wBAAuD"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../src/Tracing/plugin.ts"],"names":[],"mappings":";;;;;;AAAA,6DAA6D;AAC7D,sDAAsD;AACtD,+BAA+B;AAG/B,4DAA2B;AAE3B,MAAM,kBAAkB,GAAG,6BAA6B,CAAA;AAExD,MAAM,mBAAmB,GAAG,CAAC,KAAa,EAAE,EAAE,CAAC,kBAAkB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAA;AAOtE,MAAM,sBAAsB,GAAG,CAAC,OAAmB,EAAE,MAA4B,EAAE,EAAE;IAC1F,MAAM,OAAO,GAAG,OAAO,CAAC,cAAc,EAAE,CAAA;IACxC,MAAM,IAAI,GAAG,MAAM,EAAE,IAAI,IAAI,OAAO,CAAC,kBAAkB,EAAE,CAAC,OAAO,IAAI,OAAO,CAAC,GAAG,EAAE,CAAA;IAElF,OAAO,CAAC,GAA6B,EAAE,EAAE;QACvC,OAAO,CAAC,UAAyB,EAAiB,EAAE;YAClD,MAAM,QAAQ,GAAG,YAAY,CAAC,IAAA,eAAQ,EAAC,IAAI,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,YAAY,CAAC,CAAA;YAEvF,SAAS,QAAQ,CAAC,IAAa,EAAE,YAAqB;gBACpD,MAAM,OAAO,GAAG,UAAU,CAAC,6BAA6B,CAAC,IAAI,CAAC,MAAM,EAAE,CAAC,CAAA;gBAEvE,mGAAmG;gBACnG,sDAAsD;gBACtD,MAAM,UAAU,GAAG,oBAAE,CAAC,OAAO,CAAC,sBAAsB,CAClD,oBAAE,CAAC,OAAO,CAAC,mBAAmB,CAC5B,YAAY,CAAC,CAAC,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,EAAE,CAC7D,EACD,oBAAE,CAAC,OAAO,CAAC,WAAW,CAAC,oBAAE,CAAC,UAAU,CAAC,SAAS,CAAC,EAC/C,oBAAE,CAAC,OAAO,CAAC,mBAAmB,CAC5B,IAAI,QAAQ,IAAI,OAAO,CAAC,IAAI,GAAG,CAAC,IAAI,OAAO,CAAC,SAAS,GAAG,CAAC,EAAE,CAC5D,CACF,CAAA;gBAED,OAAO,UAAU,CAAA;YACnB,CAAC;YAED,SAAS,OAAO,CAAC,IAAa;gBAC5B,IAAI,oBAAE,CAAC,gBAAgB,CAAC,IAAI,CAAC,EAAE;oBAC7B,kEAAkE;oBAClE,MAAM,kBAAkB,GAAG,oBAAE,CAAC,UAAU,CAAC,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC,CAAA;oBAEjE,uDAAuD;oBACvD,MAAM,SAAS,GACb,OAAO,CAAC,oBAAoB,CAAC,IAAI,CAAC,IAAI,kBAAkB,CAAC,OAAO,EAAE,IAAI,CAAC,UAAU,CAAC,CAAA;oBACpF,MAAM,oBAAoB,GAAG,SAAS,EAAE,cAAc,EAAE,CAAA;oBACxD,MAAM,qBAAqB,GAAG,KAAK,CAAC,IAAI,CAAC,oBAAoB,EAAE,UAAU,IAAI,EAAE,CAAC,CAAA;oBAEhF,yDAAyD;oBACzD,MAAM,aAAa,GAAG,kBAAkB,CAAC,kBAAkB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;oBACvE,MAAM,wBAAwB,GAAG,qBAAqB,CAAC,qBAAqB,CAAC,MAAM,GAAG,CAAC,CAAC,CAAA;oBAExF,yDAAyD;oBACzD,MAAM,oBAAoB,GAAG,wBAAwB,EAAE,IAAI,CAAC,OAAO,EAAE,KAAK,SAAS,CAAA;oBACnF,MAAM,oBAAoB,GACxB,kBAAkB,CAAC,MAAM,KAAK,qBAAqB,CAAC,MAAM,GAAG,CAAC,CAAA;oBAChE,MAAM,sBAAsB,GAC1B,kBAAkB,CAAC,MAAM,KAAK,qBAAqB,CAAC,MAAM,IAAI,aAAa;wBACzE,CAAC,CAAC,aAAa,CAAC,OAAO,CAAC,UAAU,CAAC,KAAK,SAAS;4BAC/C,CAAC,mBAAmB,CAAC,aAAa,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;wBACzD,CAAC,CAAC,KAAK,CAAA;oBACX,MAAM,iBAAiB,GACrB,oBAAoB,IAAI,CAAC,oBAAoB,IAAI,sBAAsB,CAAC,CAAA;oBAE1E,4BAA4B;oBAC5B,OAAO,oBAAE,CAAC,OAAO,CAAC,oBAAoB,CACpC,IAAI,EACJ,oBAAE,CAAC,SAAS,CAAC,IAAI,CAAC,UAAU,EAAE,OAAO,CAAC,EAAE,yBAAyB;oBACjE,IAAI,CAAC,aAAa,EAClB,iBAAiB;wBACf,CAAC,CAAC,oBAAoB;4BACpB,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,mBAAmB;4BACpE,CAAC,CAAC;gCACE,iDAAiD;gCACjD,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;gCAC9B,QAAQ,CAAC,IAAI,CAAC,UAAU,EAAE,aAAa,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;6BAC7D;wBACL,CAAC,CAAC,IAAI,CAAC,SAAS,CACnB,CAAA;iBACF;gBAED,mDAAmD;gBACnD,IAAI,oBAAE,CAAC,qBAAqB,CAAC,IAAI,CAAC,EAAE;oBAClC,OAAO,oBAAE,CAAC,OAAO,CAAC,yBAAyB,CACzC,IAAI,EACJ,IAAI,CAAC,IAAI,EACT,IAAI,CAAC,gBAAgB,EACrB,IAAI,CAAC,IAAI,EACT,oBAAE,CAAC,cAAc,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,EAAE,GAAG,CAAC,CAClD,CAAA;iBACF;gBAED,+CAA+C;gBAC/C,OAAO,oBAAE,CAAC,cAAc,CAAC,IAAI,EAAE,OAAO,EAAE,GAAG,CAAC,CAAA;YAC9C,CAAC;YAED,OAAO,oBAAE,CAAC,cAAc,CAAC,UAAU,EAAE,OAAO,EAAE,GAAG,CAAC,CAAA;QACpD,CAAC,CAAA;IACH,CAAC,CAAA;AACH,CAAC,CAAA;AAxFY,QAAA,sBAAsB,0BAwFlC;AAED,kBAAe,8BAAwC,CAAA;AAEvD,SAAS,kBAAkB,CACzB,OAAuB,EACvB,IAAmB;IAEnB,MAAM,EAAE,GAAG,OAAO,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC,iBAAiB,EAAE,CAAA;IAE9D,IAAI,EAAE,EAAE,MAAM,KAAK,CAAC,EAAE;QACpB,OAAO,SAAS,CAAA;KACjB;IAED,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,CAAA;AAChB,CAAC;AAED,MAAM,MAAM,GAAG,CAAC,GAAG,EAAE,GAAG,CAAC,CAAA;AAEzB,SAAS,cAAc,CAAC,CAAS;IAC/B,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE;QAClB,OAAO,CAAC,CAAA;KACT;IAED,IAAI,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE;QACzB,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;KACf;IAED,IAAI,MAAM,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,EAAE;QACpC,CAAC,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAA;KACnB;IAED,OAAO,CAAC,CAAA;AACV,CAAC;AAED,SAAS,YAAY,CACnB,IAAY,EACZ,YAAuD;IAEvD,IAAI,CAAC,YAAY,EAAE;QACjB,OAAO,IAAI,CAAA;KACZ;IAED,KAAK,MAAM,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,YAAY,EAAE;QACrC,MAAM,SAAS,GAAG,IAAI,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAA;QAEvC,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,EAAE,CAAC,CAAA;KACnC;IAED,OAAO,IAAI,CAAA;AACb,CAAC"}
@@ -0,0 +1,10 @@
1
+ import type { Plugin } from 'vite';
2
+ export interface TracingParams {
3
+ readonly tsconfig: string;
4
+ readonly build?: boolean;
5
+ readonly serve?: boolean;
6
+ readonly dev?: boolean;
7
+ readonly ssr?: boolean;
8
+ }
9
+ export declare function tracingPlugin(params: TracingParams): Plugin;
10
+ //# sourceMappingURL=vite.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vite.d.ts","sourceRoot":"","sources":["../src/Tracing/vite.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,MAAM,CAAA;AAIlC,MAAM,WAAW,aAAa;IAE5B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;IAGzB,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,CAAA;IACxB,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,CAAA;IACxB,QAAQ,CAAC,GAAG,CAAC,EAAE,OAAO,CAAA;IACtB,QAAQ,CAAC,GAAG,CAAC,EAAE,OAAO,CAAA;CACvB;AAMD,wBAAgB,aAAa,CAAC,MAAM,EAAE,aAAa,GAAG,MAAM,CAkD3D"}
@@ -0,0 +1,54 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.tracingPlugin = void 0;
4
+ const ts_morph_1 = require("ts-morph");
5
+ const plugin_js_1 = require("./plugin.js");
6
+ const jsRegex = /.([c|m]?jsx?)$/;
7
+ const jsMapRegex = /.js.map$/;
8
+ const name = '@typed/fx/Tracing';
9
+ function tracingPlugin(params) {
10
+ console.info(`${name} :: Setting up TypeScript project...`);
11
+ const project = new ts_morph_1.Project({ tsConfigFilePath: params.tsconfig });
12
+ console.info(`${name} :: TypeScript project ready.`);
13
+ let customTransformers;
14
+ return {
15
+ name,
16
+ apply(_, env) {
17
+ const shouldRunCommand = env.command === 'build' ? params.build ?? true : params.serve ?? true;
18
+ const shouldRunMode = env.mode === 'dev' ? params.dev ?? true : true;
19
+ const shouldRunSsr = env.ssrBuild === true ? params.ssr ?? true : true;
20
+ return shouldRunCommand && shouldRunMode && shouldRunSsr;
21
+ },
22
+ configResolved(config) {
23
+ customTransformers = {
24
+ before: [
25
+ (0, plugin_js_1.makeTracingTransformer)(project.getProgram().compilerObject, {
26
+ root: config.root,
27
+ }),
28
+ ],
29
+ };
30
+ },
31
+ async transform(src, id) {
32
+ if (id.includes('node_modules')) {
33
+ return;
34
+ }
35
+ const sourceFile = project.createSourceFile(id, src, { overwrite: true });
36
+ const output = project.emitToMemory({
37
+ targetSourceFile: sourceFile,
38
+ customTransformers,
39
+ });
40
+ const files = output.getFiles();
41
+ const source = files.find((x) => jsRegex.test(x.filePath));
42
+ const sourceMap = files.find((x) => jsMapRegex.test(x.filePath));
43
+ if (!source) {
44
+ return;
45
+ }
46
+ return {
47
+ code: source.text,
48
+ map: sourceMap?.text,
49
+ };
50
+ },
51
+ };
52
+ }
53
+ exports.tracingPlugin = tracingPlugin;
54
+ //# sourceMappingURL=vite.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vite.js","sourceRoot":"","sources":["../src/Tracing/vite.ts"],"names":[],"mappings":";;;AAAA,uCAAkC;AAIlC,2CAAoD;AAapD,MAAM,OAAO,GAAG,gBAAgB,CAAA;AAChC,MAAM,UAAU,GAAG,UAAU,CAAA;AAC7B,MAAM,IAAI,GAAG,mBAAmB,CAAA;AAEhC,SAAgB,aAAa,CAAC,MAAqB;IACjD,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,sCAAsC,CAAC,CAAA;IAC3D,MAAM,OAAO,GAAG,IAAI,kBAAO,CAAC,EAAE,gBAAgB,EAAE,MAAM,CAAC,QAAQ,EAAE,CAAC,CAAA;IAClE,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,+BAA+B,CAAC,CAAA;IAEpD,IAAI,kBAAqD,CAAA;IACzD,OAAO;QACL,IAAI;QACJ,KAAK,CAAC,CAAC,EAAE,GAAG;YACV,MAAM,gBAAgB,GAAG,GAAG,CAAC,OAAO,KAAK,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,IAAI,IAAI,CAAA;YAC9F,MAAM,aAAa,GAAG,GAAG,CAAC,IAAI,KAAK,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAA;YACpE,MAAM,YAAY,GAAG,GAAG,CAAC,QAAQ,KAAK,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAA;YAEtE,OAAO,gBAAgB,IAAI,aAAa,IAAI,YAAY,CAAA;QAC1D,CAAC;QAED,cAAc,CAAC,MAAM;YACnB,kBAAkB,GAAG;gBACnB,MAAM,EAAE;oBACN,IAAA,kCAAsB,EAAC,OAAO,CAAC,UAAU,EAAE,CAAC,cAAc,EAAE;wBAC1D,IAAI,EAAE,MAAM,CAAC,IAAI;qBAClB,CAAC;iBACH;aACF,CAAA;QACH,CAAC;QAED,KAAK,CAAC,SAAS,CAAC,GAAG,EAAE,EAAE;YACrB,IAAI,EAAE,CAAC,QAAQ,CAAC,cAAc,CAAC,EAAE;gBAC/B,OAAM;aACP;YAED,MAAM,UAAU,GAAG,OAAO,CAAC,gBAAgB,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAA;YACzE,MAAM,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC;gBAClC,gBAAgB,EAAE,UAAU;gBAC5B,kBAAkB;aACnB,CAAC,CAAA;YACF,MAAM,KAAK,GAAG,MAAM,CAAC,QAAQ,EAAE,CAAA;YAC/B,MAAM,MAAM,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAA;YAC1D,MAAM,SAAS,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAA;YAEhE,IAAI,CAAC,MAAM,EAAE;gBACX,OAAM;aACP;YAED,OAAO;gBACL,IAAI,EAAE,MAAM,CAAC,IAAI;gBACjB,GAAG,EAAE,SAAS,EAAE,IAAI;aACrB,CAAA;QACH,CAAC;KACF,CAAA;AACH,CAAC;AAlDD,sCAkDC"}
@@ -0,0 +1,7 @@
1
+ {
2
+ "typescript.tsdk": "node_modules/typescript/lib",
3
+ "editor.codeActionsOnSave": {
4
+ "source.fixAll.eslint": true,
5
+ "source.addMissingImports": true
6
+ },
7
+ }