@sayoriqwq/effect-harness 0.0.1 → 0.0.2

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 (4068) hide show
  1. package/HARNESS.md +55 -23
  2. package/README.md +60 -90
  3. package/dist/bin/effect-harness.js +20 -25
  4. package/dist/bin/effect-harness.js.map +1 -1
  5. package/dist/src/cli/Main.d.ts +3 -2
  6. package/dist/src/cli/Main.js +21 -117
  7. package/dist/src/cli/Main.js.map +1 -1
  8. package/dist/src/harness/Errors.d.ts +2 -2
  9. package/dist/src/harness/Errors.js +4 -4
  10. package/dist/src/harness/Errors.js.map +1 -1
  11. package/dist/src/harness/Guardrails.d.ts +1 -4
  12. package/dist/src/harness/Guardrails.js +27 -46
  13. package/dist/src/harness/Guardrails.js.map +1 -1
  14. package/dist/src/harness/Model.d.ts +40 -32
  15. package/dist/src/harness/Model.js +92 -91
  16. package/dist/src/harness/Model.js.map +1 -1
  17. package/dist/src/harness/ProviderDiscovery.d.ts +169 -0
  18. package/dist/src/harness/ProviderDiscovery.js +153 -0
  19. package/dist/src/harness/ProviderDiscovery.js.map +1 -0
  20. package/dist/src/harness/SourcePin.d.ts +1 -9
  21. package/dist/src/harness/SourcePin.js +120 -226
  22. package/dist/src/harness/SourcePin.js.map +1 -1
  23. package/dist/src/harness/verify/JsonFields.d.ts +1 -0
  24. package/dist/src/harness/verify/JsonFields.js +4 -0
  25. package/dist/src/harness/verify/JsonFields.js.map +1 -0
  26. package/dist/src/harness/verify/Pipeline.d.ts +7 -0
  27. package/dist/src/harness/verify/Pipeline.js +55 -0
  28. package/dist/src/harness/verify/Pipeline.js.map +1 -0
  29. package/dist/src/harness/verify/ProviderProfile.d.ts +3 -0
  30. package/dist/src/harness/verify/ProviderProfile.js +706 -0
  31. package/dist/src/harness/verify/ProviderProfile.js.map +1 -0
  32. package/dist/src/harness/verify/ProviderRepository.d.ts +4 -0
  33. package/dist/src/harness/verify/ProviderRepository.js +127 -0
  34. package/dist/src/harness/verify/ProviderRepository.js.map +1 -0
  35. package/dist/src/harness/verify/Tsgo.d.ts +3 -0
  36. package/dist/src/harness/verify/Tsgo.js +166 -0
  37. package/dist/src/harness/verify/Tsgo.js.map +1 -0
  38. package/dist/src/harness/verify/TsgoMetadata.d.ts +4 -0
  39. package/dist/src/harness/verify/TsgoMetadata.js +50 -0
  40. package/dist/src/harness/verify/TsgoMetadata.js.map +1 -0
  41. package/dist/src/harness/verify/TsgoPolicy.d.ts +205 -0
  42. package/dist/src/harness/verify/TsgoPolicy.js +140 -0
  43. package/dist/src/harness/verify/TsgoPolicy.js.map +1 -0
  44. package/dist/src/harness/verify/TsgoSuppressions.d.ts +2 -0
  45. package/dist/src/harness/verify/TsgoSuppressions.js +24 -0
  46. package/dist/src/harness/verify/TsgoSuppressions.js.map +1 -0
  47. package/dist/src/harness/verify/VerifyStage.d.ts +62 -0
  48. package/dist/src/harness/verify/VerifyStage.js +85 -0
  49. package/dist/src/harness/verify/VerifyStage.js.map +1 -0
  50. package/dist/src/platform/Json.d.ts +2 -6
  51. package/dist/src/platform/Json.js +3 -22
  52. package/dist/src/platform/Json.js.map +1 -1
  53. package/dist/src/platform/Process.d.ts +1 -3
  54. package/dist/src/platform/Process.js +1 -46
  55. package/dist/src/platform/Process.js.map +1 -1
  56. package/harness/code.md +83 -0
  57. package/harness/diagnostic-layers.md +94 -0
  58. package/harness/effect-routes.md +50 -0
  59. package/harness/feedback-loop.md +156 -0
  60. package/harness/index.md +78 -17
  61. package/harness/offcial-guide.md +50 -0
  62. package/harness/offcial-migrate.md +220 -0
  63. package/harness/source.md +74 -35
  64. package/harness/tsgo-routes.md +58 -0
  65. package/harness/tsgo.md +241 -0
  66. package/package.json +30 -31
  67. package/provider/docs/diagnostics.md +48 -0
  68. package/provider/docs/discovery.md +104 -0
  69. package/provider/docs/editor-policy.md +55 -0
  70. package/provider/docs/effect-code.md +41 -0
  71. package/provider/docs/index.md +48 -0
  72. package/provider/docs/managed-surfaces.md +51 -0
  73. package/provider/docs/package-config.md +55 -0
  74. package/provider/docs/quality-policy.md +58 -0
  75. package/provider/docs/source-identity.md +48 -0
  76. package/provider/effect-harness.provider.json +984 -0
  77. package/provider/index.md +185 -0
  78. package/provider/snippets/agents.md +34 -0
  79. package/repos/effect/.changeset/add-adaptive-rate-limiter-store.md +5 -0
  80. package/repos/effect/.changeset/add-values-unprepared.md +17 -0
  81. package/repos/effect/.changeset/calm-tracers-sample.md +5 -0
  82. package/repos/effect/.changeset/curvy-birds-float.md +10 -0
  83. package/repos/effect/.changeset/eff-849-transpose-option.md +5 -0
  84. package/repos/effect/.changeset/every-olives-burn.md +5 -0
  85. package/repos/effect/.changeset/fix-2414.md +5 -0
  86. package/repos/effect/.changeset/fix-2419.md +5 -0
  87. package/repos/effect/.changeset/fix-2497.md +5 -0
  88. package/repos/effect/.changeset/fix-2499.md +5 -0
  89. package/repos/effect/.changeset/fix-anthropic-caller-toolid.md +5 -0
  90. package/repos/effect/.changeset/fix-config-array-default.md +5 -0
  91. package/repos/effect/.changeset/fix-cron-next-missing-day-overflow.md +5 -0
  92. package/repos/effect/.changeset/fix-http-tracer-response-cause.md +5 -0
  93. package/repos/effect/.changeset/fix-httpapi-malformed-json-400.md +5 -0
  94. package/repos/effect/.changeset/fix-rpc-unknown-tag-isolation.md +5 -0
  95. package/repos/effect/.changeset/fix-schema-encoding-checks.md +12 -0
  96. package/repos/effect/.changeset/fix-string-case-digits.md +5 -0
  97. package/repos/effect/.changeset/fix-workflow-defect-reply-serialization.md +5 -0
  98. package/repos/effect/.changeset/frozen-intrinsics-stack-trace-limit.md +7 -0
  99. package/repos/effect/.changeset/fuzzy-crews-fold.md +5 -0
  100. package/repos/effect/.changeset/good-trees-pull.md +5 -0
  101. package/repos/effect/.changeset/major-chairs-design.md +5 -0
  102. package/repos/effect/.changeset/many-badgers-obey.md +5 -0
  103. package/repos/effect/.changeset/modern-carrots-see.md +5 -0
  104. package/repos/effect/.changeset/neat-windows-buy.md +10 -0
  105. package/repos/effect/.changeset/openapi-generator-sse-constraint-decoder.md +7 -0
  106. package/repos/effect/.changeset/openrouter-input-audio.md +9 -0
  107. package/repos/effect/.changeset/pre.json +46 -0
  108. package/repos/effect/.changeset/pretty-moments-clap.md +5 -0
  109. package/repos/effect/.changeset/quiet-tigers-yell.md +5 -0
  110. package/repos/effect/.changeset/random-choice.md +5 -0
  111. package/repos/effect/.changeset/remove-schema-stringtree-keep-declarations.md +5 -0
  112. package/repos/effect/.changeset/rpc-client-http-early-close.md +5 -0
  113. package/repos/effect/.changeset/schema-lazy-bottom.md +13 -0
  114. package/repos/effect/.changeset/semantic-matching.md +13 -0
  115. package/repos/effect/.changeset/short-stamps-throw.md +5 -0
  116. package/repos/effect/.changeset/slick-signs-wish.md +5 -0
  117. package/repos/effect/.changeset/slick-toes-rush.md +5 -0
  118. package/repos/effect/.changeset/sqlite-bun-prepare-error-channel.md +5 -0
  119. package/repos/effect/.changeset/sqlite-do-durable-object-transactions.md +5 -0
  120. package/repos/effect/.changeset/to-codec-json-schema.md +5 -0
  121. package/repos/effect/.changeset/try-promise-catch-defect.md +11 -0
  122. package/repos/effect/.changeset/twelve-dragons-move.md +5 -0
  123. package/repos/effect/.changeset/use-url-can-parse.md +5 -0
  124. package/repos/effect/.oxlintrc.json +1 -0
  125. package/repos/effect/AGENTS.md +9 -0
  126. package/repos/effect/cookbooks/schedule.md +425 -3197
  127. package/repos/effect/migration/schema.md +38 -0
  128. package/repos/effect/package.json +3 -1
  129. package/repos/effect/packages/ai/anthropic/CHANGELOG.md +65 -0
  130. package/repos/effect/packages/ai/anthropic/package.json +1 -1
  131. package/repos/effect/packages/ai/anthropic/src/AnthropicLanguageModel.ts +3 -3
  132. package/repos/effect/packages/ai/anthropic/src/Generated.ts +2 -2
  133. package/repos/effect/packages/ai/openai/CHANGELOG.md +63 -0
  134. package/repos/effect/packages/ai/openai/package.json +1 -1
  135. package/repos/effect/packages/ai/openai/src/Generated.ts +3 -3
  136. package/repos/effect/packages/ai/openai/src/OpenAiLanguageModel.ts +2 -2
  137. package/repos/effect/packages/ai/openai/src/internal/utilities.ts +0 -6
  138. package/repos/effect/packages/ai/openai-compat/CHANGELOG.md +63 -0
  139. package/repos/effect/packages/ai/openai-compat/package.json +1 -1
  140. package/repos/effect/packages/ai/openai-compat/src/OpenAiLanguageModel.ts +1 -1
  141. package/repos/effect/packages/ai/openai-compat/src/internal/utilities.ts +0 -9
  142. package/repos/effect/packages/ai/openrouter/CHANGELOG.md +69 -0
  143. package/repos/effect/packages/ai/openrouter/package.json +1 -1
  144. package/repos/effect/packages/ai/openrouter/src/Generated.ts +3 -3
  145. package/repos/effect/packages/ai/openrouter/src/OpenRouterLanguageModel.ts +66 -1
  146. package/repos/effect/packages/ai/openrouter/test/OpenRouterLanguageModel.test.ts +265 -0
  147. package/repos/effect/packages/atom/react/CHANGELOG.md +63 -0
  148. package/repos/effect/packages/atom/react/package.json +1 -1
  149. package/repos/effect/packages/atom/solid/CHANGELOG.md +63 -0
  150. package/repos/effect/packages/atom/solid/package.json +1 -1
  151. package/repos/effect/packages/atom/vue/CHANGELOG.md +63 -0
  152. package/repos/effect/packages/atom/vue/package.json +1 -1
  153. package/repos/effect/packages/effect/CHANGELOG.md +178 -0
  154. package/repos/effect/packages/effect/SCHEMA.md +19 -38
  155. package/repos/effect/packages/effect/package.json +1 -1
  156. package/repos/effect/packages/effect/src/ChannelSchema.ts +9 -9
  157. package/repos/effect/packages/effect/src/Config.ts +15 -6
  158. package/repos/effect/packages/effect/src/ConfigProvider.ts +4 -3
  159. package/repos/effect/packages/effect/src/Context.ts +4 -5
  160. package/repos/effect/packages/effect/src/Cron.ts +4 -0
  161. package/repos/effect/packages/effect/src/Effect.ts +86 -36
  162. package/repos/effect/packages/effect/src/Latch.ts +21 -0
  163. package/repos/effect/packages/effect/src/Layer.ts +4 -4
  164. package/repos/effect/packages/effect/src/LayerMap.ts +4 -3
  165. package/repos/effect/packages/effect/src/Random.ts +42 -0
  166. package/repos/effect/packages/effect/src/Schedule.ts +8 -8
  167. package/repos/effect/packages/effect/src/Schema.ts +1071 -715
  168. package/repos/effect/packages/effect/src/SchemaAST.ts +262 -176
  169. package/repos/effect/packages/effect/src/SchemaParser.ts +85 -77
  170. package/repos/effect/packages/effect/src/SchemaTransformation.ts +5 -6
  171. package/repos/effect/packages/effect/src/String.ts +46 -12
  172. package/repos/effect/packages/effect/src/internal/effect.ts +76 -61
  173. package/repos/effect/packages/effect/src/internal/matcher.ts +0 -5
  174. package/repos/effect/packages/effect/src/internal/request.ts +1 -1
  175. package/repos/effect/packages/effect/src/internal/schema/arbitrary.ts +24 -3
  176. package/repos/effect/packages/effect/src/internal/schema/representation.ts +1 -5
  177. package/repos/effect/packages/effect/src/internal/schema/schema.ts +1 -1
  178. package/repos/effect/packages/effect/src/internal/stackTraceLimit.ts +63 -0
  179. package/repos/effect/packages/effect/src/internal/tracer.ts +4 -3
  180. package/repos/effect/packages/effect/src/testing/TestSchema.ts +14 -13
  181. package/repos/effect/packages/effect/src/unstable/ai/AnthropicStructuredOutput.ts +2 -2
  182. package/repos/effect/packages/effect/src/unstable/ai/Chat.ts +1 -1
  183. package/repos/effect/packages/effect/src/unstable/ai/LanguageModel.ts +7 -7
  184. package/repos/effect/packages/effect/src/unstable/ai/McpSchema.ts +16 -14
  185. package/repos/effect/packages/effect/src/unstable/ai/McpServer.ts +7 -7
  186. package/repos/effect/packages/effect/src/unstable/ai/OpenAiStructuredOutput.ts +2 -2
  187. package/repos/effect/packages/effect/src/unstable/ai/Response.ts +9 -5
  188. package/repos/effect/packages/effect/src/unstable/ai/Tool.ts +53 -50
  189. package/repos/effect/packages/effect/src/unstable/cli/Argument.ts +9 -8
  190. package/repos/effect/packages/effect/src/unstable/cli/Flag.ts +9 -8
  191. package/repos/effect/packages/effect/src/unstable/cli/Param.ts +11 -86
  192. package/repos/effect/packages/effect/src/unstable/cli/Primitive.ts +5 -6
  193. package/repos/effect/packages/effect/src/unstable/cli/Prompt.ts +1 -1
  194. package/repos/effect/packages/effect/src/unstable/cli/internal/ansi.ts +0 -33
  195. package/repos/effect/packages/effect/src/unstable/cli/internal/config.ts +0 -8
  196. package/repos/effect/packages/effect/src/unstable/cli/internal/parser.ts +2 -2
  197. package/repos/effect/packages/effect/src/unstable/cluster/MessageStorage.ts +1 -1
  198. package/repos/effect/packages/effect/src/unstable/cluster/Reply.ts +6 -2
  199. package/repos/effect/packages/effect/src/unstable/cluster/ShardingConfig.ts +2 -2
  200. package/repos/effect/packages/effect/src/unstable/devtools/DevToolsSchema.ts +1 -1
  201. package/repos/effect/packages/effect/src/unstable/encoding/Msgpack.ts +9 -7
  202. package/repos/effect/packages/effect/src/unstable/encoding/Ndjson.ts +10 -10
  203. package/repos/effect/packages/effect/src/unstable/encoding/Sse.ts +1 -1
  204. package/repos/effect/packages/effect/src/unstable/eventlog/Event.ts +3 -3
  205. package/repos/effect/packages/effect/src/unstable/http/HttpBody.ts +1 -1
  206. package/repos/effect/packages/effect/src/unstable/http/HttpClient.ts +78 -23
  207. package/repos/effect/packages/effect/src/unstable/http/HttpClientRequest.ts +1 -1
  208. package/repos/effect/packages/effect/src/unstable/http/HttpIncomingMessage.ts +1 -1
  209. package/repos/effect/packages/effect/src/unstable/http/HttpMiddleware.ts +12 -3
  210. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApi.ts +1 -1
  211. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiBuilder.ts +42 -26
  212. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiClient.ts +10 -10
  213. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiEndpoint.ts +45 -33
  214. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiMiddleware.ts +6 -5
  215. package/repos/effect/packages/effect/src/unstable/httpapi/HttpApiSchema.ts +16 -43
  216. package/repos/effect/packages/effect/src/unstable/httpapi/OpenApi.ts +5 -5
  217. package/repos/effect/packages/effect/src/unstable/observability/OtlpTracer.ts +2 -1
  218. package/repos/effect/packages/effect/src/unstable/observability/internal/otlpProtobuf.ts +0 -75
  219. package/repos/effect/packages/effect/src/unstable/observability/internal/protobuf.ts +0 -42
  220. package/repos/effect/packages/effect/src/unstable/persistence/KeyValueStore.ts +2 -2
  221. package/repos/effect/packages/effect/src/unstable/persistence/Persistable.ts +7 -7
  222. package/repos/effect/packages/effect/src/unstable/persistence/PersistedQueue.ts +4 -4
  223. package/repos/effect/packages/effect/src/unstable/persistence/Persistence.ts +5 -5
  224. package/repos/effect/packages/effect/src/unstable/persistence/RateLimiter.ts +599 -5
  225. package/repos/effect/packages/effect/src/unstable/reactivity/AsyncResult.ts +4 -4
  226. package/repos/effect/packages/effect/src/unstable/reactivity/Atom.ts +1 -1
  227. package/repos/effect/packages/effect/src/unstable/reactivity/AtomHttpApi.ts +1 -1
  228. package/repos/effect/packages/effect/src/unstable/rpc/Rpc.ts +7 -8
  229. package/repos/effect/packages/effect/src/unstable/rpc/RpcClient.ts +26 -4
  230. package/repos/effect/packages/effect/src/unstable/rpc/RpcGroup.ts +3 -4
  231. package/repos/effect/packages/effect/src/unstable/rpc/RpcMessage.ts +19 -0
  232. package/repos/effect/packages/effect/src/unstable/rpc/RpcMiddleware.ts +6 -5
  233. package/repos/effect/packages/effect/src/unstable/rpc/RpcSchema.ts +12 -9
  234. package/repos/effect/packages/effect/src/unstable/rpc/RpcServer.ts +4 -4
  235. package/repos/effect/packages/effect/src/unstable/rpc/RpcWorker.ts +3 -3
  236. package/repos/effect/packages/effect/src/unstable/schema/Model.ts +2 -2
  237. package/repos/effect/packages/effect/src/unstable/schema/VariantSchema.ts +19 -17
  238. package/repos/effect/packages/effect/src/unstable/sql/SqlConnection.ts +5 -0
  239. package/repos/effect/packages/effect/src/unstable/sql/SqlModel.ts +2 -2
  240. package/repos/effect/packages/effect/src/unstable/sql/SqlResolver.ts +21 -8
  241. package/repos/effect/packages/effect/src/unstable/sql/SqlSchema.ts +5 -5
  242. package/repos/effect/packages/effect/src/unstable/sql/Statement.ts +11 -0
  243. package/repos/effect/packages/effect/src/unstable/workflow/Activity.ts +8 -6
  244. package/repos/effect/packages/effect/src/unstable/workflow/DurableDeferred.ts +33 -33
  245. package/repos/effect/packages/effect/src/unstable/workflow/Workflow.ts +5 -5
  246. package/repos/effect/packages/effect/src/unstable/workflow/WorkflowEngine.ts +11 -11
  247. package/repos/effect/packages/effect/test/Config.test.ts +60 -0
  248. package/repos/effect/packages/effect/test/ConfigProvider.test.ts +11 -0
  249. package/repos/effect/packages/effect/test/Cron.test.ts +15 -0
  250. package/repos/effect/packages/effect/test/Effect.test.ts +252 -0
  251. package/repos/effect/packages/effect/test/Latch.test.ts +12 -0
  252. package/repos/effect/packages/effect/test/Random.test.ts +37 -0
  253. package/repos/effect/packages/effect/test/Request.test.ts +28 -0
  254. package/repos/effect/packages/effect/test/Schedule.test.ts +21 -4
  255. package/repos/effect/packages/effect/test/StackTraceLimit.test.ts +60 -0
  256. package/repos/effect/packages/effect/test/String.test.ts +25 -0
  257. package/repos/effect/packages/effect/test/cluster/ClusterWorkflowEngine.test.ts +42 -1
  258. package/repos/effect/packages/effect/test/rpc/RpcClient.test.ts +28 -3
  259. package/repos/effect/packages/effect/test/schema/Schema.test.ts +621 -109
  260. package/repos/effect/packages/effect/test/schema/SchemaAST.test.ts +132 -11
  261. package/repos/effect/packages/effect/test/schema/representation/fromASTs.test.ts +291 -2
  262. package/repos/effect/packages/effect/test/schema/representation/toCodeDocument.test.ts +1 -1
  263. package/repos/effect/packages/effect/test/schema/toArbitrary.test.ts +21 -6
  264. package/repos/effect/packages/effect/test/schema/toCodec.test.ts +94 -50
  265. package/repos/effect/packages/effect/test/schema/toEquivalence.test.ts +7 -0
  266. package/repos/effect/packages/effect/test/schema/toFormatter.test.ts +9 -1
  267. package/repos/effect/packages/effect/test/schema/toJsonSchemaDocument.test.ts +1 -1
  268. package/repos/effect/packages/effect/test/schema/v3-v4.test.ts +6 -6
  269. package/repos/effect/packages/effect/test/unstable/ai/AnthropicStructuredOutput.test.ts +2 -2
  270. package/repos/effect/packages/effect/test/unstable/ai/OpenAiStructuredOutput.test.ts +2 -2
  271. package/repos/effect/packages/effect/test/unstable/cli/Arguments.test.ts +8 -2
  272. package/repos/effect/packages/effect/test/unstable/cli/Param.test.ts +8 -2
  273. package/repos/effect/packages/effect/test/unstable/cli/Primitive.test.ts +16 -2
  274. package/repos/effect/packages/effect/test/unstable/cli/Prompt.test.ts +32 -0
  275. package/repos/effect/packages/effect/test/unstable/http/HttpClient.test.ts +442 -1
  276. package/repos/effect/packages/effect/test/unstable/http/HttpMiddleware.test.ts +41 -0
  277. package/repos/effect/packages/effect/test/unstable/httpapi/HttpApiBuilder.test.ts +58 -1
  278. package/repos/effect/packages/effect/test/unstable/httpapi/HttpApiSchema.test.ts +16 -2
  279. package/repos/effect/packages/effect/test/unstable/persistence/RateLimiter.test.ts +697 -0
  280. package/repos/effect/packages/effect/test/unstable/sql/SqlResolver.test.ts +37 -0
  281. package/repos/effect/packages/effect/typeperf/README.md +176 -0
  282. package/repos/effect/packages/effect/typeperf/config.json +99 -0
  283. package/repos/effect/packages/effect/typeperf/run.mjs +195 -0
  284. package/repos/effect/packages/effect/typeperf/suites/schema/baseline.ts +4 -0
  285. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/array.ts +14 -0
  286. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/brand.ts +10 -0
  287. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/decode-unknown-effect.ts +8 -0
  288. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/encode-unknown-effect.ts +8 -0
  289. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/exit.ts +14 -0
  290. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/non-empty-array.ts +14 -0
  291. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/record.ts +14 -0
  292. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-mixed.ts +22 -0
  293. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-mutable-only.ts +22 -0
  294. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-optional-only.ts +22 -0
  295. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-required.ts +22 -0
  296. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/struct-with-rest.ts +17 -0
  297. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/tagged-union.ts +16 -0
  298. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-codec-array-from-single.ts +12 -0
  299. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-codec-json.ts +13 -0
  300. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-codec-string-tree.ts +10 -0
  301. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-encoded.ts +10 -0
  302. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-standard-json-schema.ts +11 -0
  303. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/to-type.ts +10 -0
  304. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/tuple-with-rest.ts +20 -0
  305. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/tuple.ts +16 -0
  306. package/repos/effect/packages/effect/typeperf/suites/schema/fixtures/union.ts +15 -0
  307. package/repos/effect/packages/effect/typeperf/suites/schema/thresholds.json +68 -0
  308. package/repos/effect/packages/effect/typetest/Config.tst.ts +12 -0
  309. package/repos/effect/packages/effect/typetest/Effect.tst.ts +70 -0
  310. package/repos/effect/packages/effect/typetest/Random.tst.ts +22 -0
  311. package/repos/effect/packages/effect/typetest/schema/Array.tst.ts +18 -0
  312. package/repos/effect/packages/effect/typetest/schema/Schema.tst.ts +96 -1
  313. package/repos/effect/packages/effect/typetest/schema/Struct.tst.ts +49 -19
  314. package/repos/effect/packages/effect/typetest/schema/Union.tst.ts +18 -0
  315. package/repos/effect/packages/effect/typetest/schema/toArbitrary.tst.ts +1 -1
  316. package/repos/effect/packages/opentelemetry/CHANGELOG.md +65 -0
  317. package/repos/effect/packages/opentelemetry/package.json +1 -1
  318. package/repos/effect/packages/opentelemetry/src/Tracer.ts +1 -1
  319. package/repos/effect/packages/opentelemetry/test/Tracer.test.ts +16 -0
  320. package/repos/effect/packages/platform-browser/CHANGELOG.md +63 -0
  321. package/repos/effect/packages/platform-browser/package.json +1 -1
  322. package/repos/effect/packages/platform-bun/CHANGELOG.md +72 -0
  323. package/repos/effect/packages/platform-bun/package.json +1 -1
  324. package/repos/effect/packages/platform-node/CHANGELOG.md +74 -0
  325. package/repos/effect/packages/platform-node/package.json +1 -1
  326. package/repos/effect/packages/platform-node/src/NodeHttpServer.ts +4 -3
  327. package/repos/effect/packages/platform-node/test/RpcServer.test.ts +81 -2
  328. package/repos/effect/packages/platform-node-shared/CHANGELOG.md +63 -0
  329. package/repos/effect/packages/platform-node-shared/package.json +1 -1
  330. package/repos/effect/packages/platform-node-shared/test/fixtures/bash/parent-exits-early.sh +0 -0
  331. package/repos/effect/packages/platform-node-shared/test/fixtures/bash/spawn-children.sh +0 -0
  332. package/repos/effect/packages/sql/clickhouse/CHANGELOG.md +74 -0
  333. package/repos/effect/packages/sql/clickhouse/package.json +1 -1
  334. package/repos/effect/packages/sql/clickhouse/src/ClickhouseClient.ts +3 -0
  335. package/repos/effect/packages/sql/d1/CHANGELOG.md +65 -0
  336. package/repos/effect/packages/sql/d1/package.json +1 -1
  337. package/repos/effect/packages/sql/d1/src/D1Client.ts +18 -0
  338. package/repos/effect/packages/sql/libsql/CHANGELOG.md +65 -0
  339. package/repos/effect/packages/sql/libsql/package.json +1 -1
  340. package/repos/effect/packages/sql/libsql/src/LibsqlClient.ts +3 -0
  341. package/repos/effect/packages/sql/mssql/CHANGELOG.md +71 -0
  342. package/repos/effect/packages/sql/mssql/package.json +1 -1
  343. package/repos/effect/packages/sql/mssql/src/MssqlClient.ts +16 -1
  344. package/repos/effect/packages/sql/mysql2/CHANGELOG.md +65 -0
  345. package/repos/effect/packages/sql/mysql2/package.json +1 -1
  346. package/repos/effect/packages/sql/mysql2/src/MysqlClient.ts +3 -0
  347. package/repos/effect/packages/sql/pg/CHANGELOG.md +65 -0
  348. package/repos/effect/packages/sql/pg/package.json +1 -1
  349. package/repos/effect/packages/sql/pg/src/PgClient.ts +3 -0
  350. package/repos/effect/packages/sql/pglite/CHANGELOG.md +65 -0
  351. package/repos/effect/packages/sql/pglite/package.json +1 -1
  352. package/repos/effect/packages/sql/pglite/src/PgliteClient.ts +10 -0
  353. package/repos/effect/packages/sql/sqlite-bun/CHANGELOG.md +67 -0
  354. package/repos/effect/packages/sql/sqlite-bun/package.json +1 -1
  355. package/repos/effect/packages/sql/sqlite-bun/src/SqliteClient.ts +15 -9
  356. package/repos/effect/packages/sql/sqlite-do/CHANGELOG.md +67 -0
  357. package/repos/effect/packages/sql/sqlite-do/package.json +1 -1
  358. package/repos/effect/packages/sql/sqlite-do/src/SqliteClient.ts +122 -30
  359. package/repos/effect/packages/sql/sqlite-do/src/SqliteMigrator.ts +19 -4
  360. package/repos/effect/packages/sql/sqlite-do/test/Client.test.ts +304 -9
  361. package/repos/effect/packages/sql/sqlite-node/CHANGELOG.md +65 -0
  362. package/repos/effect/packages/sql/sqlite-node/package.json +1 -1
  363. package/repos/effect/packages/sql/sqlite-node/src/SqliteClient.ts +22 -0
  364. package/repos/effect/packages/sql/sqlite-node/test/Client.test.ts +2 -0
  365. package/repos/effect/packages/sql/sqlite-react-native/CHANGELOG.md +65 -0
  366. package/repos/effect/packages/sql/sqlite-react-native/package.json +1 -1
  367. package/repos/effect/packages/sql/sqlite-react-native/src/SqliteClient.ts +3 -0
  368. package/repos/effect/packages/sql/sqlite-wasm/CHANGELOG.md +65 -0
  369. package/repos/effect/packages/sql/sqlite-wasm/package.json +1 -1
  370. package/repos/effect/packages/sql/sqlite-wasm/src/SqliteClient.ts +6 -0
  371. package/repos/effect/packages/tools/ai-docgen/src/main.ts +3 -1
  372. package/repos/effect/packages/tools/bundle/README.md +226 -0
  373. package/repos/effect/packages/tools/bundle/fixtures/schema-class.ts +12 -0
  374. package/repos/effect/packages/tools/bundle/src/Cli.ts +23 -4
  375. package/repos/effect/packages/tools/bundle/src/Plugins.ts +55 -10
  376. package/repos/effect/packages/tools/bundle/src/Reporter.ts +106 -7
  377. package/repos/effect/packages/tools/bundle/src/Rollup.ts +24 -2
  378. package/repos/effect/packages/tools/bundle/src/bin.ts +0 -0
  379. package/repos/effect/packages/tools/bundle/test/Plugins.test.ts +74 -0
  380. package/repos/effect/packages/tools/bundle/vitest.config.ts +6 -0
  381. package/repos/effect/packages/tools/jsdocs/src/Jsdocs.ts +61 -0
  382. package/repos/effect/packages/tools/jsdocs/src/bin.ts +20 -8
  383. package/repos/effect/packages/tools/jsdocs/test/jsdocs.test.ts +54 -1
  384. package/repos/effect/packages/tools/openapi-generator/CHANGELOG.md +76 -0
  385. package/repos/effect/packages/tools/openapi-generator/package.json +1 -1
  386. package/repos/effect/packages/tools/openapi-generator/src/OpenApiTransformer.ts +3 -3
  387. package/repos/effect/packages/tools/openapi-generator/src/bin.ts +0 -0
  388. package/repos/effect/packages/tools/openapi-generator/test/OpenApiGenerator.test.ts +4 -3
  389. package/repos/effect/packages/tools/oxc/oxlintrc.json +1 -0
  390. package/repos/effect/packages/tools/oxc/src/oxlint/index.ts +2 -0
  391. package/repos/effect/packages/tools/oxc/src/oxlint/rules/no-unused-internal.ts +642 -0
  392. package/repos/effect/packages/tools/oxc/test/no-unused-internal.test.ts +129 -0
  393. package/repos/effect/packages/tools/utils/src/bin.ts +0 -0
  394. package/repos/effect/packages/vitest/CHANGELOG.md +63 -0
  395. package/repos/effect/packages/vitest/package.json +1 -1
  396. package/repos/effect/scripts/bundle-analyze.sh +61 -0
  397. package/repos/effect/scripts/bundle-compare-selected.sh +97 -0
  398. package/repos/effect/scripts/bundle-compare.sh +0 -0
  399. package/repos/effect/scripts/worktree-setup.sh +0 -0
  400. package/repos/effect/tsconfig.json +3 -0
  401. package/repos/effect/tsconfig.packages.json +1 -0
  402. package/repos/effect.subtree.json +36 -12
  403. package/repos/tsgo/.changeset/config.json +22 -0
  404. package/repos/tsgo/.cuggino.json +1 -0
  405. package/repos/tsgo/.gitattributes +1 -0
  406. package/repos/tsgo/.github/workflows/ci.yml +105 -0
  407. package/repos/tsgo/.github/workflows/generate-stable-branch.yml +173 -0
  408. package/repos/tsgo/.github/workflows/refresh-flake-hash.yml +90 -0
  409. package/repos/tsgo/.github/workflows/release.yml +148 -0
  410. package/repos/tsgo/.github/workflows/update-typescript-go.yml +315 -0
  411. package/repos/tsgo/.github/workflows/validate-generated-stable.yml +152 -0
  412. package/repos/tsgo/.github/workflows/version.yml +48 -0
  413. package/repos/tsgo/.gitmodules +4 -0
  414. package/repos/tsgo/.golangci.yml +92 -0
  415. package/repos/tsgo/.opencode/commands/port-commit.md +25 -0
  416. package/repos/tsgo/.specs/ast-navigation-utilities.md +118 -0
  417. package/repos/tsgo/.specs/auto-import-style-overrides.md +75 -0
  418. package/repos/tsgo/.specs/cli-platform-filesystem.md +24 -0
  419. package/repos/tsgo/.specs/completion-infrastructure.md +105 -0
  420. package/repos/tsgo/.specs/deterministic-keys.md +138 -0
  421. package/repos/tsgo/.specs/diagnostic-metadata-generation.md +131 -0
  422. package/repos/tsgo/.specs/diagnostic-metadata-previews.md +97 -0
  423. package/repos/tsgo/.specs/diagnostics-and-quickfixes-patterns.md +231 -0
  424. package/repos/tsgo/.specs/document-symbol-postprocessing.md +68 -0
  425. package/repos/tsgo/.specs/duplicate-package.md +52 -0
  426. package/repos/tsgo/.specs/effect-fn-opportunity-layer-members.md +31 -0
  427. package/repos/tsgo/.specs/effect-links-type-cache.md +144 -0
  428. package/repos/tsgo/.specs/effect-type-version-detection.md +37 -0
  429. package/repos/tsgo/.specs/fixable-context.md +123 -0
  430. package/repos/tsgo/.specs/inlay-hints-gen-suppression.md +53 -0
  431. package/repos/tsgo/.specs/layer-info-mermaid-links.md +59 -0
  432. package/repos/tsgo/.specs/missed-pipeable-opportunity.md +82 -0
  433. package/repos/tsgo/.specs/missing-effect-error-return-awareness.md +21 -0
  434. package/repos/tsgo/.specs/path-scoped-diagnostic-config.md +265 -0
  435. package/repos/tsgo/.specs/perf-replace-iterchildren-with-foreachchild.md +124 -0
  436. package/repos/tsgo/.specs/quick-fix-baselines.md +59 -0
  437. package/repos/tsgo/.specs/refactor-infrastructure.md +93 -0
  438. package/repos/tsgo/.specs/release-prepare.md +39 -0
  439. package/repos/tsgo/.specs/rule-context.md +82 -0
  440. package/repos/tsgo/.specs/scope-aware-global-diagnostics.md +68 -0
  441. package/repos/tsgo/.specs/setup-diagnostic-prompt-parity.md +47 -0
  442. package/repos/tsgo/.specs/setup-implicit-prepare-script.md +27 -0
  443. package/repos/tsgo/.specs/setup-unified-pipeline.md +41 -0
  444. package/repos/tsgo/.specs/tsconfig-schema-generation.md +46 -0
  445. package/repos/tsgo/.specs/tsgo-cli-only.md +33 -0
  446. package/repos/tsgo/.specs/wildcard-directives.md +45 -0
  447. package/repos/tsgo/.vscode/settings.json +33 -0
  448. package/repos/tsgo/AGENTS.md +63 -0
  449. package/repos/tsgo/LICENSE +21 -0
  450. package/repos/tsgo/README.md +297 -0
  451. package/repos/tsgo/_packages/tsgo/CHANGELOG.md +619 -0
  452. package/repos/tsgo/_packages/tsgo/LICENSE +21 -0
  453. package/repos/tsgo/_packages/tsgo/package.json +50 -0
  454. package/repos/tsgo/_packages/tsgo/src/ansi.ts +29 -0
  455. package/repos/tsgo/_packages/tsgo/src/cli.ts +348 -0
  456. package/repos/tsgo/_packages/tsgo/src/config.ts +38 -0
  457. package/repos/tsgo/_packages/tsgo/src/metadata.json +2020 -0
  458. package/repos/tsgo/_packages/tsgo/src/presets.ts +133 -0
  459. package/repos/tsgo/_packages/tsgo/src/setup/assessment.ts +233 -0
  460. package/repos/tsgo/_packages/tsgo/src/setup/changes.ts +969 -0
  461. package/repos/tsgo/_packages/tsgo/src/setup/consts.ts +55 -0
  462. package/repos/tsgo/_packages/tsgo/src/setup/diff-renderer.ts +295 -0
  463. package/repos/tsgo/_packages/tsgo/src/setup/errors.ts +26 -0
  464. package/repos/tsgo/_packages/tsgo/src/setup/index.ts +31 -0
  465. package/repos/tsgo/_packages/tsgo/src/setup/rule-info.ts +69 -0
  466. package/repos/tsgo/_packages/tsgo/src/setup/rule-prompt.ts +614 -0
  467. package/repos/tsgo/_packages/tsgo/src/setup/target-prompt.ts +169 -0
  468. package/repos/tsgo/_packages/tsgo/src/setup/target.ts +34 -0
  469. package/repos/tsgo/_packages/tsgo/src/setup/tsconfig-prompt.ts +93 -0
  470. package/repos/tsgo/_packages/tsgo/src/setup/types.ts +98 -0
  471. package/repos/tsgo/_packages/tsgo/test/config-cli.test.ts +84 -0
  472. package/repos/tsgo/_packages/tsgo/test/presets.test.ts +48 -0
  473. package/repos/tsgo/_packages/tsgo/test/setup/__snapshots__/setup-cli.test.ts.snap +866 -0
  474. package/repos/tsgo/_packages/tsgo/test/setup/changes.test.ts +668 -0
  475. package/repos/tsgo/_packages/tsgo/test/setup/consts.test.ts +38 -0
  476. package/repos/tsgo/_packages/tsgo/test/setup/diff-renderer.test.ts +225 -0
  477. package/repos/tsgo/_packages/tsgo/test/setup/setup-cli.test.ts +797 -0
  478. package/repos/tsgo/_packages/tsgo/tsconfig.json +7 -0
  479. package/repos/tsgo/_packages/tsgo/tsconfig.src.json +17 -0
  480. package/repos/tsgo/_packages/tsgo/tsconfig.test.json +18 -0
  481. package/repos/tsgo/_packages/tsgo/tsdown.config.ts +37 -0
  482. package/repos/tsgo/_packages/tsgo/vitest.config.ts +7 -0
  483. package/repos/tsgo/_packages/tsgo-darwin-arm64/CHANGELOG.md +193 -0
  484. package/repos/tsgo/_packages/tsgo-darwin-arm64/LICENSE +21 -0
  485. package/repos/tsgo/_packages/tsgo-darwin-arm64/README.md +1 -0
  486. package/repos/tsgo/_packages/tsgo-darwin-arm64/package.json +29 -0
  487. package/repos/tsgo/_packages/tsgo-darwin-x64/CHANGELOG.md +193 -0
  488. package/repos/tsgo/_packages/tsgo-darwin-x64/LICENSE +21 -0
  489. package/repos/tsgo/_packages/tsgo-darwin-x64/README.md +1 -0
  490. package/repos/tsgo/_packages/tsgo-darwin-x64/package.json +29 -0
  491. package/repos/tsgo/_packages/tsgo-linux-arm/CHANGELOG.md +193 -0
  492. package/repos/tsgo/_packages/tsgo-linux-arm/LICENSE +21 -0
  493. package/repos/tsgo/_packages/tsgo-linux-arm/README.md +1 -0
  494. package/repos/tsgo/_packages/tsgo-linux-arm/package.json +29 -0
  495. package/repos/tsgo/_packages/tsgo-linux-arm64/CHANGELOG.md +193 -0
  496. package/repos/tsgo/_packages/tsgo-linux-arm64/LICENSE +21 -0
  497. package/repos/tsgo/_packages/tsgo-linux-arm64/README.md +1 -0
  498. package/repos/tsgo/_packages/tsgo-linux-arm64/package.json +29 -0
  499. package/repos/tsgo/_packages/tsgo-linux-x64/CHANGELOG.md +193 -0
  500. package/repos/tsgo/_packages/tsgo-linux-x64/LICENSE +21 -0
  501. package/repos/tsgo/_packages/tsgo-linux-x64/README.md +1 -0
  502. package/repos/tsgo/_packages/tsgo-linux-x64/package.json +29 -0
  503. package/repos/tsgo/_packages/tsgo-win32-arm64/CHANGELOG.md +193 -0
  504. package/repos/tsgo/_packages/tsgo-win32-arm64/LICENSE +21 -0
  505. package/repos/tsgo/_packages/tsgo-win32-arm64/README.md +1 -0
  506. package/repos/tsgo/_packages/tsgo-win32-arm64/package.json +29 -0
  507. package/repos/tsgo/_packages/tsgo-win32-x64/CHANGELOG.md +193 -0
  508. package/repos/tsgo/_packages/tsgo-win32-x64/LICENSE +21 -0
  509. package/repos/tsgo/_packages/tsgo-win32-x64/README.md +1 -0
  510. package/repos/tsgo/_packages/tsgo-win32-x64/package.json +29 -0
  511. package/repos/tsgo/_patches/001-cmd-tsgo-main.patch +16 -0
  512. package/repos/tsgo/_patches/002-checker-checker.patch +74 -0
  513. package/repos/tsgo/_patches/003-checker-exports.patch +27 -0
  514. package/repos/tsgo/_patches/004-checker-relater.patch +23 -0
  515. package/repos/tsgo/_patches/005-checker-types.patch +26 -0
  516. package/repos/tsgo/_patches/006-compiler-program.patch +15 -0
  517. package/repos/tsgo/_patches/007-core-compileroptions.patch +23 -0
  518. package/repos/tsgo/_patches/008-diagnostics-generate.patch +20 -0
  519. package/repos/tsgo/_patches/009-execute-tsc-emit.patch +69 -0
  520. package/repos/tsgo/_patches/010-fourslash-fourslash.patch +417 -0
  521. package/repos/tsgo/_patches/011-ls-codeactions.patch +117 -0
  522. package/repos/tsgo/_patches/012-ls-hover.patch +41 -0
  523. package/repos/tsgo/_patches/013-tsoptions-parsinghelpers.patch +69 -0
  524. package/repos/tsgo/_patches/014-ast-utilities-nil-check.patch +13 -0
  525. package/repos/tsgo/_patches/015-ls-inlay-hints.patch +36 -0
  526. package/repos/tsgo/_patches/017-ls-server-refactor-capability.patch +12 -0
  527. package/repos/tsgo/_patches/018-ls-autoimport-stylepolicy.patch +170 -0
  528. package/repos/tsgo/_patches/021-core-version-suffix.patch +18 -0
  529. package/repos/tsgo/_patches/022-ls-completions.patch +55 -0
  530. package/repos/tsgo/_patches/023-checker-effect-links.patch +12 -0
  531. package/repos/tsgo/_patches/024-ls-document-symbols.patch +36 -0
  532. package/repos/tsgo/_patches/025-tsoptions-diagnostic-scopes.patch +31 -0
  533. package/repos/tsgo/_patches/027-ls-autoimport-view.patch +42 -0
  534. package/repos/tsgo/_tools/gen_shims/main.go +516 -0
  535. package/repos/tsgo/_tools/perf-check-tsgo.sh +166 -0
  536. package/repos/tsgo/_tools/release-prepare.sh +190 -0
  537. package/repos/tsgo/_tools/setup-repo.sh +129 -0
  538. package/repos/tsgo/_tools/tsconfig-base-schema.json +1383 -0
  539. package/repos/tsgo/_tools/update-flake-vendor-hash.sh +137 -0
  540. package/repos/tsgo/_tools/version-prepare.sh +24 -0
  541. package/repos/tsgo/etscheckerhooks/doc.go +6 -0
  542. package/repos/tsgo/etscheckerhooks/external_library_test.go +98 -0
  543. package/repos/tsgo/etscheckerhooks/init.go +42 -0
  544. package/repos/tsgo/etscore/climode.go +23 -0
  545. package/repos/tsgo/etscore/climode_test.go +59 -0
  546. package/repos/tsgo/etscore/consts.go +5 -0
  547. package/repos/tsgo/etscore/go.mod +7 -0
  548. package/repos/tsgo/etscore/options.go +367 -0
  549. package/repos/tsgo/etscore/options_parser.go +488 -0
  550. package/repos/tsgo/etscore/options_schema_test.go +423 -0
  551. package/repos/tsgo/etscore/options_test.go +685 -0
  552. package/repos/tsgo/etscore/severity.go +79 -0
  553. package/repos/tsgo/etscore/version_generated.go +5 -0
  554. package/repos/tsgo/etscore/version_generated_test.go +36 -0
  555. package/repos/tsgo/etsexecutehooks/doc.go +11 -0
  556. package/repos/tsgo/etsexecutehooks/init.go +58 -0
  557. package/repos/tsgo/etsexecutehooks/init_test.go +292 -0
  558. package/repos/tsgo/etslshooks/doc.go +15 -0
  559. package/repos/tsgo/etslshooks/document_symbols.go +556 -0
  560. package/repos/tsgo/etslshooks/init.go +359 -0
  561. package/repos/tsgo/etslshooks/inlay_hints.go +108 -0
  562. package/repos/tsgo/etstesthooks/doc.go +10 -0
  563. package/repos/tsgo/etstesthooks/init.go +45 -0
  564. package/repos/tsgo/etstesthooks/init_test.go +71 -0
  565. package/repos/tsgo/flake.lock +80 -0
  566. package/repos/tsgo/flake.nix +189 -0
  567. package/repos/tsgo/go.mod +107 -0
  568. package/repos/tsgo/go.sum +24 -0
  569. package/repos/tsgo/go.work +47 -0
  570. package/repos/tsgo/go.work.sum +34 -0
  571. package/repos/tsgo/internal/autoimportstyle/stylepolicy.go +266 -0
  572. package/repos/tsgo/internal/autoimportstyle/stylepolicy_test.go +462 -0
  573. package/repos/tsgo/internal/bundledeffect/effect.go +105 -0
  574. package/repos/tsgo/internal/codefixes/disable_diagnostics.go +44 -0
  575. package/repos/tsgo/internal/codegen/codegen.go +21 -0
  576. package/repos/tsgo/internal/codegens/codegens.go +27 -0
  577. package/repos/tsgo/internal/completion/completion.go +25 -0
  578. package/repos/tsgo/internal/completion/context.go +46 -0
  579. package/repos/tsgo/internal/completion/position.go +136 -0
  580. package/repos/tsgo/internal/completion/position_test.go +121 -0
  581. package/repos/tsgo/internal/completions/completions.go +33 -0
  582. package/repos/tsgo/internal/completions/context_self_in_classes.go +144 -0
  583. package/repos/tsgo/internal/completions/context_self_in_classes_test.go +162 -0
  584. package/repos/tsgo/internal/completions/duration_input.go +85 -0
  585. package/repos/tsgo/internal/completions/duration_input_test.go +95 -0
  586. package/repos/tsgo/internal/completions/effect_codegens_comment.go +57 -0
  587. package/repos/tsgo/internal/completions/effect_codegens_comment_test.go +121 -0
  588. package/repos/tsgo/internal/completions/effect_data_classes.go +66 -0
  589. package/repos/tsgo/internal/completions/effect_diagnostics_comment.go +68 -0
  590. package/repos/tsgo/internal/completions/effect_diagnostics_comment_test.go +145 -0
  591. package/repos/tsgo/internal/completions/effect_jsdoc_comment.go +42 -0
  592. package/repos/tsgo/internal/completions/effect_jsdoc_comment_test.go +112 -0
  593. package/repos/tsgo/internal/completions/effect_rpc_make_classes.go +56 -0
  594. package/repos/tsgo/internal/completions/effect_rpc_make_classes_test.go +67 -0
  595. package/repos/tsgo/internal/completions/effect_schema_self_in_classes.go +200 -0
  596. package/repos/tsgo/internal/completions/effect_self_in_classes.go +78 -0
  597. package/repos/tsgo/internal/completions/effect_self_in_classes_test.go +67 -0
  598. package/repos/tsgo/internal/completions/effect_sql_model_self_in_classes.go +62 -0
  599. package/repos/tsgo/internal/completions/effect_sql_model_self_in_classes_test.go +67 -0
  600. package/repos/tsgo/internal/completions/fn_function_star.go +90 -0
  601. package/repos/tsgo/internal/completions/fn_function_star_test.go +125 -0
  602. package/repos/tsgo/internal/completions/fourslash_test.go +177 -0
  603. package/repos/tsgo/internal/completions/gen_function_star.go +59 -0
  604. package/repos/tsgo/internal/completions/schema_brand.go +63 -0
  605. package/repos/tsgo/internal/completions/schema_brand_test.go +54 -0
  606. package/repos/tsgo/internal/diagnostics/effectDiagnosticMessages.json +390 -0
  607. package/repos/tsgo/internal/directives/parser.go +344 -0
  608. package/repos/tsgo/internal/directives/parser_test.go +926 -0
  609. package/repos/tsgo/internal/effectconfigraw/hooks.go +338 -0
  610. package/repos/tsgo/internal/effecttest/autoimport_style_consistency_test.go +435 -0
  611. package/repos/tsgo/internal/effecttest/baseline.go +638 -0
  612. package/repos/tsgo/internal/effecttest/completion_test.go +134 -0
  613. package/repos/tsgo/internal/effecttest/document_symbols_baseline.go +99 -0
  614. package/repos/tsgo/internal/effecttest/document_symbols_runner.go +234 -0
  615. package/repos/tsgo/internal/effecttest/document_symbols_runner_test.go +64 -0
  616. package/repos/tsgo/internal/effecttest/effect_in_failure_ts2589_test.go +216 -0
  617. package/repos/tsgo/internal/effecttest/feature_flags_test.go +266 -0
  618. package/repos/tsgo/internal/effecttest/hover_test.go +310 -0
  619. package/repos/tsgo/internal/effecttest/inlay_hints_baseline_test.go +177 -0
  620. package/repos/tsgo/internal/effecttest/inlay_hints_test.go +214 -0
  621. package/repos/tsgo/internal/effecttest/issue_173_test.go +84 -0
  622. package/repos/tsgo/internal/effecttest/quickfix_baseline.go +161 -0
  623. package/repos/tsgo/internal/effecttest/quickfix_runner.go +132 -0
  624. package/repos/tsgo/internal/effecttest/quickfix_runner_test.go +67 -0
  625. package/repos/tsgo/internal/effecttest/refactor_baseline.go +122 -0
  626. package/repos/tsgo/internal/effecttest/refactor_runner.go +251 -0
  627. package/repos/tsgo/internal/effecttest/refactor_runner_test.go +67 -0
  628. package/repos/tsgo/internal/effecttest/runner.go +401 -0
  629. package/repos/tsgo/internal/effecttest/runner_test.go +62 -0
  630. package/repos/tsgo/internal/effecttest/vfs.go +87 -0
  631. package/repos/tsgo/internal/fixable/context.go +89 -0
  632. package/repos/tsgo/internal/fixable/fixable.go +38 -0
  633. package/repos/tsgo/internal/fixables/catch_all_to_map_error.go +51 -0
  634. package/repos/tsgo/internal/fixables/catch_to_or_else_succeed.go +44 -0
  635. package/repos/tsgo/internal/fixables/class_self_mismatch.go +54 -0
  636. package/repos/tsgo/internal/fixables/deterministic_keys.go +47 -0
  637. package/repos/tsgo/internal/fixables/disable.go +126 -0
  638. package/repos/tsgo/internal/fixables/effect_fn_iife.go +90 -0
  639. package/repos/tsgo/internal/fixables/effect_fn_opportunity.go +480 -0
  640. package/repos/tsgo/internal/fixables/effect_map_void.go +56 -0
  641. package/repos/tsgo/internal/fixables/effect_succeed_with_void.go +56 -0
  642. package/repos/tsgo/internal/fixables/fixables.go +88 -0
  643. package/repos/tsgo/internal/fixables/instance_of_schema.go +73 -0
  644. package/repos/tsgo/internal/fixables/layer_merge_all_with_dependencies.go +90 -0
  645. package/repos/tsgo/internal/fixables/missed_pipeable_opportunity.go +161 -0
  646. package/repos/tsgo/internal/fixables/missing_effect_error_catch.go +192 -0
  647. package/repos/tsgo/internal/fixables/missing_return_yield_star.go +54 -0
  648. package/repos/tsgo/internal/fixables/missing_star_in_yield_effect_gen.go +52 -0
  649. package/repos/tsgo/internal/fixables/multiple_effect_provide.go +97 -0
  650. package/repos/tsgo/internal/fixables/new_schema_class.go +64 -0
  651. package/repos/tsgo/internal/fixables/overridden_schema_constructor.go +145 -0
  652. package/repos/tsgo/internal/fixables/redundant_schema_tag_identifier.go +50 -0
  653. package/repos/tsgo/internal/fixables/return_effect_in_gen.go +55 -0
  654. package/repos/tsgo/internal/fixables/run_effect_inside_effect.go +178 -0
  655. package/repos/tsgo/internal/fixables/schema_number.go +52 -0
  656. package/repos/tsgo/internal/fixables/schema_struct_with_tag.go +82 -0
  657. package/repos/tsgo/internal/fixables/schema_union_of_literals.go +59 -0
  658. package/repos/tsgo/internal/fixables/scope_in_layer_effect.go +47 -0
  659. package/repos/tsgo/internal/fixables/service_not_as_class.go +115 -0
  660. package/repos/tsgo/internal/fixables/unnecessary_arrow_block.go +45 -0
  661. package/repos/tsgo/internal/fixables/unnecessary_effect_gen.go +79 -0
  662. package/repos/tsgo/internal/fixables/unnecessary_fail_yieldable_error.go +48 -0
  663. package/repos/tsgo/internal/fixables/unnecessary_pipe.go +54 -0
  664. package/repos/tsgo/internal/fixables/unnecessary_pipe_chain.go +83 -0
  665. package/repos/tsgo/internal/fixables/unnecessary_typeof_type.go +39 -0
  666. package/repos/tsgo/internal/fixables/unsafe_effect_type_assertion.go +39 -0
  667. package/repos/tsgo/internal/graph/graph.go +789 -0
  668. package/repos/tsgo/internal/graph/graph_test.go +1099 -0
  669. package/repos/tsgo/internal/keybuilder/keybuilder.go +131 -0
  670. package/repos/tsgo/internal/keybuilder/keybuilder_test.go +226 -0
  671. package/repos/tsgo/internal/layergraph/extract.go +435 -0
  672. package/repos/tsgo/internal/layergraph/format.go +370 -0
  673. package/repos/tsgo/internal/layergraph/format_test.go +145 -0
  674. package/repos/tsgo/internal/layergraph/magic.go +171 -0
  675. package/repos/tsgo/internal/layergraph/magic_test.go +168 -0
  676. package/repos/tsgo/internal/layergraph/mermaidurl.go +32 -0
  677. package/repos/tsgo/internal/layergraph/mermaidurl_test.go +109 -0
  678. package/repos/tsgo/internal/layergraph/outline.go +80 -0
  679. package/repos/tsgo/internal/layergraph/providers.go +144 -0
  680. package/repos/tsgo/internal/layergraph/providers_test.go +132 -0
  681. package/repos/tsgo/internal/layergraph/types.go +112 -0
  682. package/repos/tsgo/internal/layergraph/types_test.go +60 -0
  683. package/repos/tsgo/internal/pluginoptions/resolver.go +158 -0
  684. package/repos/tsgo/internal/refactor/context.go +83 -0
  685. package/repos/tsgo/internal/refactor/refactor.go +28 -0
  686. package/repos/tsgo/internal/refactors/async_await_to_fn.go +179 -0
  687. package/repos/tsgo/internal/refactors/async_await_to_fn_try_promise.go +111 -0
  688. package/repos/tsgo/internal/refactors/async_await_to_gen.go +377 -0
  689. package/repos/tsgo/internal/refactors/async_await_to_gen_try_promise.go +263 -0
  690. package/repos/tsgo/internal/refactors/effect_gen_to_fn.go +308 -0
  691. package/repos/tsgo/internal/refactors/function_to_arrow.go +226 -0
  692. package/repos/tsgo/internal/refactors/layer_magic.go +407 -0
  693. package/repos/tsgo/internal/refactors/make_schema_opaque.go +308 -0
  694. package/repos/tsgo/internal/refactors/make_schema_opaque_with_ns.go +151 -0
  695. package/repos/tsgo/internal/refactors/pipeable_to_datafirst.go +189 -0
  696. package/repos/tsgo/internal/refactors/refactors.go +31 -0
  697. package/repos/tsgo/internal/refactors/remove_unnecessary_effect_gen.go +90 -0
  698. package/repos/tsgo/internal/refactors/structural_type_to_schema.go +65 -0
  699. package/repos/tsgo/internal/refactors/toggle_lazy_const.go +104 -0
  700. package/repos/tsgo/internal/refactors/toggle_pipe_style.go +105 -0
  701. package/repos/tsgo/internal/refactors/toggle_return_type_annotation.go +155 -0
  702. package/repos/tsgo/internal/refactors/toggle_type_annotation.go +122 -0
  703. package/repos/tsgo/internal/refactors/type_to_effect_schema.go +87 -0
  704. package/repos/tsgo/internal/refactors/type_to_effect_schema_class.go +45 -0
  705. package/repos/tsgo/internal/refactors/wrap_with_effect_gen.go +97 -0
  706. package/repos/tsgo/internal/refactors/wrap_with_pipe.go +38 -0
  707. package/repos/tsgo/internal/refactors/write_tag_class_accessors.go +381 -0
  708. package/repos/tsgo/internal/rewriter/tracker.go +149 -0
  709. package/repos/tsgo/internal/rule/context.go +67 -0
  710. package/repos/tsgo/internal/rule/metadata.go +15 -0
  711. package/repos/tsgo/internal/rule/rule.go +73 -0
  712. package/repos/tsgo/internal/rule/rule_test.go +93 -0
  713. package/repos/tsgo/internal/rulerunner/diagnostics.go +249 -0
  714. package/repos/tsgo/internal/rules/any_unknown_in_error_context.go +174 -0
  715. package/repos/tsgo/internal/rules/async_function.go +45 -0
  716. package/repos/tsgo/internal/rules/catch_all_to_map_error.go +109 -0
  717. package/repos/tsgo/internal/rules/catch_to_or_else_succeed.go +105 -0
  718. package/repos/tsgo/internal/rules/catch_unfailable_effect.go +73 -0
  719. package/repos/tsgo/internal/rules/class_self_mismatch.go +160 -0
  720. package/repos/tsgo/internal/rules/crypto_random_uuid.go +88 -0
  721. package/repos/tsgo/internal/rules/deterministic_keys.go +264 -0
  722. package/repos/tsgo/internal/rules/duplicate_package.go +131 -0
  723. package/repos/tsgo/internal/rules/effect_do_notation.go +70 -0
  724. package/repos/tsgo/internal/rules/effect_fn_iife.go +122 -0
  725. package/repos/tsgo/internal/rules/effect_fn_implicit_any.go +131 -0
  726. package/repos/tsgo/internal/rules/effect_fn_opportunity.go +220 -0
  727. package/repos/tsgo/internal/rules/effect_gen_uses_adapter.go +55 -0
  728. package/repos/tsgo/internal/rules/effect_in_failure.go +97 -0
  729. package/repos/tsgo/internal/rules/effect_in_void_success.go +66 -0
  730. package/repos/tsgo/internal/rules/effect_map_flatten.go +78 -0
  731. package/repos/tsgo/internal/rules/effect_map_void.go +123 -0
  732. package/repos/tsgo/internal/rules/effect_succeed_with_void.go +99 -0
  733. package/repos/tsgo/internal/rules/extends_native_error.go +112 -0
  734. package/repos/tsgo/internal/rules/floating_effect.go +150 -0
  735. package/repos/tsgo/internal/rules/generic_effect_services.go +61 -0
  736. package/repos/tsgo/internal/rules/global_console.go +88 -0
  737. package/repos/tsgo/internal/rules/global_date.go +96 -0
  738. package/repos/tsgo/internal/rules/global_error_in_effect_catch.go +116 -0
  739. package/repos/tsgo/internal/rules/global_error_in_effect_failure.go +85 -0
  740. package/repos/tsgo/internal/rules/global_fetch.go +81 -0
  741. package/repos/tsgo/internal/rules/global_random.go +75 -0
  742. package/repos/tsgo/internal/rules/global_timers.go +105 -0
  743. package/repos/tsgo/internal/rules/instance_of_schema.go +80 -0
  744. package/repos/tsgo/internal/rules/layer_merge_all_with_dependencies.go +195 -0
  745. package/repos/tsgo/internal/rules/lazy_effect.go +213 -0
  746. package/repos/tsgo/internal/rules/lazy_promise_in_effect_sync.go +65 -0
  747. package/repos/tsgo/internal/rules/leaking_requirements.go +353 -0
  748. package/repos/tsgo/internal/rules/metadata.go +37 -0
  749. package/repos/tsgo/internal/rules/missed_pipeable_opportunity.go +203 -0
  750. package/repos/tsgo/internal/rules/missing_effect_context.go +273 -0
  751. package/repos/tsgo/internal/rules/missing_effect_error.go +115 -0
  752. package/repos/tsgo/internal/rules/missing_effect_service_dependency.go +190 -0
  753. package/repos/tsgo/internal/rules/missing_layer_context.go +87 -0
  754. package/repos/tsgo/internal/rules/missing_return_yield_star.go +98 -0
  755. package/repos/tsgo/internal/rules/missing_star_in_yield_effect_gen.go +77 -0
  756. package/repos/tsgo/internal/rules/multiple_catch_tag.go +229 -0
  757. package/repos/tsgo/internal/rules/multiple_effect_provide.go +119 -0
  758. package/repos/tsgo/internal/rules/nested_effect_gen_yield.go +72 -0
  759. package/repos/tsgo/internal/rules/new_promise.go +50 -0
  760. package/repos/tsgo/internal/rules/new_schema_class.go +102 -0
  761. package/repos/tsgo/internal/rules/node_builtin_import.go +160 -0
  762. package/repos/tsgo/internal/rules/non_object_effect_service_type.go +187 -0
  763. package/repos/tsgo/internal/rules/outdated_api.go +163 -0
  764. package/repos/tsgo/internal/rules/outdated_api_db.go +375 -0
  765. package/repos/tsgo/internal/rules/overridden_schema_constructor.go +175 -0
  766. package/repos/tsgo/internal/rules/prefer_schema_over_json.go +217 -0
  767. package/repos/tsgo/internal/rules/process_env.go +96 -0
  768. package/repos/tsgo/internal/rules/redundant_map_error.go +380 -0
  769. package/repos/tsgo/internal/rules/redundant_or_die.go +194 -0
  770. package/repos/tsgo/internal/rules/redundant_schema_tag_identifier.go +103 -0
  771. package/repos/tsgo/internal/rules/return_effect_in_gen.go +97 -0
  772. package/repos/tsgo/internal/rules/rules.go +92 -0
  773. package/repos/tsgo/internal/rules/rules_json_test.go +856 -0
  774. package/repos/tsgo/internal/rules/run_effect_inside_effect.go +155 -0
  775. package/repos/tsgo/internal/rules/schema_number.go +106 -0
  776. package/repos/tsgo/internal/rules/schema_struct_with_tag.go +162 -0
  777. package/repos/tsgo/internal/rules/schema_sync_in_effect.go +107 -0
  778. package/repos/tsgo/internal/rules/schema_union_of_literals.go +122 -0
  779. package/repos/tsgo/internal/rules/scope_in_layer_effect.go +201 -0
  780. package/repos/tsgo/internal/rules/service_not_as_class.go +179 -0
  781. package/repos/tsgo/internal/rules/strict_boolean_expressions.go +123 -0
  782. package/repos/tsgo/internal/rules/strict_effect_provide.go +77 -0
  783. package/repos/tsgo/internal/rules/try_catch_in_effect_gen.go +55 -0
  784. package/repos/tsgo/internal/rules/unknown_in_effect_catch.go +116 -0
  785. package/repos/tsgo/internal/rules/unnecessary_arrow_block.go +99 -0
  786. package/repos/tsgo/internal/rules/unnecessary_effect_gen.go +139 -0
  787. package/repos/tsgo/internal/rules/unnecessary_fail_yieldable_error.go +85 -0
  788. package/repos/tsgo/internal/rules/unnecessary_pipe.go +71 -0
  789. package/repos/tsgo/internal/rules/unnecessary_pipe_chain.go +74 -0
  790. package/repos/tsgo/internal/rules/unnecessary_typeof_type.go +206 -0
  791. package/repos/tsgo/internal/rules/unsafe_effect_type_assertion.go +170 -0
  792. package/repos/tsgo/internal/schemagen/schemagen.go +740 -0
  793. package/repos/tsgo/internal/schemagen/structural.go +703 -0
  794. package/repos/tsgo/internal/typeparser/context_tag.go +72 -0
  795. package/repos/tsgo/internal/typeparser/context_type.go +38 -0
  796. package/repos/tsgo/internal/typeparser/data_first_signature.go +158 -0
  797. package/repos/tsgo/internal/typeparser/data_first_signature_test.go +324 -0
  798. package/repos/tsgo/internal/typeparser/data_type.go +41 -0
  799. package/repos/tsgo/internal/typeparser/discover.go +223 -0
  800. package/repos/tsgo/internal/typeparser/effect_context.go +237 -0
  801. package/repos/tsgo/internal/typeparser/effect_fn.go +248 -0
  802. package/repos/tsgo/internal/typeparser/effect_fn_opportunity.go +840 -0
  803. package/repos/tsgo/internal/typeparser/effect_fn_test.go +197 -0
  804. package/repos/tsgo/internal/typeparser/effect_gen.go +60 -0
  805. package/repos/tsgo/internal/typeparser/effect_gen_test.go +113 -0
  806. package/repos/tsgo/internal/typeparser/effect_model_type.go +49 -0
  807. package/repos/tsgo/internal/typeparser/effect_type.go +257 -0
  808. package/repos/tsgo/internal/typeparser/effect_yieldable_type.go +51 -0
  809. package/repos/tsgo/internal/typeparser/execution_flow.go +396 -0
  810. package/repos/tsgo/internal/typeparser/expected_and_real_type.go +333 -0
  811. package/repos/tsgo/internal/typeparser/expected_and_real_type_test.go +447 -0
  812. package/repos/tsgo/internal/typeparser/extends_context_service.go +102 -0
  813. package/repos/tsgo/internal/typeparser/extends_context_tag.go +102 -0
  814. package/repos/tsgo/internal/typeparser/extends_data_tagged.go +85 -0
  815. package/repos/tsgo/internal/typeparser/extends_effect_model_class.go +86 -0
  816. package/repos/tsgo/internal/typeparser/extends_effect_service.go +113 -0
  817. package/repos/tsgo/internal/typeparser/extends_effect_tag.go +101 -0
  818. package/repos/tsgo/internal/typeparser/extends_schema_class.go +114 -0
  819. package/repos/tsgo/internal/typeparser/extends_schema_tagged.go +144 -0
  820. package/repos/tsgo/internal/typeparser/extends_sql_model_class.go +84 -0
  821. package/repos/tsgo/internal/typeparser/function_node.go +98 -0
  822. package/repos/tsgo/internal/typeparser/get_type_at_location.go +98 -0
  823. package/repos/tsgo/internal/typeparser/global_error.go +35 -0
  824. package/repos/tsgo/internal/typeparser/helpers.go +111 -0
  825. package/repos/tsgo/internal/typeparser/helpers_test.go +427 -0
  826. package/repos/tsgo/internal/typeparser/layer_type.go +145 -0
  827. package/repos/tsgo/internal/typeparser/lazy_expression.go +90 -0
  828. package/repos/tsgo/internal/typeparser/module_export_reference.go +94 -0
  829. package/repos/tsgo/internal/typeparser/module_identifier.go +183 -0
  830. package/repos/tsgo/internal/typeparser/module_identifier_test.go +111 -0
  831. package/repos/tsgo/internal/typeparser/packagejson.go +40 -0
  832. package/repos/tsgo/internal/typeparser/pipeable.go +114 -0
  833. package/repos/tsgo/internal/typeparser/piping_flow.go +531 -0
  834. package/repos/tsgo/internal/typeparser/promise_type.go +31 -0
  835. package/repos/tsgo/internal/typeparser/reconstruct.go +84 -0
  836. package/repos/tsgo/internal/typeparser/schema_type.go +207 -0
  837. package/repos/tsgo/internal/typeparser/scope_type.go +59 -0
  838. package/repos/tsgo/internal/typeparser/service_type.go +66 -0
  839. package/repos/tsgo/internal/typeparser/service_type_test.go +110 -0
  840. package/repos/tsgo/internal/typeparser/sql_model_type.go +42 -0
  841. package/repos/tsgo/internal/typeparser/stream_type.go +28 -0
  842. package/repos/tsgo/internal/typeparser/type_parser.go +95 -0
  843. package/repos/tsgo/internal/typeparser/unique_types_map.go +66 -0
  844. package/repos/tsgo/internal/typeparser/unroll_members.go +15 -0
  845. package/repos/tsgo/internal/typeparser/yieldable_error.go +85 -0
  846. package/repos/tsgo/package.json +22 -0
  847. package/repos/tsgo/pnpm-lock.yaml +2762 -0
  848. package/repos/tsgo/pnpm-workspace.yaml +7 -0
  849. package/repos/tsgo/schema.json +2812 -0
  850. package/repos/tsgo/shim/api/go.mod +5 -0
  851. package/repos/tsgo/shim/api/shim.go +262 -0
  852. package/repos/tsgo/shim/ast/go.mod +5 -0
  853. package/repos/tsgo/shim/ast/shim.go +2725 -0
  854. package/repos/tsgo/shim/astnav/go.mod +5 -0
  855. package/repos/tsgo/shim/astnav/shim.go +27 -0
  856. package/repos/tsgo/shim/bundled/go.mod +5 -0
  857. package/repos/tsgo/shim/bundled/shim.go +19 -0
  858. package/repos/tsgo/shim/checker/extra-shim.json +10 -0
  859. package/repos/tsgo/shim/checker/go.mod +5 -0
  860. package/repos/tsgo/shim/checker/shim.go +1159 -0
  861. package/repos/tsgo/shim/collections/go.mod +5 -0
  862. package/repos/tsgo/shim/collections/shim.go +16 -0
  863. package/repos/tsgo/shim/compiler/go.mod +5 -0
  864. package/repos/tsgo/shim/compiler/shim.go +50 -0
  865. package/repos/tsgo/shim/core/go.mod +5 -0
  866. package/repos/tsgo/shim/core/shim.go +200 -0
  867. package/repos/tsgo/shim/diagnostics/go.mod +5 -0
  868. package/repos/tsgo/shim/diagnostics/shim.go +2272 -0
  869. package/repos/tsgo/shim/execute/tsc/go.mod +5 -0
  870. package/repos/tsgo/shim/execute/tsc/shim.go +62 -0
  871. package/repos/tsgo/shim/format/go.mod +5 -0
  872. package/repos/tsgo/shim/format/shim.go +72 -0
  873. package/repos/tsgo/shim/fourslash/extra-shim.json +8 -0
  874. package/repos/tsgo/shim/fourslash/go.mod +5 -0
  875. package/repos/tsgo/shim/fourslash/shim.go +59 -0
  876. package/repos/tsgo/shim/ls/autoimport/go.mod +5 -0
  877. package/repos/tsgo/shim/ls/autoimport/shim.go +64 -0
  878. package/repos/tsgo/shim/ls/change/extra-shim.json +5 -0
  879. package/repos/tsgo/shim/ls/change/go.mod +5 -0
  880. package/repos/tsgo/shim/ls/change/shim.go +30 -0
  881. package/repos/tsgo/shim/ls/extra-shim.json +8 -0
  882. package/repos/tsgo/shim/ls/go.mod +5 -0
  883. package/repos/tsgo/shim/ls/lsconv/go.mod +5 -0
  884. package/repos/tsgo/shim/ls/lsconv/shim.go +28 -0
  885. package/repos/tsgo/shim/ls/lsutil/go.mod +5 -0
  886. package/repos/tsgo/shim/ls/lsutil/shim.go +202 -0
  887. package/repos/tsgo/shim/ls/shim.go +154 -0
  888. package/repos/tsgo/shim/lsp/go.mod +5 -0
  889. package/repos/tsgo/shim/lsp/lsproto/go.mod +5 -0
  890. package/repos/tsgo/shim/lsp/lsproto/shim.go +1271 -0
  891. package/repos/tsgo/shim/lsp/shim.go +19 -0
  892. package/repos/tsgo/shim/module/go.mod +5 -0
  893. package/repos/tsgo/shim/module/shim.go +76 -0
  894. package/repos/tsgo/shim/modulespecifiers/go.mod +5 -0
  895. package/repos/tsgo/shim/modulespecifiers/shim.go +87 -0
  896. package/repos/tsgo/shim/packagejson/go.mod +5 -0
  897. package/repos/tsgo/shim/packagejson/shim.go +32 -0
  898. package/repos/tsgo/shim/parser/go.mod +5 -0
  899. package/repos/tsgo/shim/parser/shim.go +55 -0
  900. package/repos/tsgo/shim/project/go.mod +5 -0
  901. package/repos/tsgo/shim/project/logging/go.mod +3 -0
  902. package/repos/tsgo/shim/project/logging/shim.go +20 -0
  903. package/repos/tsgo/shim/project/shim.go +101 -0
  904. package/repos/tsgo/shim/repo/go.mod +5 -0
  905. package/repos/tsgo/shim/repo/shim.go +19 -0
  906. package/repos/tsgo/shim/scanner/go.mod +5 -0
  907. package/repos/tsgo/shim/scanner/shim.go +98 -0
  908. package/repos/tsgo/shim/sourcemap/go.mod +5 -0
  909. package/repos/tsgo/shim/sourcemap/shim.go +37 -0
  910. package/repos/tsgo/shim/testrunner/go.mod +5 -0
  911. package/repos/tsgo/shim/testrunner/shim.go +16 -0
  912. package/repos/tsgo/shim/testutil/baseline/go.mod +5 -0
  913. package/repos/tsgo/shim/testutil/baseline/shim.go +19 -0
  914. package/repos/tsgo/shim/testutil/go.mod +5 -0
  915. package/repos/tsgo/shim/testutil/harnessutil/go.mod +5 -0
  916. package/repos/tsgo/shim/testutil/harnessutil/shim.go +46 -0
  917. package/repos/tsgo/shim/testutil/lsptestutil/go.mod +5 -0
  918. package/repos/tsgo/shim/testutil/lsptestutil/shim.go +17 -0
  919. package/repos/tsgo/shim/testutil/shim.go +15 -0
  920. package/repos/tsgo/shim/testutil/tsbaseline/go.mod +5 -0
  921. package/repos/tsgo/shim/testutil/tsbaseline/shim.go +26 -0
  922. package/repos/tsgo/shim/tsoptions/go.mod +5 -0
  923. package/repos/tsgo/shim/tsoptions/shim.go +126 -0
  924. package/repos/tsgo/shim/tspath/go.mod +5 -0
  925. package/repos/tsgo/shim/tspath/shim.go +165 -0
  926. package/repos/tsgo/shim/vfs/cachedvfs/go.mod +5 -0
  927. package/repos/tsgo/shim/vfs/cachedvfs/shim.go +12 -0
  928. package/repos/tsgo/shim/vfs/go.mod +5 -0
  929. package/repos/tsgo/shim/vfs/iovfs/go.mod +5 -0
  930. package/repos/tsgo/shim/vfs/iovfs/shim.go +14 -0
  931. package/repos/tsgo/shim/vfs/osvfs/go.mod +5 -0
  932. package/repos/tsgo/shim/vfs/osvfs/shim.go +13 -0
  933. package/repos/tsgo/shim/vfs/shim.go +19 -0
  934. package/repos/tsgo/shim/vfs/vfsmatch/shim.go +21 -0
  935. package/repos/tsgo/shim/vfs/vfstest/go.mod +5 -0
  936. package/repos/tsgo/shim/vfs/vfstest/shim.go +16 -0
  937. package/repos/tsgo/testdata/baselines/reference/README.md +297 -0
  938. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.errors.txt +154 -0
  939. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.flows.anyUnknownInErrorContext.mermaid +77 -0
  940. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.flows.txt +1 -0
  941. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.layers.txt +69 -0
  942. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.pipings.txt +197 -0
  943. package/repos/tsgo/testdata/baselines/reference/effect-v3/anyUnknownInErrorContext.quickfixes.txt +407 -0
  944. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToFn.refactors.txt +98 -0
  945. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToFnTryPromise.refactors.txt +124 -0
  946. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToFn_fetch.refactors.txt +112 -0
  947. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToFn_generics.refactors.txt +98 -0
  948. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGen.refactors.txt +98 -0
  949. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGenTryPromise.refactors.txt +130 -0
  950. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGenTryPromise_anonymous.refactors.txt +370 -0
  951. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGen_anonymous.refactors.txt +370 -0
  952. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncAwaitToGen_namedImport.refactors.txt +98 -0
  953. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.errors.txt +52 -0
  954. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.flows.asyncFunction.mermaid +29 -0
  955. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.flows.txt +1 -0
  956. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.layers.txt +1 -0
  957. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.pipings.txt +85 -0
  958. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction.quickfixes.txt +43 -0
  959. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.errors.txt +16 -0
  960. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.flows.asyncFunction_preview.mermaid +2 -0
  961. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.flows.txt +1 -0
  962. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.layers.txt +1 -0
  963. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.pipings.txt +15 -0
  964. package/repos/tsgo/testdata/baselines/reference/effect-v3/asyncFunction_preview.quickfixes.txt +13 -0
  965. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.errors.txt +88 -0
  966. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.flows.catchAllToMapError.mermaid +164 -0
  967. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.flows.txt +1 -0
  968. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.layers.txt +1 -0
  969. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.pipings.txt +289 -0
  970. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError.quickfixes.txt +413 -0
  971. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.errors.txt +42 -0
  972. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.flows.catchAllToMapError_effectFn.mermaid +87 -0
  973. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.flows.txt +1 -0
  974. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.layers.txt +1 -0
  975. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.pipings.txt +169 -0
  976. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFn.quickfixes.txt +129 -0
  977. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.errors.txt +38 -0
  978. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.flows.catchAllToMapError_effectFnRegular.mermaid +66 -0
  979. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.flows.txt +1 -0
  980. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.layers.txt +1 -0
  981. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.pipings.txt +127 -0
  982. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchAllToMapError_effectFnRegular.quickfixes.txt +85 -0
  983. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.errors.txt +65 -0
  984. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.flows.catchToOrElseSucceed.mermaid +131 -0
  985. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.flows.txt +1 -0
  986. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.layers.txt +1 -0
  987. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.pipings.txt +239 -0
  988. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed.quickfixes.txt +251 -0
  989. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.errors.txt +16 -0
  990. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.flows.catchToOrElseSucceed_preview.mermaid +18 -0
  991. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.flows.txt +1 -0
  992. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.layers.txt +1 -0
  993. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.pipings.txt +33 -0
  994. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchToOrElseSucceed_preview.quickfixes.txt +25 -0
  995. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.errors.txt +63 -0
  996. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.flows.catchUnfailableEffect.mermaid +157 -0
  997. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.flows.txt +1 -0
  998. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.layers.txt +1 -0
  999. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.pipings.txt +265 -0
  1000. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect.quickfixes.txt +43 -0
  1001. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.errors.txt +36 -0
  1002. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.flows.catchUnfailableEffect_effectFn.mermaid +73 -0
  1003. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.flows.txt +1 -0
  1004. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.layers.txt +1 -0
  1005. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.pipings.txt +127 -0
  1006. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFn.quickfixes.txt +33 -0
  1007. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.errors.txt +32 -0
  1008. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.flows.catchUnfailableEffect_effectFnRegular.mermaid +56 -0
  1009. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.flows.txt +1 -0
  1010. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.layers.txt +1 -0
  1011. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.pipings.txt +99 -0
  1012. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_effectFnRegular.quickfixes.txt +23 -0
  1013. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.errors.txt +54 -0
  1014. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.flows.catchUnfailableEffect_variants.mermaid +78 -0
  1015. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.flows.txt +1 -0
  1016. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.layers.txt +1 -0
  1017. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.pipings.txt +105 -0
  1018. package/repos/tsgo/testdata/baselines/reference/effect-v3/catchUnfailableEffect_variants.quickfixes.txt +53 -0
  1019. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.errors.txt +28 -0
  1020. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.flows.classSelfMismatch.mermaid +3 -0
  1021. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.flows.txt +1 -0
  1022. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.layers.txt +1 -0
  1023. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.pipings.txt +1 -0
  1024. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch.quickfixes.txt +37 -0
  1025. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.errors.txt +22 -0
  1026. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.flows.classSelfMismatch_contextTag.mermaid +15 -0
  1027. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.flows.txt +1 -0
  1028. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.layers.txt +1 -0
  1029. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.pipings.txt +29 -0
  1030. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_contextTag.quickfixes.txt +31 -0
  1031. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.errors.txt +22 -0
  1032. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.flows.classSelfMismatch_effectTag.mermaid +15 -0
  1033. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.flows.txt +1 -0
  1034. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.layers.txt +1 -0
  1035. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.pipings.txt +29 -0
  1036. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_effectTag.quickfixes.txt +31 -0
  1037. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.errors.txt +20 -0
  1038. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.flows.classSelfMismatch_preview.mermaid +8 -0
  1039. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.flows.txt +1 -0
  1040. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.layers.txt +1 -0
  1041. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.pipings.txt +15 -0
  1042. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_preview.quickfixes.txt +7 -0
  1043. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.errors.txt +92 -0
  1044. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.flows.classSelfMismatch_schema.mermaid +57 -0
  1045. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.flows.txt +1 -0
  1046. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.layers.txt +1 -0
  1047. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.pipings.txt +113 -0
  1048. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schema.quickfixes.txt +713 -0
  1049. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.errors.txt +24 -0
  1050. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.flows.classSelfMismatch_schemaFalsePositive.mermaid +13 -0
  1051. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.flows.txt +1 -0
  1052. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.layers.txt +1 -0
  1053. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.pipings.txt +1 -0
  1054. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_schemaFalsePositive.quickfixes.txt +5 -0
  1055. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.errors.txt +20 -0
  1056. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.flows.classSelfMismatch_unionGiven.mermaid +15 -0
  1057. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.flows.txt +1 -0
  1058. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.layers.txt +1 -0
  1059. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.pipings.txt +29 -0
  1060. package/repos/tsgo/testdata/baselines/reference/effect-v3/classSelfMismatch_unionGiven.quickfixes.txt +29 -0
  1061. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.errors.txt +43 -0
  1062. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.flows.package.mermaid +2 -0
  1063. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.flows.test.mermaid +13 -0
  1064. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.flows.txt +2 -0
  1065. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.layers.txt +2 -0
  1066. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.pipings.txt +30 -0
  1067. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys.quickfixes.txt +55 -0
  1068. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.errors.txt +80 -0
  1069. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.flows.package.mermaid +2 -0
  1070. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.flows.test.mermaid +21 -0
  1071. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.flows.txt +3 -0
  1072. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.flows.utils.mermaid +17 -0
  1073. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.layers.txt +3 -0
  1074. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.pipings.txt +45 -0
  1075. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_custom.quickfixes.txt +73 -0
  1076. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.errors.txt +43 -0
  1077. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.flows.package.mermaid +2 -0
  1078. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.flows.test.mermaid +13 -0
  1079. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.flows.txt +2 -0
  1080. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.layers.txt +2 -0
  1081. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.pipings.txt +30 -0
  1082. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_defaultHashed.quickfixes.txt +55 -0
  1083. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.errors.txt +43 -0
  1084. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.flows.package.mermaid +2 -0
  1085. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.flows.test.mermaid +13 -0
  1086. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.flows.txt +2 -0
  1087. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.layers.txt +2 -0
  1088. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.pipings.txt +30 -0
  1089. package/repos/tsgo/testdata/baselines/reference/effect-v3/deterministicKeys_packageIdentifier.quickfixes.txt +55 -0
  1090. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.errors.txt +14 -0
  1091. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.flows.duplicatePackage_preview.mermaid +6 -0
  1092. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.flows.txt +1 -0
  1093. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.layers.txt +1 -0
  1094. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.pipings.txt +15 -0
  1095. package/repos/tsgo/testdata/baselines/reference/effect-v3/duplicatePackage_preview.quickfixes.txt +5 -0
  1096. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.errors.txt +28 -0
  1097. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.flows.effectDoNotation.mermaid +21 -0
  1098. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.flows.txt +1 -0
  1099. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.layers.txt +1 -0
  1100. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.pipings.txt +29 -0
  1101. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation.quickfixes.txt +33 -0
  1102. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.errors.txt +21 -0
  1103. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.flows.effectDoNotation_preview.mermaid +40 -0
  1104. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.flows.txt +1 -0
  1105. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.layers.txt +1 -0
  1106. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.pipings.txt +51 -0
  1107. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectDoNotation_preview.quickfixes.txt +13 -0
  1108. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.errors.txt +99 -0
  1109. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.flows.effectFnIife.mermaid +135 -0
  1110. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.flows.txt +1 -0
  1111. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.layers.txt +1 -0
  1112. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.pipings.txt +309 -0
  1113. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnIife.quickfixes.txt +435 -0
  1114. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.errors.txt +34 -0
  1115. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.flows.effectFnOpportunity_alreadyEffectFn.mermaid +28 -0
  1116. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.flows.txt +1 -0
  1117. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.layers.txt +1 -0
  1118. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.pipings.txt +85 -0
  1119. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_alreadyEffectFn.quickfixes.txt +5 -0
  1120. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.errors.txt +67 -0
  1121. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.flows.effectFnOpportunity_basic.mermaid +52 -0
  1122. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.flows.txt +1 -0
  1123. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.layers.txt +1 -0
  1124. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.pipings.txt +113 -0
  1125. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_basic.quickfixes.txt +514 -0
  1126. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.errors.txt +45 -0
  1127. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.flows.effectFnOpportunity_genWithThis.mermaid +28 -0
  1128. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.flows.txt +1 -0
  1129. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.layers.txt +1 -0
  1130. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.pipings.txt +29 -0
  1131. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_genWithThis.quickfixes.txt +5 -0
  1132. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.errors.txt +49 -0
  1133. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.flows.effectFnOpportunity_inferred.mermaid +40 -0
  1134. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.flows.txt +1 -0
  1135. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.layers.txt +1 -0
  1136. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.pipings.txt +85 -0
  1137. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferred.quickfixes.txt +80 -0
  1138. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.errors.txt +63 -0
  1139. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.flows.effectFnOpportunity_inferredLayer.mermaid +89 -0
  1140. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.flows.txt +1 -0
  1141. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.layers.txt +1 -0
  1142. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.pipings.txt +163 -0
  1143. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_inferredLayer.quickfixes.txt +541 -0
  1144. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.errors.txt +45 -0
  1145. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.flows.effectFnOpportunity_invalid.mermaid +15 -0
  1146. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.flows.txt +1 -0
  1147. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.layers.txt +1 -0
  1148. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.pipings.txt +1 -0
  1149. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_invalid.quickfixes.txt +5 -0
  1150. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.errors.txt +65 -0
  1151. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.flows.effectFnOpportunity_multipleReturns.mermaid +61 -0
  1152. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.flows.txt +1 -0
  1153. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.layers.txt +1 -0
  1154. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.pipings.txt +127 -0
  1155. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_multipleReturns.quickfixes.txt +135 -0
  1156. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.errors.txt +70 -0
  1157. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.flows.effectFnOpportunity_noPipeWithSpan.mermaid +65 -0
  1158. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.flows.txt +1 -0
  1159. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.layers.txt +1 -0
  1160. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.pipings.txt +109 -0
  1161. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_noPipeWithSpan.quickfixes.txt +425 -0
  1162. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.errors.txt +50 -0
  1163. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.flows.effectFnOpportunity_overloadsNever.mermaid +26 -0
  1164. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.flows.txt +1 -0
  1165. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.layers.txt +1 -0
  1166. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.pipings.txt +43 -0
  1167. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsNever.quickfixes.txt +57 -0
  1168. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.errors.txt +94 -0
  1169. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.flows.effectFnOpportunity_overloadsOk.mermaid +43 -0
  1170. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.flows.txt +1 -0
  1171. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.layers.txt +1 -0
  1172. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.pipings.txt +85 -0
  1173. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_overloadsOk.quickfixes.txt +773 -0
  1174. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.errors.txt +55 -0
  1175. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.flows.effectFnOpportunity_params.mermaid +40 -0
  1176. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.flows.txt +1 -0
  1177. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.layers.txt +1 -0
  1178. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.pipings.txt +85 -0
  1179. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_params.quickfixes.txt +303 -0
  1180. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.errors.txt +55 -0
  1181. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.flows.effectFnOpportunity_paramsInPipe.mermaid +91 -0
  1182. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.flows.txt +1 -0
  1183. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.layers.txt +1 -0
  1184. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.pipings.txt +143 -0
  1185. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_paramsInPipe.quickfixes.txt +5 -0
  1186. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.errors.txt +71 -0
  1187. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.flows.effectFnOpportunity_pipeWithSpan.mermaid +75 -0
  1188. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.flows.txt +1 -0
  1189. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.layers.txt +1 -0
  1190. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.pipings.txt +109 -0
  1191. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_pipeWithSpan.quickfixes.txt +437 -0
  1192. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.errors.txt +42 -0
  1193. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.flows.effectFnOpportunity_plainFew.mermaid +46 -0
  1194. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.flows.txt +1 -0
  1195. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.layers.txt +1 -0
  1196. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.pipings.txt +85 -0
  1197. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainFew.quickfixes.txt +5 -0
  1198. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.errors.txt +70 -0
  1199. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.flows.effectFnOpportunity_plainMany.mermaid +39 -0
  1200. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.flows.txt +1 -0
  1201. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.layers.txt +1 -0
  1202. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.pipings.txt +71 -0
  1203. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_plainMany.quickfixes.txt +315 -0
  1204. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.errors.txt +62 -0
  1205. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.flows.effectFnOpportunity_returnType.mermaid +40 -0
  1206. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.flows.txt +1 -0
  1207. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.layers.txt +1 -0
  1208. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.pipings.txt +85 -0
  1209. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_returnType.quickfixes.txt +126 -0
  1210. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.errors.txt +111 -0
  1211. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.flows.effectFnOpportunity_typeParams.mermaid +64 -0
  1212. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.flows.txt +1 -0
  1213. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.layers.txt +1 -0
  1214. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.pipings.txt +127 -0
  1215. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectFnOpportunity_typeParams.quickfixes.txt +1266 -0
  1216. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn.refactors.txt +569 -0
  1217. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn_classMethod.refactors.txt +44 -0
  1218. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn_mixedPipes.refactors.txt +80 -0
  1219. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn_returns.refactors.txt +104 -0
  1220. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenToFn_withPipes.refactors.txt +77 -0
  1221. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.errors.txt +23 -0
  1222. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.flows.effectGenUsesAdapter.mermaid +21 -0
  1223. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.flows.txt +1 -0
  1224. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.layers.txt +1 -0
  1225. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.pipings.txt +57 -0
  1226. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter.quickfixes.txt +13 -0
  1227. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.errors.txt +17 -0
  1228. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.flows.effectGenUsesAdapter_preview.mermaid +11 -0
  1229. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.flows.txt +1 -0
  1230. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.layers.txt +1 -0
  1231. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.pipings.txt +29 -0
  1232. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectGenUsesAdapter_preview.quickfixes.txt +20 -0
  1233. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.errors.txt +47 -0
  1234. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.flows.effectInFailure.mermaid +55 -0
  1235. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.flows.txt +1 -0
  1236. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.layers.txt +1 -0
  1237. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.pipings.txt +159 -0
  1238. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectInFailure.quickfixes.txt +43 -0
  1239. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.errors.txt +54 -0
  1240. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.flows.effectMapFlatten.mermaid +127 -0
  1241. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.flows.txt +1 -0
  1242. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.layers.txt +1 -0
  1243. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.pipings.txt +217 -0
  1244. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten.quickfixes.txt +33 -0
  1245. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.errors.txt +18 -0
  1246. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.flows.effectMapFlatten_preview.mermaid +20 -0
  1247. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.flows.txt +1 -0
  1248. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.layers.txt +1 -0
  1249. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.pipings.txt +37 -0
  1250. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapFlatten_preview.quickfixes.txt +13 -0
  1251. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.errors.txt +79 -0
  1252. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.flows.effectMapVoid.mermaid +123 -0
  1253. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.flows.txt +1 -0
  1254. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.layers.txt +1 -0
  1255. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.pipings.txt +181 -0
  1256. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectMapVoid.quickfixes.txt +423 -0
  1257. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.errors.txt +54 -0
  1258. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.flows.effectSucceedWithVoid.mermaid +47 -0
  1259. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.flows.txt +1 -0
  1260. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.layers.txt +1 -0
  1261. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.pipings.txt +127 -0
  1262. package/repos/tsgo/testdata/baselines/reference/effect-v3/effectSucceedWithVoid.quickfixes.txt +243 -0
  1263. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.errors.txt +33 -0
  1264. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.flows.extendsNativeError.mermaid +7 -0
  1265. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.flows.txt +1 -0
  1266. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.layers.txt +1 -0
  1267. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.pipings.txt +1 -0
  1268. package/repos/tsgo/testdata/baselines/reference/effect-v3/extendsNativeError.quickfixes.txt +33 -0
  1269. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.errors.txt +56 -0
  1270. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.flows.floatingEffect.mermaid +40 -0
  1271. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.flows.txt +1 -0
  1272. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.layers.txt +1 -0
  1273. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.pipings.txt +125 -0
  1274. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect.quickfixes.txt +124 -0
  1275. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.errors.txt +17 -0
  1276. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.flows.floatingEffect_stream.mermaid +8 -0
  1277. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.flows.txt +1 -0
  1278. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.layers.txt +1 -0
  1279. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.pipings.txt +29 -0
  1280. package/repos/tsgo/testdata/baselines/reference/effect-v3/floatingEffect_stream.quickfixes.txt +13 -0
  1281. package/repos/tsgo/testdata/baselines/reference/effect-v3/functionToArrow.refactors.txt +7 -0
  1282. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.errors.txt +20 -0
  1283. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.flows.genericEffectServices.mermaid +3 -0
  1284. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.flows.txt +1 -0
  1285. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.layers.txt +1 -0
  1286. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.pipings.txt +1 -0
  1287. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices.quickfixes.txt +13 -0
  1288. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.errors.txt +17 -0
  1289. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.flows.genericEffectServices_preview.mermaid +2 -0
  1290. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.flows.txt +1 -0
  1291. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.layers.txt +1 -0
  1292. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.pipings.txt +1 -0
  1293. package/repos/tsgo/testdata/baselines/reference/effect-v3/genericEffectServices_preview.quickfixes.txt +7 -0
  1294. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.errors.txt +55 -0
  1295. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.flows.globalConsole.mermaid +58 -0
  1296. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.flows.txt +1 -0
  1297. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.layers.txt +1 -0
  1298. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.pipings.txt +141 -0
  1299. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole.quickfixes.txt +49 -0
  1300. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.errors.txt +70 -0
  1301. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.flows.globalConsoleInEffect.mermaid +65 -0
  1302. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.flows.txt +1 -0
  1303. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.layers.txt +1 -0
  1304. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.pipings.txt +225 -0
  1305. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect.quickfixes.txt +46 -0
  1306. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.errors.txt +17 -0
  1307. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.flows.globalConsoleInEffect_preview.mermaid +8 -0
  1308. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.flows.txt +1 -0
  1309. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.layers.txt +1 -0
  1310. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.pipings.txt +29 -0
  1311. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_preview.quickfixes.txt +13 -0
  1312. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.errors.txt +39 -0
  1313. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.flows.globalConsoleInEffect_thunks.mermaid +65 -0
  1314. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.flows.txt +1 -0
  1315. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.layers.txt +1 -0
  1316. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.pipings.txt +155 -0
  1317. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsoleInEffect_thunks.quickfixes.txt +43 -0
  1318. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.errors.txt +14 -0
  1319. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.flows.globalConsole_preview.mermaid +6 -0
  1320. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.flows.txt +1 -0
  1321. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.layers.txt +1 -0
  1322. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.pipings.txt +15 -0
  1323. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalConsole_preview.quickfixes.txt +13 -0
  1324. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.errors.txt +50 -0
  1325. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.flows.globalDate.mermaid +26 -0
  1326. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.flows.txt +1 -0
  1327. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.layers.txt +1 -0
  1328. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.pipings.txt +43 -0
  1329. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate.quickfixes.txt +52 -0
  1330. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.errors.txt +60 -0
  1331. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.flows.globalDateInEffect.mermaid +32 -0
  1332. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.flows.txt +1 -0
  1333. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.layers.txt +1 -0
  1334. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.pipings.txt +71 -0
  1335. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect.quickfixes.txt +49 -0
  1336. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.errors.txt +18 -0
  1337. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.flows.globalDateInEffect_preview.mermaid +5 -0
  1338. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.flows.txt +1 -0
  1339. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.layers.txt +1 -0
  1340. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.pipings.txt +15 -0
  1341. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_preview.quickfixes.txt +13 -0
  1342. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.errors.txt +39 -0
  1343. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.flows.globalDateInEffect_thunks.mermaid +45 -0
  1344. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.flows.txt +1 -0
  1345. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.layers.txt +1 -0
  1346. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.pipings.txt +85 -0
  1347. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDateInEffect_thunks.quickfixes.txt +43 -0
  1348. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.errors.txt +14 -0
  1349. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.flows.globalDate_preview.mermaid +2 -0
  1350. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.flows.txt +1 -0
  1351. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.layers.txt +1 -0
  1352. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.pipings.txt +1 -0
  1353. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalDate_preview.quickfixes.txt +13 -0
  1354. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.errors.txt +46 -0
  1355. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.flows.globalErrorInEffectCatch.mermaid +62 -0
  1356. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.flows.txt +1 -0
  1357. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.layers.txt +1 -0
  1358. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.pipings.txt +135 -0
  1359. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectCatch.quickfixes.txt +46 -0
  1360. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.errors.txt +87 -0
  1361. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.flows.globalErrorInEffectFailure.mermaid +85 -0
  1362. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.flows.txt +1 -0
  1363. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.layers.txt +1 -0
  1364. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.pipings.txt +191 -0
  1365. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalErrorInEffectFailure.quickfixes.txt +254 -0
  1366. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.errors.txt +42 -0
  1367. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.flows.globalFetch.mermaid +16 -0
  1368. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.flows.txt +1 -0
  1369. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.layers.txt +1 -0
  1370. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.pipings.txt +99 -0
  1371. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch.quickfixes.txt +52 -0
  1372. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.errors.txt +37 -0
  1373. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.flows.globalFetchInEffect.mermaid +17 -0
  1374. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.flows.txt +1 -0
  1375. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.layers.txt +1 -0
  1376. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.pipings.txt +113 -0
  1377. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect.quickfixes.txt +29 -0
  1378. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.errors.txt +17 -0
  1379. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.flows.globalFetchInEffect_preview.mermaid +13 -0
  1380. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.flows.txt +1 -0
  1381. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.layers.txt +1 -0
  1382. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.pipings.txt +43 -0
  1383. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_preview.quickfixes.txt +13 -0
  1384. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.errors.txt +42 -0
  1385. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.flows.globalFetchInEffect_thunks.mermaid +45 -0
  1386. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.flows.txt +1 -0
  1387. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.layers.txt +1 -0
  1388. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.pipings.txt +155 -0
  1389. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetchInEffect_thunks.quickfixes.txt +53 -0
  1390. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.errors.txt +14 -0
  1391. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.flows.globalFetch_preview.mermaid +2 -0
  1392. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.flows.txt +1 -0
  1393. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.layers.txt +1 -0
  1394. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.pipings.txt +15 -0
  1395. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalFetch_preview.quickfixes.txt +13 -0
  1396. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.errors.txt +48 -0
  1397. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.flows.globalRandom.mermaid +27 -0
  1398. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.flows.txt +1 -0
  1399. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.layers.txt +1 -0
  1400. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.pipings.txt +29 -0
  1401. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom.quickfixes.txt +55 -0
  1402. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.errors.txt +40 -0
  1403. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.flows.globalRandomInEffect.mermaid +21 -0
  1404. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.flows.txt +1 -0
  1405. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.layers.txt +1 -0
  1406. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.pipings.txt +43 -0
  1407. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect.quickfixes.txt +29 -0
  1408. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.errors.txt +18 -0
  1409. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.flows.globalRandomInEffect_preview.mermaid +5 -0
  1410. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.flows.txt +1 -0
  1411. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.layers.txt +1 -0
  1412. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.pipings.txt +15 -0
  1413. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_preview.quickfixes.txt +13 -0
  1414. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.errors.txt +39 -0
  1415. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.flows.globalRandomInEffect_thunks.mermaid +45 -0
  1416. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.flows.txt +1 -0
  1417. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.layers.txt +1 -0
  1418. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.pipings.txt +85 -0
  1419. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandomInEffect_thunks.quickfixes.txt +43 -0
  1420. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.errors.txt +14 -0
  1421. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.flows.globalRandom_preview.mermaid +2 -0
  1422. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.flows.txt +1 -0
  1423. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.layers.txt +1 -0
  1424. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.pipings.txt +1 -0
  1425. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalRandom_preview.quickfixes.txt +13 -0
  1426. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.errors.txt +48 -0
  1427. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.flows.globalTimers.mermaid +37 -0
  1428. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.flows.txt +1 -0
  1429. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.layers.txt +1 -0
  1430. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.pipings.txt +29 -0
  1431. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers.quickfixes.txt +55 -0
  1432. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.errors.txt +48 -0
  1433. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.flows.globalTimersInEffect.mermaid +26 -0
  1434. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.flows.txt +1 -0
  1435. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.layers.txt +1 -0
  1436. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.pipings.txt +57 -0
  1437. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect.quickfixes.txt +36 -0
  1438. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.errors.txt +17 -0
  1439. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.flows.globalTimersInEffect_preview.mermaid +4 -0
  1440. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.flows.txt +1 -0
  1441. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.layers.txt +1 -0
  1442. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.pipings.txt +15 -0
  1443. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_preview.quickfixes.txt +13 -0
  1444. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.errors.txt +39 -0
  1445. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.flows.globalTimersInEffect_thunks.mermaid +55 -0
  1446. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.flows.txt +1 -0
  1447. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.layers.txt +1 -0
  1448. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.pipings.txt +85 -0
  1449. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimersInEffect_thunks.quickfixes.txt +43 -0
  1450. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.errors.txt +14 -0
  1451. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.flows.globalTimers_preview.mermaid +4 -0
  1452. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.flows.txt +1 -0
  1453. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.layers.txt +1 -0
  1454. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.pipings.txt +1 -0
  1455. package/repos/tsgo/testdata/baselines/reference/effect-v3/globalTimers_preview.quickfixes.txt +13 -0
  1456. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.errors.txt +48 -0
  1457. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.flows.instanceOfSchema.mermaid +42 -0
  1458. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.flows.txt +1 -0
  1459. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.layers.txt +1 -0
  1460. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.pipings.txt +85 -0
  1461. package/repos/tsgo/testdata/baselines/reference/effect-v3/instanceOfSchema.quickfixes.txt +105 -0
  1462. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMagic_build.refactors.txt +1176 -0
  1463. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMagic_prepare.refactors.txt +390 -0
  1464. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.errors.txt +59 -0
  1465. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.flows.layerMergeAllWithDependencies.mermaid +32 -0
  1466. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.flows.txt +1 -0
  1467. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.layers.txt +349 -0
  1468. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.pipings.txt +43 -0
  1469. package/repos/tsgo/testdata/baselines/reference/effect-v3/layerMergeAllWithDependencies.quickfixes.txt +223 -0
  1470. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.errors.txt +33 -0
  1471. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.flows.lazyPromiseInEffectSync.mermaid +36 -0
  1472. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.flows.txt +1 -0
  1473. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.layers.txt +1 -0
  1474. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.pipings.txt +99 -0
  1475. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync.quickfixes.txt +23 -0
  1476. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.errors.txt +15 -0
  1477. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.flows.lazyPromiseInEffectSync_preview.mermaid +8 -0
  1478. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.flows.txt +1 -0
  1479. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.layers.txt +1 -0
  1480. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.pipings.txt +29 -0
  1481. package/repos/tsgo/testdata/baselines/reference/effect-v3/lazyPromiseInEffectSync_preview.quickfixes.txt +13 -0
  1482. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.errors.txt +68 -0
  1483. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.flows.leakingRequirements.mermaid +28 -0
  1484. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.flows.txt +1 -0
  1485. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.layers.txt +1 -0
  1486. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.pipings.txt +57 -0
  1487. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements.quickfixes.txt +45 -0
  1488. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.errors.txt +104 -0
  1489. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.flows.leakingRequirements_allowJsdoc.mermaid +46 -0
  1490. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.flows.txt +1 -0
  1491. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.layers.txt +1 -0
  1492. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.pipings.txt +99 -0
  1493. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_allowJsdoc.quickfixes.txt +39 -0
  1494. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.errors.txt +40 -0
  1495. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.flows.leakingRequirements_genericTag.mermaid +13 -0
  1496. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.flows.txt +1 -0
  1497. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.layers.txt +1 -0
  1498. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.pipings.txt +29 -0
  1499. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_genericTag.quickfixes.txt +21 -0
  1500. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.errors.txt +20 -0
  1501. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.flows.leakingRequirements_heuristic.mermaid +15 -0
  1502. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.flows.txt +1 -0
  1503. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.layers.txt +1 -0
  1504. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.pipings.txt +29 -0
  1505. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_heuristic.quickfixes.txt +5 -0
  1506. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.errors.txt +24 -0
  1507. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.flows.leakingRequirements_leakableJsDoc.mermaid +13 -0
  1508. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.flows.txt +1 -0
  1509. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.layers.txt +1 -0
  1510. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.pipings.txt +29 -0
  1511. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_leakableJsDoc.quickfixes.txt +5 -0
  1512. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.errors.txt +22 -0
  1513. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.flows.leakingRequirements_noScope.mermaid +13 -0
  1514. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.flows.txt +1 -0
  1515. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.layers.txt +1 -0
  1516. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.pipings.txt +29 -0
  1517. package/repos/tsgo/testdata/baselines/reference/effect-v3/leakingRequirements_noScope.quickfixes.txt +5 -0
  1518. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque.refactors.txt +88 -0
  1519. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaqueWithNs_shortImport.refactors.txt +88 -0
  1520. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque_brand.refactors.txt +73 -0
  1521. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque_shortImport.refactors.txt +88 -0
  1522. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque_shortImportAlias.refactors.txt +88 -0
  1523. package/repos/tsgo/testdata/baselines/reference/effect-v3/makeSchemaOpaque_union.refactors.txt +88 -0
  1524. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.errors.txt +69 -0
  1525. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.flows.missedPipeableOpportunity.mermaid +182 -0
  1526. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.flows.txt +1 -0
  1527. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.layers.txt +1 -0
  1528. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.pipings.txt +303 -0
  1529. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity.quickfixes.txt +253 -0
  1530. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.errors.txt +44 -0
  1531. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.flows.missedPipeableOpportunity_error.mermaid +50 -0
  1532. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.flows.txt +1 -0
  1533. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.layers.txt +1 -0
  1534. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.pipings.txt +133 -0
  1535. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_error.quickfixes.txt +16 -0
  1536. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.errors.txt +53 -0
  1537. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.flows.missedPipeableOpportunity_safer.mermaid +52 -0
  1538. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.flows.txt +1 -0
  1539. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.layers.txt +1 -0
  1540. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.pipings.txt +87 -0
  1541. package/repos/tsgo/testdata/baselines/reference/effect-v3/missedPipeableOpportunity_safer.quickfixes.txt +71 -0
  1542. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.errors.txt +30 -0
  1543. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.flows.missingEffectContext_arrowReturnType.mermaid +33 -0
  1544. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.flows.txt +1 -0
  1545. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.layers.txt +1 -0
  1546. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.pipings.txt +51 -0
  1547. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_arrowReturnType.quickfixes.txt +13 -0
  1548. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.errors.txt +49 -0
  1549. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.flows.missingEffectContext_callExpression.mermaid +22 -0
  1550. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.flows.txt +1 -0
  1551. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.layers.txt +1 -0
  1552. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.pipings.txt +29 -0
  1553. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_callExpression.quickfixes.txt +43 -0
  1554. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.errors.txt +21 -0
  1555. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.flows.missingEffectContext_conciseBody.mermaid +5 -0
  1556. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.flows.txt +1 -0
  1557. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.layers.txt +1 -0
  1558. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.pipings.txt +1 -0
  1559. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_conciseBody.quickfixes.txt +13 -0
  1560. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.errors.txt +31 -0
  1561. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.flows.missingEffectContext_lazy.mermaid +26 -0
  1562. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.flows.txt +1 -0
  1563. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.layers.txt +1 -0
  1564. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.pipings.txt +29 -0
  1565. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_lazy.quickfixes.txt +13 -0
  1566. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.errors.txt +20 -0
  1567. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.flows.missingEffectContext_pipe.mermaid +13 -0
  1568. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.flows.txt +1 -0
  1569. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.layers.txt +1 -0
  1570. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.pipings.txt +19 -0
  1571. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_pipe.quickfixes.txt +13 -0
  1572. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.errors.txt +61 -0
  1573. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.flows.missingEffectContext_plainAssignment.mermaid +18 -0
  1574. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.flows.txt +1 -0
  1575. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.layers.txt +1 -0
  1576. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.pipings.txt +15 -0
  1577. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_plainAssignment.quickfixes.txt +59 -0
  1578. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.errors.txt +44 -0
  1579. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.flows.missingEffectContext_returnSignature.mermaid +14 -0
  1580. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.flows.txt +1 -0
  1581. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.layers.txt +1 -0
  1582. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.pipings.txt +1 -0
  1583. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_returnSignature.quickfixes.txt +33 -0
  1584. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.errors.txt +15 -0
  1585. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.flows.missingEffectContext_skipArrowDefaults.mermaid +11 -0
  1586. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.flows.txt +1 -0
  1587. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.layers.txt +1 -0
  1588. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.pipings.txt +15 -0
  1589. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectContext_skipArrowDefaults.quickfixes.txt +10 -0
  1590. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.errors.txt +53 -0
  1591. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.flows.missingEffectError_callExpression.mermaid +22 -0
  1592. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.flows.txt +1 -0
  1593. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.layers.txt +1 -0
  1594. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.pipings.txt +29 -0
  1595. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_callExpression.quickfixes.txt +90 -0
  1596. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.errors.txt +67 -0
  1597. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.flows.missingEffectError_plainAssignment.mermaid +24 -0
  1598. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.flows.txt +1 -0
  1599. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.layers.txt +1 -0
  1600. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.pipings.txt +29 -0
  1601. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_plainAssignment.quickfixes.txt +211 -0
  1602. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.errors.txt +47 -0
  1603. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.flows.missingEffectError_returnSignature.mermaid +14 -0
  1604. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.flows.txt +1 -0
  1605. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.layers.txt +1 -0
  1606. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.pipings.txt +1 -0
  1607. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_returnSignature.quickfixes.txt +111 -0
  1608. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.errors.txt +36 -0
  1609. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.flows.missingEffectError_tagged.mermaid +22 -0
  1610. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.flows.txt +1 -0
  1611. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.layers.txt +1 -0
  1612. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.pipings.txt +43 -0
  1613. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectError_tagged.quickfixes.txt +110 -0
  1614. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.errors.txt +98 -0
  1615. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.flows.missingEffectServiceDependency.mermaid +80 -0
  1616. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.flows.txt +1 -0
  1617. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.layers.txt +1 -0
  1618. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.pipings.txt +141 -0
  1619. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency.quickfixes.txt +33 -0
  1620. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.errors.txt +21 -0
  1621. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.flows.missingEffectServiceDependency_preview.mermaid +16 -0
  1622. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.flows.txt +1 -0
  1623. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.layers.txt +1 -0
  1624. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.pipings.txt +29 -0
  1625. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingEffectServiceDependency_preview.quickfixes.txt +13 -0
  1626. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.errors.txt +44 -0
  1627. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.flows.missingLayerContext.mermaid +22 -0
  1628. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.flows.txt +1 -0
  1629. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.layers.txt +1 -0
  1630. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.pipings.txt +29 -0
  1631. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingLayerContext.quickfixes.txt +23 -0
  1632. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.errors.txt +46 -0
  1633. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.flows.missingReturnYieldStar.mermaid +54 -0
  1634. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.flows.txt +1 -0
  1635. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.layers.txt +1 -0
  1636. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.pipings.txt +127 -0
  1637. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar.quickfixes.txt +178 -0
  1638. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.errors.txt +21 -0
  1639. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.flows.missingReturnYieldStar_yieldable.mermaid +13 -0
  1640. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.flows.txt +1 -0
  1641. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.layers.txt +1 -0
  1642. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.pipings.txt +29 -0
  1643. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingReturnYieldStar_yieldable.quickfixes.txt +30 -0
  1644. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.errors.txt +92 -0
  1645. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.flows.missingStarInYieldEffectGen.mermaid +53 -0
  1646. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.flows.txt +1 -0
  1647. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.layers.txt +1 -0
  1648. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.pipings.txt +183 -0
  1649. package/repos/tsgo/testdata/baselines/reference/effect-v3/missingStarInYieldEffectGen.quickfixes.txt +538 -0
  1650. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.errors.txt +53 -0
  1651. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.flows.multipleEffectProvide.mermaid +63 -0
  1652. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.flows.txt +1 -0
  1653. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.layers.txt +1 -0
  1654. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.pipings.txt +71 -0
  1655. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide.quickfixes.txt +201 -0
  1656. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.errors.txt +67 -0
  1657. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.flows.multipleEffectProvide_effectFn.mermaid +78 -0
  1658. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.flows.txt +1 -0
  1659. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.layers.txt +1 -0
  1660. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.pipings.txt +77 -0
  1661. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFn.quickfixes.txt +254 -0
  1662. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.errors.txt +50 -0
  1663. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.flows.multipleEffectProvide_effectFnRegular.mermaid +61 -0
  1664. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.flows.txt +1 -0
  1665. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.layers.txt +1 -0
  1666. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.pipings.txt +59 -0
  1667. package/repos/tsgo/testdata/baselines/reference/effect-v3/multipleEffectProvide_effectFnRegular.quickfixes.txt +149 -0
  1668. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.errors.txt +89 -0
  1669. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.flows.nestedEffectGenYield.mermaid +55 -0
  1670. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.flows.txt +1 -0
  1671. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.layers.txt +1 -0
  1672. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.pipings.txt +201 -0
  1673. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield.quickfixes.txt +286 -0
  1674. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.errors.txt +21 -0
  1675. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.flows.nestedEffectGenYield_preview.mermaid +7 -0
  1676. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.flows.txt +1 -0
  1677. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.layers.txt +1 -0
  1678. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.pipings.txt +29 -0
  1679. package/repos/tsgo/testdata/baselines/reference/effect-v3/nestedEffectGenYield_preview.quickfixes.txt +13 -0
  1680. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.errors.txt +44 -0
  1681. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.flows.newPromise.mermaid +49 -0
  1682. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.flows.txt +1 -0
  1683. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.layers.txt +1 -0
  1684. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.pipings.txt +71 -0
  1685. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise.quickfixes.txt +43 -0
  1686. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.errors.txt +14 -0
  1687. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.flows.newPromise_preview.mermaid +10 -0
  1688. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.flows.txt +1 -0
  1689. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.layers.txt +1 -0
  1690. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.pipings.txt +15 -0
  1691. package/repos/tsgo/testdata/baselines/reference/effect-v3/newPromise_preview.quickfixes.txt +13 -0
  1692. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.errors.txt +103 -0
  1693. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.flows.nodeBuiltinImport.mermaid +6 -0
  1694. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.flows.txt +1 -0
  1695. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.layers.txt +1 -0
  1696. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.pipings.txt +15 -0
  1697. package/repos/tsgo/testdata/baselines/reference/effect-v3/nodeBuiltinImport.quickfixes.txt +217 -0
  1698. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.errors.txt +81 -0
  1699. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.flows.nonObjectEffectServiceType.mermaid +53 -0
  1700. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.flows.txt +1 -0
  1701. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.layers.txt +1 -0
  1702. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.pipings.txt +85 -0
  1703. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType.quickfixes.txt +73 -0
  1704. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.errors.txt +18 -0
  1705. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.flows.nonObjectEffectServiceType_preview.mermaid +2 -0
  1706. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.flows.txt +1 -0
  1707. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.layers.txt +1 -0
  1708. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.pipings.txt +1 -0
  1709. package/repos/tsgo/testdata/baselines/reference/effect-v3/nonObjectEffectServiceType_preview.quickfixes.txt +13 -0
  1710. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.errors.txt +34 -0
  1711. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.flows.outdatedApi.mermaid +50 -0
  1712. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.flows.txt +1 -0
  1713. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.layers.txt +1 -0
  1714. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.pipings.txt +121 -0
  1715. package/repos/tsgo/testdata/baselines/reference/effect-v3/outdatedApi.quickfixes.txt +42 -0
  1716. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.errors.txt +53 -0
  1717. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.flows.overriddenSchemaConstructor.mermaid +31 -0
  1718. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.flows.txt +1 -0
  1719. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.layers.txt +1 -0
  1720. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.pipings.txt +85 -0
  1721. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor.quickfixes.txt +202 -0
  1722. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.errors.txt +25 -0
  1723. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.flows.overriddenSchemaConstructor_static.mermaid +9 -0
  1724. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.flows.txt +1 -0
  1725. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.layers.txt +1 -0
  1726. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.pipings.txt +29 -0
  1727. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_static.quickfixes.txt +51 -0
  1728. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.errors.txt +17 -0
  1729. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.flows.overriddenSchemaConstructor_valid.mermaid +9 -0
  1730. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.flows.txt +1 -0
  1731. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.layers.txt +1 -0
  1732. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.pipings.txt +15 -0
  1733. package/repos/tsgo/testdata/baselines/reference/effect-v3/overriddenSchemaConstructor_valid.quickfixes.txt +5 -0
  1734. package/repos/tsgo/testdata/baselines/reference/effect-v3/pipeableToDatafirst.refactors.txt +378 -0
  1735. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.errors.txt +107 -0
  1736. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.flows.preferSchemaOverJson.mermaid +73 -0
  1737. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.flows.txt +1 -0
  1738. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.layers.txt +1 -0
  1739. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.pipings.txt +295 -0
  1740. package/repos/tsgo/testdata/baselines/reference/effect-v3/preferSchemaOverJson.quickfixes.txt +126 -0
  1741. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.errors.txt +36 -0
  1742. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.flows.processEnv.mermaid +17 -0
  1743. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.flows.txt +1 -0
  1744. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.layers.txt +1 -0
  1745. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.pipings.txt +29 -0
  1746. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv.quickfixes.txt +33 -0
  1747. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.errors.txt +38 -0
  1748. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.flows.processEnvInEffect.mermaid +23 -0
  1749. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.flows.txt +1 -0
  1750. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.layers.txt +1 -0
  1751. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.pipings.txt +43 -0
  1752. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect.quickfixes.txt +23 -0
  1753. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.errors.txt +18 -0
  1754. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.flows.processEnvInEffect_preview.mermaid +5 -0
  1755. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.flows.txt +1 -0
  1756. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.layers.txt +1 -0
  1757. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.pipings.txt +15 -0
  1758. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_preview.quickfixes.txt +13 -0
  1759. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.errors.txt +40 -0
  1760. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.flows.processEnvInEffect_thunks.mermaid +45 -0
  1761. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.flows.txt +1 -0
  1762. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.layers.txt +1 -0
  1763. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.pipings.txt +85 -0
  1764. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnvInEffect_thunks.quickfixes.txt +43 -0
  1765. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.errors.txt +15 -0
  1766. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.flows.processEnv_preview.mermaid +2 -0
  1767. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.flows.txt +1 -0
  1768. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.layers.txt +1 -0
  1769. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.pipings.txt +1 -0
  1770. package/repos/tsgo/testdata/baselines/reference/effect-v3/processEnv_preview.quickfixes.txt +13 -0
  1771. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.errors.txt +81 -0
  1772. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.flows.redundantOrDie.mermaid +92 -0
  1773. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.flows.txt +1 -0
  1774. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.layers.txt +1 -0
  1775. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.pipings.txt +285 -0
  1776. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie.quickfixes.txt +33 -0
  1777. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.errors.txt +25 -0
  1778. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.flows.redundantOrDie_preview.mermaid +13 -0
  1779. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.flows.txt +1 -0
  1780. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.layers.txt +1 -0
  1781. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.pipings.txt +43 -0
  1782. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantOrDie_preview.quickfixes.txt +13 -0
  1783. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.errors.txt +51 -0
  1784. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.flows.redundantSchemaTagIdentifier.mermaid +30 -0
  1785. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.flows.txt +1 -0
  1786. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.layers.txt +1 -0
  1787. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.pipings.txt +57 -0
  1788. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier.quickfixes.txt +156 -0
  1789. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.errors.txt +18 -0
  1790. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.flows.redundantSchemaTagIdentifier_preview.mermaid +8 -0
  1791. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.flows.txt +1 -0
  1792. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.layers.txt +1 -0
  1793. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.pipings.txt +15 -0
  1794. package/repos/tsgo/testdata/baselines/reference/effect-v3/redundantSchemaTagIdentifier_preview.quickfixes.txt +27 -0
  1795. package/repos/tsgo/testdata/baselines/reference/effect-v3/removeUnnecessaryEffectGen.refactors.txt +93 -0
  1796. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.errors.txt +16 -0
  1797. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.flows.returnEffectInGen.mermaid +9 -0
  1798. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.flows.txt +1 -0
  1799. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.layers.txt +1 -0
  1800. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.pipings.txt +29 -0
  1801. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGen.quickfixes.txt +25 -0
  1802. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.errors.txt +39 -0
  1803. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.flows.returnEffectInGenNoDiagnostics.mermaid +68 -0
  1804. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.flows.txt +1 -0
  1805. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.layers.txt +1 -0
  1806. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.pipings.txt +169 -0
  1807. package/repos/tsgo/testdata/baselines/reference/effect-v3/returnEffectInGenNoDiagnostics.quickfixes.txt +5 -0
  1808. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.errors.txt +39 -0
  1809. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.flows.runEffectInsideEffect.mermaid +47 -0
  1810. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.flows.txt +1 -0
  1811. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.layers.txt +1 -0
  1812. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.pipings.txt +131 -0
  1813. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect.quickfixes.txt +57 -0
  1814. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.errors.txt +19 -0
  1815. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.flows.runEffectInsideEffect_preview.mermaid +17 -0
  1816. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.flows.txt +1 -0
  1817. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.layers.txt +1 -0
  1818. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.pipings.txt +33 -0
  1819. package/repos/tsgo/testdata/baselines/reference/effect-v3/runEffectInsideEffect_preview.quickfixes.txt +30 -0
  1820. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.errors.txt +34 -0
  1821. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.flows.schemaStructWithTag.mermaid +4 -0
  1822. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.flows.txt +1 -0
  1823. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.layers.txt +1 -0
  1824. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.pipings.txt +43 -0
  1825. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaStructWithTag.quickfixes.txt +35 -0
  1826. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.errors.txt +84 -0
  1827. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.flows.schemaSyncInEffect.mermaid +48 -0
  1828. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.flows.txt +1 -0
  1829. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.layers.txt +1 -0
  1830. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.pipings.txt +225 -0
  1831. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect.quickfixes.txt +56 -0
  1832. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.errors.txt +22 -0
  1833. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.flows.schemaSyncInEffect_preview.mermaid +12 -0
  1834. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.flows.txt +1 -0
  1835. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.layers.txt +1 -0
  1836. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.pipings.txt +57 -0
  1837. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_preview.quickfixes.txt +13 -0
  1838. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.errors.txt +46 -0
  1839. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.flows.schemaSyncInEffect_thunks.mermaid +46 -0
  1840. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.flows.txt +1 -0
  1841. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.layers.txt +1 -0
  1842. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.pipings.txt +169 -0
  1843. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaSyncInEffect_thunks.quickfixes.txt +43 -0
  1844. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.errors.txt +17 -0
  1845. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.flows.schemaUnionOfLiterals.mermaid +3 -0
  1846. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.flows.txt +1 -0
  1847. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.layers.txt +1 -0
  1848. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.pipings.txt +47 -0
  1849. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals.quickfixes.txt +26 -0
  1850. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.errors.txt +15 -0
  1851. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.flows.schemaUnionOfLiterals_preview.mermaid +2 -0
  1852. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.flows.txt +1 -0
  1853. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.layers.txt +1 -0
  1854. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.pipings.txt +29 -0
  1855. package/repos/tsgo/testdata/baselines/reference/effect-v3/schemaUnionOfLiterals_preview.quickfixes.txt +24 -0
  1856. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.errors.txt +84 -0
  1857. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.flows.scopeInLayerEffect.mermaid +121 -0
  1858. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.flows.txt +1 -0
  1859. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.layers.txt +102 -0
  1860. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.pipings.txt +251 -0
  1861. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect.quickfixes.txt +165 -0
  1862. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.errors.txt +25 -0
  1863. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.flows.scopeInLayerEffect_preview.mermaid +26 -0
  1864. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.flows.txt +1 -0
  1865. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.layers.txt +36 -0
  1866. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.pipings.txt +47 -0
  1867. package/repos/tsgo/testdata/baselines/reference/effect-v3/scopeInLayerEffect_preview.quickfixes.txt +31 -0
  1868. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.errors.txt +82 -0
  1869. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.flows.strictBooleanExpressions.mermaid +19 -0
  1870. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.flows.txt +1 -0
  1871. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.layers.txt +1 -0
  1872. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.pipings.txt +1 -0
  1873. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictBooleanExpressions.quickfixes.txt +113 -0
  1874. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.errors.txt +68 -0
  1875. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.flows.strictEffectProvide.mermaid +77 -0
  1876. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.flows.txt +1 -0
  1877. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.layers.txt +59 -0
  1878. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.pipings.txt +121 -0
  1879. package/repos/tsgo/testdata/baselines/reference/effect-v3/strictEffectProvide.quickfixes.txt +43 -0
  1880. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema.refactors.txt +268 -0
  1881. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_avoidConflict.refactors.txt +117 -0
  1882. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_externalType.refactors.txt +62 -0
  1883. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_reuse.refactors.txt +112 -0
  1884. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_symbolNames.refactors.txt +129 -0
  1885. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_typeAlias.refactors.txt +86 -0
  1886. package/repos/tsgo/testdata/baselines/reference/effect-v3/structuralTypeToSchema_union.refactors.txt +58 -0
  1887. package/repos/tsgo/testdata/baselines/reference/effect-v3/toggleLazyConst.refactors.txt +140 -0
  1888. package/repos/tsgo/testdata/baselines/reference/effect-v3/togglePipeStyle.refactors.txt +94 -0
  1889. package/repos/tsgo/testdata/baselines/reference/effect-v3/toggleReturnTypeAnnotation.refactors.txt +335 -0
  1890. package/repos/tsgo/testdata/baselines/reference/effect-v3/toggleTypeAnnotation.refactors.txt +754 -0
  1891. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.errors.txt +76 -0
  1892. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.flows.tryCatchInEffectGen.mermaid +76 -0
  1893. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.flows.txt +1 -0
  1894. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.layers.txt +1 -0
  1895. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.pipings.txt +197 -0
  1896. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen.quickfixes.txt +33 -0
  1897. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.errors.txt +19 -0
  1898. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.flows.tryCatchInEffectGen_finally.mermaid +17 -0
  1899. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.flows.txt +1 -0
  1900. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.layers.txt +1 -0
  1901. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.pipings.txt +43 -0
  1902. package/repos/tsgo/testdata/baselines/reference/effect-v3/tryCatchInEffectGen_finally.quickfixes.txt +5 -0
  1903. package/repos/tsgo/testdata/baselines/reference/effect-v3/typeToEffectSchema.refactors.txt +319 -0
  1904. package/repos/tsgo/testdata/baselines/reference/effect-v3/typeToEffectSchemaClass.refactors.txt +303 -0
  1905. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.errors.txt +64 -0
  1906. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.flows.txt +1 -0
  1907. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.flows.unknownInEffectCatch.mermaid +87 -0
  1908. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.layers.txt +1 -0
  1909. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.pipings.txt +209 -0
  1910. package/repos/tsgo/testdata/baselines/reference/effect-v3/unknownInEffectCatch.quickfixes.txt +53 -0
  1911. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.errors.txt +41 -0
  1912. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.flows.txt +1 -0
  1913. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.flows.unnecessaryArrowBlock.mermaid +20 -0
  1914. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.layers.txt +1 -0
  1915. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.pipings.txt +1 -0
  1916. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock.quickfixes.txt +102 -0
  1917. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.errors.txt +17 -0
  1918. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.flows.txt +1 -0
  1919. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.flows.unnecessaryArrowBlock_preview.mermaid +5 -0
  1920. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.layers.txt +1 -0
  1921. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.pipings.txt +1 -0
  1922. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryArrowBlock_preview.quickfixes.txt +22 -0
  1923. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.errors.txt +27 -0
  1924. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.flows.txt +1 -0
  1925. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.flows.unnecessaryEffectGen.mermaid +31 -0
  1926. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.layers.txt +1 -0
  1927. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.pipings.txt +85 -0
  1928. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen.quickfixes.txt +32 -0
  1929. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.errors.txt +18 -0
  1930. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.flows.txt +1 -0
  1931. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.flows.unnecessaryEffectGen_ifBlock.mermaid +28 -0
  1932. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.layers.txt +1 -0
  1933. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.pipings.txt +57 -0
  1934. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_ifBlock.quickfixes.txt +5 -0
  1935. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.errors.txt +36 -0
  1936. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.flows.txt +1 -0
  1937. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.flows.unnecessaryEffectGen_noReturn.mermaid +28 -0
  1938. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.layers.txt +1 -0
  1939. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.pipings.txt +99 -0
  1940. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryEffectGen_noReturn.quickfixes.txt +69 -0
  1941. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.errors.txt +42 -0
  1942. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.flows.txt +1 -0
  1943. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.flows.unnecessaryFailYieldableError.mermaid +45 -0
  1944. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.layers.txt +1 -0
  1945. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.pipings.txt +113 -0
  1946. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryFailYieldableError.quickfixes.txt +129 -0
  1947. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.errors.txt +29 -0
  1948. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.flows.txt +1 -0
  1949. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.flows.unnecessaryPipe.mermaid +33 -0
  1950. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.layers.txt +1 -0
  1951. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.pipings.txt +61 -0
  1952. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe.quickfixes.txt +67 -0
  1953. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.errors.txt +20 -0
  1954. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.flows.txt +1 -0
  1955. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.flows.unnecessaryPipeChain.mermaid +43 -0
  1956. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.layers.txt +1 -0
  1957. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.pipings.txt +45 -0
  1958. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipeChain.quickfixes.txt +49 -0
  1959. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.errors.txt +23 -0
  1960. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.flows.txt +1 -0
  1961. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.flows.unnecessaryPipe_disableMidObject.mermaid +20 -0
  1962. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.layers.txt +1 -0
  1963. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.pipings.txt +43 -0
  1964. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_disableMidObject.quickfixes.txt +55 -0
  1965. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.errors.txt +23 -0
  1966. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.flows.txt +1 -0
  1967. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.flows.unnecessaryPipe_namespace.mermaid +5 -0
  1968. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.layers.txt +1 -0
  1969. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.pipings.txt +25 -0
  1970. package/repos/tsgo/testdata/baselines/reference/effect-v3/unnecessaryPipe_namespace.quickfixes.txt +29 -0
  1971. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.errors.txt +62 -0
  1972. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.flows.txt +1 -0
  1973. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.flows.unsafeEffectTypeAssertion.mermaid +12 -0
  1974. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.layers.txt +88 -0
  1975. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.pipings.txt +1 -0
  1976. package/repos/tsgo/testdata/baselines/reference/effect-v3/unsafeEffectTypeAssertion.quickfixes.txt +283 -0
  1977. package/repos/tsgo/testdata/baselines/reference/effect-v3/wrapWithEffectGen.refactors.txt +425 -0
  1978. package/repos/tsgo/testdata/baselines/reference/effect-v3/wrapWithEffectGen_noclass.refactors.txt +21 -0
  1979. package/repos/tsgo/testdata/baselines/reference/effect-v3/writeTagClassAccessors.refactors.txt +86 -0
  1980. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.errors.txt +153 -0
  1981. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.flows.anyUnknownInErrorContext.mermaid +77 -0
  1982. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.flows.txt +1 -0
  1983. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.layers.txt +69 -0
  1984. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.pipings.txt +197 -0
  1985. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext.quickfixes.txt +403 -0
  1986. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.errors.txt +32 -0
  1987. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.flows.anyUnknownInErrorContext_preview.mermaid +13 -0
  1988. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.flows.txt +1 -0
  1989. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.layers.txt +1 -0
  1990. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.pipings.txt +29 -0
  1991. package/repos/tsgo/testdata/baselines/reference/effect-v4/anyUnknownInErrorContext_preview.quickfixes.txt +37 -0
  1992. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToFn.refactors.txt +92 -0
  1993. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToFnTryPromise.refactors.txt +118 -0
  1994. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToFn_fetch.refactors.txt +106 -0
  1995. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToFn_generics.refactors.txt +92 -0
  1996. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGen.refactors.txt +92 -0
  1997. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGenTryPromise.refactors.txt +124 -0
  1998. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGenTryPromise_anonymous.refactors.txt +358 -0
  1999. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGen_anonymous.refactors.txt +290 -0
  2000. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncAwaitToGen_namedImport.refactors.txt +92 -0
  2001. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.errors.txt +52 -0
  2002. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.flows.asyncFunction.mermaid +29 -0
  2003. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.flows.txt +1 -0
  2004. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.layers.txt +1 -0
  2005. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.pipings.txt +85 -0
  2006. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction.quickfixes.txt +43 -0
  2007. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.errors.txt +16 -0
  2008. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.flows.asyncFunction_preview.mermaid +2 -0
  2009. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.flows.txt +1 -0
  2010. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.layers.txt +1 -0
  2011. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.pipings.txt +15 -0
  2012. package/repos/tsgo/testdata/baselines/reference/effect-v4/asyncFunction_preview.quickfixes.txt +13 -0
  2013. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.errors.txt +15 -0
  2014. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.flows.callExpPipeable.mermaid +34 -0
  2015. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.flows.txt +1 -0
  2016. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.layers.txt +1 -0
  2017. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.pipings.txt +55 -0
  2018. package/repos/tsgo/testdata/baselines/reference/effect-v4/callExpPipeable.quickfixes.txt +7 -0
  2019. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.errors.txt +86 -0
  2020. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.flows.catchAllToMapError.mermaid +164 -0
  2021. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.flows.txt +1 -0
  2022. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.layers.txt +1 -0
  2023. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.pipings.txt +289 -0
  2024. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError.quickfixes.txt +403 -0
  2025. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.errors.txt +41 -0
  2026. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.flows.catchAllToMapError_effectFn.mermaid +87 -0
  2027. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.flows.txt +1 -0
  2028. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.layers.txt +1 -0
  2029. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.pipings.txt +169 -0
  2030. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_effectFn.quickfixes.txt +126 -0
  2031. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.errors.txt +21 -0
  2032. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.flows.catchAllToMapError_preview.mermaid +19 -0
  2033. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.flows.txt +1 -0
  2034. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.layers.txt +1 -0
  2035. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.pipings.txt +33 -0
  2036. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchAllToMapError_preview.quickfixes.txt +30 -0
  2037. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.errors.txt +63 -0
  2038. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.flows.catchToOrElseSucceed.mermaid +131 -0
  2039. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.flows.txt +1 -0
  2040. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.layers.txt +1 -0
  2041. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.pipings.txt +239 -0
  2042. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed.quickfixes.txt +243 -0
  2043. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.errors.txt +15 -0
  2044. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.flows.catchToOrElseSucceed_preview.mermaid +18 -0
  2045. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.flows.txt +1 -0
  2046. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.layers.txt +1 -0
  2047. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.pipings.txt +33 -0
  2048. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchToOrElseSucceed_preview.quickfixes.txt +24 -0
  2049. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.errors.txt +93 -0
  2050. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.flows.catchUnfailableEffect.mermaid +152 -0
  2051. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.flows.txt +1 -0
  2052. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.layers.txt +1 -0
  2053. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.pipings.txt +215 -0
  2054. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect.quickfixes.txt +78 -0
  2055. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.errors.txt +17 -0
  2056. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.flows.catchUnfailableEffect_preview.mermaid +18 -0
  2057. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.flows.txt +1 -0
  2058. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.layers.txt +1 -0
  2059. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.pipings.txt +33 -0
  2060. package/repos/tsgo/testdata/baselines/reference/effect-v4/catchUnfailableEffect_preview.quickfixes.txt +13 -0
  2061. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.errors.txt +24 -0
  2062. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.flows.classImplementsIssue.mermaid +17 -0
  2063. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.flows.txt +1 -0
  2064. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.layers.txt +1 -0
  2065. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.pipings.txt +1 -0
  2066. package/repos/tsgo/testdata/baselines/reference/effect-v4/classImplementsIssue.quickfixes.txt +7 -0
  2067. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.errors.txt +18 -0
  2068. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.flows.classSelfMismatch_contextTag.mermaid +3 -0
  2069. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.flows.txt +1 -0
  2070. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.layers.txt +1 -0
  2071. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.pipings.txt +29 -0
  2072. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_contextTag.quickfixes.txt +5 -0
  2073. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.errors.txt +57 -0
  2074. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.flows.classSelfMismatch_schema.mermaid +43 -0
  2075. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.flows.txt +1 -0
  2076. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.layers.txt +1 -0
  2077. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.pipings.txt +113 -0
  2078. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_schema.quickfixes.txt +117 -0
  2079. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.errors.txt +23 -0
  2080. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.flows.classSelfMismatch_service.mermaid +3 -0
  2081. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.flows.txt +1 -0
  2082. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.layers.txt +1 -0
  2083. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.pipings.txt +29 -0
  2084. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_service.quickfixes.txt +32 -0
  2085. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.errors.txt +22 -0
  2086. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.flows.classSelfMismatch_sqlClass.mermaid +15 -0
  2087. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.flows.txt +1 -0
  2088. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.layers.txt +1 -0
  2089. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.pipings.txt +29 -0
  2090. package/repos/tsgo/testdata/baselines/reference/effect-v4/classSelfMismatch_sqlClass.quickfixes.txt +31 -0
  2091. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.errors.txt +48 -0
  2092. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.flows.cryptoRandomUUID.mermaid +27 -0
  2093. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.flows.txt +1 -0
  2094. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.layers.txt +1 -0
  2095. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.pipings.txt +29 -0
  2096. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID.quickfixes.txt +43 -0
  2097. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.errors.txt +38 -0
  2098. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.flows.cryptoRandomUUIDInEffect.mermaid +21 -0
  2099. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.flows.txt +1 -0
  2100. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.layers.txt +1 -0
  2101. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.pipings.txt +43 -0
  2102. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect.quickfixes.txt +23 -0
  2103. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.errors.txt +17 -0
  2104. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.flows.cryptoRandomUUIDInEffect_preview.mermaid +5 -0
  2105. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.flows.txt +1 -0
  2106. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.layers.txt +1 -0
  2107. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.pipings.txt +15 -0
  2108. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_preview.quickfixes.txt +13 -0
  2109. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.errors.txt +39 -0
  2110. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.flows.cryptoRandomUUIDInEffect_thunks.mermaid +55 -0
  2111. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.flows.txt +1 -0
  2112. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.layers.txt +1 -0
  2113. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.pipings.txt +85 -0
  2114. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUIDInEffect_thunks.quickfixes.txt +43 -0
  2115. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.errors.txt +14 -0
  2116. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.flows.cryptoRandomUUID_preview.mermaid +2 -0
  2117. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.flows.txt +1 -0
  2118. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.layers.txt +1 -0
  2119. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.pipings.txt +1 -0
  2120. package/repos/tsgo/testdata/baselines/reference/effect-v4/cryptoRandomUUID_preview.quickfixes.txt +13 -0
  2121. package/repos/tsgo/testdata/baselines/reference/effect-v4/debugDocumentSymbolFlows.symbols.txt +35 -0
  2122. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.errors.txt +41 -0
  2123. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.flows.package.mermaid +2 -0
  2124. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.flows.test.mermaid +7 -0
  2125. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.flows.txt +2 -0
  2126. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.layers.txt +2 -0
  2127. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.pipings.txt +30 -0
  2128. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys.quickfixes.txt +51 -0
  2129. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.errors.txt +78 -0
  2130. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.flows.package.mermaid +2 -0
  2131. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.flows.test.mermaid +15 -0
  2132. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.flows.txt +3 -0
  2133. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.flows.utils.mermaid +13 -0
  2134. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.layers.txt +3 -0
  2135. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.pipings.txt +45 -0
  2136. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_custom.quickfixes.txt +71 -0
  2137. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.errors.txt +41 -0
  2138. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.flows.package.mermaid +2 -0
  2139. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.flows.test.mermaid +7 -0
  2140. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.flows.txt +2 -0
  2141. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.layers.txt +2 -0
  2142. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.pipings.txt +30 -0
  2143. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_defaultHashed.quickfixes.txt +51 -0
  2144. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.errors.txt +41 -0
  2145. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.flows.package.mermaid +2 -0
  2146. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.flows.test.mermaid +7 -0
  2147. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.flows.txt +2 -0
  2148. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.layers.txt +2 -0
  2149. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.pipings.txt +30 -0
  2150. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_packageIdentifier.quickfixes.txt +51 -0
  2151. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.errors.txt +17 -0
  2152. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.flows.deterministicKeys_preview.mermaid +2 -0
  2153. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.flows.txt +1 -0
  2154. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.layers.txt +1 -0
  2155. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.pipings.txt +15 -0
  2156. package/repos/tsgo/testdata/baselines/reference/effect-v4/deterministicKeys_preview.quickfixes.txt +26 -0
  2157. package/repos/tsgo/testdata/baselines/reference/effect-v4/documentSymbolEffectStub.symbols.txt +123 -0
  2158. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.errors.txt +18 -0
  2159. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.flows.duplicatePackage.mermaid +11 -0
  2160. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.flows.txt +1 -0
  2161. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.layers.txt +1 -0
  2162. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.pipings.txt +29 -0
  2163. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage.quickfixes.txt +26 -0
  2164. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.errors.txt +29 -0
  2165. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.flows.test.mermaid +6 -0
  2166. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.flows.txt +1 -0
  2167. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.layers.txt +1 -0
  2168. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.pipings.txt +15 -0
  2169. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_detected.quickfixes.txt +17 -0
  2170. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.errors.txt +26 -0
  2171. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.flows.test.mermaid +6 -0
  2172. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.flows.txt +1 -0
  2173. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.layers.txt +1 -0
  2174. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.pipings.txt +15 -0
  2175. package/repos/tsgo/testdata/baselines/reference/effect-v4/duplicatePackage_suppressed.quickfixes.txt +7 -0
  2176. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.errors.txt +28 -0
  2177. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.flows.effectDoNotation.mermaid +21 -0
  2178. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.flows.txt +1 -0
  2179. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.layers.txt +1 -0
  2180. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.pipings.txt +29 -0
  2181. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation.quickfixes.txt +33 -0
  2182. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.errors.txt +21 -0
  2183. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.flows.effectDoNotation_preview.mermaid +40 -0
  2184. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.flows.txt +1 -0
  2185. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.layers.txt +1 -0
  2186. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.pipings.txt +51 -0
  2187. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectDoNotation_preview.quickfixes.txt +13 -0
  2188. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.errors.txt +55 -0
  2189. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.flows.effectFn.mermaid +153 -0
  2190. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.flows.txt +1 -0
  2191. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.layers.txt +1 -0
  2192. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.pipings.txt +233 -0
  2193. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFn.quickfixes.txt +13 -0
  2194. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.errors.txt +98 -0
  2195. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.flows.effectFnIife.mermaid +135 -0
  2196. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.flows.txt +1 -0
  2197. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.layers.txt +1 -0
  2198. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.pipings.txt +309 -0
  2199. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife.quickfixes.txt +429 -0
  2200. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.errors.txt +19 -0
  2201. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.flows.effectFnIife_preview.mermaid +12 -0
  2202. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.flows.txt +1 -0
  2203. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.layers.txt +1 -0
  2204. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.pipings.txt +29 -0
  2205. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnIife_preview.quickfixes.txt +26 -0
  2206. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.errors.txt +117 -0
  2207. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.flows.effectFnImplicitAny.mermaid +109 -0
  2208. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.flows.txt +1 -0
  2209. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.layers.txt +1 -0
  2210. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.pipings.txt +213 -0
  2211. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny.quickfixes.txt +42 -0
  2212. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.errors.txt +97 -0
  2213. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.flows.effectFnImplicitAnyNonGen.mermaid +135 -0
  2214. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.flows.txt +1 -0
  2215. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.layers.txt +1 -0
  2216. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.pipings.txt +325 -0
  2217. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAnyNonGen.quickfixes.txt +42 -0
  2218. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.errors.txt +29 -0
  2219. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.flows.effectFnImplicitAny_noDiags.mermaid +25 -0
  2220. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.flows.txt +1 -0
  2221. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.layers.txt +30 -0
  2222. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.pipings.txt +61 -0
  2223. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_noDiags.quickfixes.txt +7 -0
  2224. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.errors.txt +16 -0
  2225. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.flows.effectFnImplicitAny_preview.mermaid +10 -0
  2226. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.flows.txt +1 -0
  2227. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.layers.txt +1 -0
  2228. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.pipings.txt +29 -0
  2229. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnImplicitAny_preview.quickfixes.txt +13 -0
  2230. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.errors.txt +33 -0
  2231. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.flows.effectFnOpportunity_alreadyEffectFn.mermaid +28 -0
  2232. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.flows.txt +1 -0
  2233. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.layers.txt +1 -0
  2234. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.pipings.txt +85 -0
  2235. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_alreadyEffectFn.quickfixes.txt +5 -0
  2236. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.errors.txt +66 -0
  2237. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.flows.effectFnOpportunity_basic.mermaid +52 -0
  2238. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.flows.txt +1 -0
  2239. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.layers.txt +1 -0
  2240. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.pipings.txt +113 -0
  2241. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_basic.quickfixes.txt +502 -0
  2242. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.errors.txt +61 -0
  2243. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.flows.effectFnOpportunity_defaultConfig.mermaid +51 -0
  2244. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.flows.txt +1 -0
  2245. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.layers.txt +1 -0
  2246. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.pipings.txt +93 -0
  2247. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_defaultConfig.quickfixes.txt +153 -0
  2248. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.errors.txt +44 -0
  2249. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.flows.effectFnOpportunity_genWithThis.mermaid +28 -0
  2250. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.flows.txt +1 -0
  2251. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.layers.txt +1 -0
  2252. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.pipings.txt +29 -0
  2253. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_genWithThis.quickfixes.txt +5 -0
  2254. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.errors.txt +48 -0
  2255. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.flows.effectFnOpportunity_inferred.mermaid +40 -0
  2256. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.flows.txt +1 -0
  2257. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.layers.txt +1 -0
  2258. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.pipings.txt +85 -0
  2259. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferred.quickfixes.txt +78 -0
  2260. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.errors.txt +59 -0
  2261. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.flows.effectFnOpportunity_inferredLayer.mermaid +83 -0
  2262. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.flows.txt +1 -0
  2263. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.layers.txt +1 -0
  2264. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.pipings.txt +163 -0
  2265. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayer.quickfixes.txt +493 -0
  2266. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.errors.txt +47 -0
  2267. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.flows.effectFnOpportunity_inferredLayerThis.mermaid +59 -0
  2268. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.flows.txt +1 -0
  2269. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.layers.txt +1 -0
  2270. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.pipings.txt +117 -0
  2271. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredLayerThis.quickfixes.txt +279 -0
  2272. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.errors.txt +41 -0
  2273. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.flows.effectFnOpportunity_inferredOf.mermaid +17 -0
  2274. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.flows.txt +1 -0
  2275. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.layers.txt +1 -0
  2276. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.pipings.txt +57 -0
  2277. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredOf.quickfixes.txt +63 -0
  2278. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.errors.txt +40 -0
  2279. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.flows.effectFnOpportunity_inferredServiceMake.mermaid +17 -0
  2280. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.flows.txt +1 -0
  2281. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.layers.txt +1 -0
  2282. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.pipings.txt +43 -0
  2283. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_inferredServiceMake.quickfixes.txt +58 -0
  2284. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.errors.txt +43 -0
  2285. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.flows.effectFnOpportunity_invalid.mermaid +15 -0
  2286. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.flows.txt +1 -0
  2287. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.layers.txt +1 -0
  2288. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.pipings.txt +1 -0
  2289. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_invalid.quickfixes.txt +5 -0
  2290. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.errors.txt +64 -0
  2291. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.flows.effectFnOpportunity_multipleReturns.mermaid +61 -0
  2292. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.flows.txt +1 -0
  2293. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.layers.txt +1 -0
  2294. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.pipings.txt +127 -0
  2295. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_multipleReturns.quickfixes.txt +132 -0
  2296. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.errors.txt +69 -0
  2297. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.flows.effectFnOpportunity_noPipeWithSpan.mermaid +65 -0
  2298. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.flows.txt +1 -0
  2299. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.layers.txt +1 -0
  2300. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.pipings.txt +109 -0
  2301. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_noPipeWithSpan.quickfixes.txt +413 -0
  2302. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.errors.txt +49 -0
  2303. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.flows.effectFnOpportunity_overloadsNever.mermaid +26 -0
  2304. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.flows.txt +1 -0
  2305. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.layers.txt +1 -0
  2306. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.pipings.txt +43 -0
  2307. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsNever.quickfixes.txt +56 -0
  2308. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.errors.txt +93 -0
  2309. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.flows.effectFnOpportunity_overloadsOk.mermaid +43 -0
  2310. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.flows.txt +1 -0
  2311. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.layers.txt +1 -0
  2312. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.pipings.txt +85 -0
  2313. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_overloadsOk.quickfixes.txt +761 -0
  2314. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.errors.txt +54 -0
  2315. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.flows.effectFnOpportunity_params.mermaid +40 -0
  2316. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.flows.txt +1 -0
  2317. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.layers.txt +1 -0
  2318. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.pipings.txt +85 -0
  2319. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_params.quickfixes.txt +294 -0
  2320. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.errors.txt +54 -0
  2321. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.flows.effectFnOpportunity_paramsInPipe.mermaid +91 -0
  2322. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.flows.txt +1 -0
  2323. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.layers.txt +1 -0
  2324. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.pipings.txt +143 -0
  2325. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_paramsInPipe.quickfixes.txt +5 -0
  2326. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.errors.txt +70 -0
  2327. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.flows.effectFnOpportunity_pipeWithSpan.mermaid +75 -0
  2328. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.flows.txt +1 -0
  2329. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.layers.txt +1 -0
  2330. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.pipings.txt +109 -0
  2331. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_pipeWithSpan.quickfixes.txt +425 -0
  2332. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.errors.txt +41 -0
  2333. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.flows.effectFnOpportunity_plainFew.mermaid +46 -0
  2334. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.flows.txt +1 -0
  2335. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.layers.txt +1 -0
  2336. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.pipings.txt +85 -0
  2337. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainFew.quickfixes.txt +5 -0
  2338. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.errors.txt +69 -0
  2339. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.flows.effectFnOpportunity_plainMany.mermaid +39 -0
  2340. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.flows.txt +1 -0
  2341. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.layers.txt +1 -0
  2342. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.pipings.txt +71 -0
  2343. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_plainMany.quickfixes.txt +309 -0
  2344. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.errors.txt +15 -0
  2345. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.flows.effectFnOpportunity_preview.mermaid +13 -0
  2346. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.flows.txt +1 -0
  2347. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.layers.txt +1 -0
  2348. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.pipings.txt +29 -0
  2349. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_preview.quickfixes.txt +5 -0
  2350. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.errors.txt +61 -0
  2351. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.flows.effectFnOpportunity_returnType.mermaid +40 -0
  2352. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.flows.txt +1 -0
  2353. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.layers.txt +1 -0
  2354. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.pipings.txt +85 -0
  2355. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_returnType.quickfixes.txt +123 -0
  2356. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.errors.txt +110 -0
  2357. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.flows.effectFnOpportunity_typeParams.mermaid +64 -0
  2358. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.flows.txt +1 -0
  2359. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.layers.txt +1 -0
  2360. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.pipings.txt +127 -0
  2361. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnOpportunity_typeParams.quickfixes.txt +1248 -0
  2362. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.errors.txt +26 -0
  2363. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.flows.effectFnRegular.mermaid +60 -0
  2364. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.flows.txt +1 -0
  2365. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.layers.txt +1 -0
  2366. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.pipings.txt +89 -0
  2367. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnRegular.quickfixes.txt +5 -0
  2368. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.errors.txt +107 -0
  2369. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.flows.effectFnUntracedEagerImplicitAny.mermaid +109 -0
  2370. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.flows.txt +1 -0
  2371. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.layers.txt +1 -0
  2372. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.pipings.txt +213 -0
  2373. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedEagerImplicitAny.quickfixes.txt +42 -0
  2374. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.errors.txt +107 -0
  2375. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.flows.effectFnUntracedImplicitAny.mermaid +109 -0
  2376. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.flows.txt +1 -0
  2377. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.layers.txt +1 -0
  2378. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.pipings.txt +213 -0
  2379. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectFnUntracedImplicitAny.quickfixes.txt +42 -0
  2380. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectGenToFn.refactors.txt +555 -0
  2381. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectGenToFn_classMethod.refactors.txt +42 -0
  2382. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectGenToFn_mixedPipes.refactors.txt +76 -0
  2383. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectGenToFn_withPipes.refactors.txt +73 -0
  2384. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.errors.txt +47 -0
  2385. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.flows.effectInFailure.mermaid +71 -0
  2386. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.flows.txt +1 -0
  2387. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.layers.txt +1 -0
  2388. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.pipings.txt +159 -0
  2389. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure.quickfixes.txt +43 -0
  2390. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.errors.txt +24 -0
  2391. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.flows.effectInFailure_preview.mermaid +18 -0
  2392. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.flows.txt +1 -0
  2393. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.layers.txt +1 -0
  2394. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.pipings.txt +43 -0
  2395. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInFailure_preview.quickfixes.txt +23 -0
  2396. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.errors.txt +28 -0
  2397. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.flows.effectInVoidSuccess.mermaid +40 -0
  2398. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.flows.txt +1 -0
  2399. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.layers.txt +1 -0
  2400. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.pipings.txt +69 -0
  2401. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess.quickfixes.txt +23 -0
  2402. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.errors.txt +17 -0
  2403. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.flows.effectInVoidSuccess_preview.mermaid +10 -0
  2404. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.flows.txt +1 -0
  2405. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.layers.txt +1 -0
  2406. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.pipings.txt +19 -0
  2407. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectInVoidSuccess_preview.quickfixes.txt +13 -0
  2408. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.errors.txt +54 -0
  2409. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.flows.effectMapFlatten.mermaid +127 -0
  2410. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.flows.txt +1 -0
  2411. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.layers.txt +1 -0
  2412. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.pipings.txt +217 -0
  2413. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten.quickfixes.txt +33 -0
  2414. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.errors.txt +18 -0
  2415. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.flows.effectMapFlatten_preview.mermaid +20 -0
  2416. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.flows.txt +1 -0
  2417. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.layers.txt +1 -0
  2418. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.pipings.txt +37 -0
  2419. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapFlatten_preview.quickfixes.txt +13 -0
  2420. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.errors.txt +76 -0
  2421. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.flows.effectMapVoid.mermaid +123 -0
  2422. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.flows.txt +1 -0
  2423. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.layers.txt +1 -0
  2424. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.pipings.txt +181 -0
  2425. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid.quickfixes.txt +405 -0
  2426. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.errors.txt +17 -0
  2427. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.flows.effectMapVoid_preview.mermaid +14 -0
  2428. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.flows.txt +1 -0
  2429. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.layers.txt +1 -0
  2430. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.pipings.txt +19 -0
  2431. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectMapVoid_preview.quickfixes.txt +26 -0
  2432. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.errors.txt +53 -0
  2433. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.flows.effectSucceedWithVoid.mermaid +47 -0
  2434. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.flows.txt +1 -0
  2435. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.layers.txt +1 -0
  2436. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.pipings.txt +127 -0
  2437. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid.quickfixes.txt +238 -0
  2438. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.errors.txt +15 -0
  2439. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.flows.effectSucceedWithVoid_preview.mermaid +6 -0
  2440. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.flows.txt +1 -0
  2441. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.layers.txt +1 -0
  2442. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.pipings.txt +15 -0
  2443. package/repos/tsgo/testdata/baselines/reference/effect-v4/effectSucceedWithVoid_preview.quickfixes.txt +24 -0
  2444. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.errors.txt +154 -0
  2445. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.flows.effect_fn_opportunity_panic.mermaid +207 -0
  2446. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.flows.txt +1 -0
  2447. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.layers.txt +1 -0
  2448. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.pipings.txt +429 -0
  2449. package/repos/tsgo/testdata/baselines/reference/effect-v4/effect_fn_opportunity_panic.quickfixes.txt +267 -0
  2450. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.errors.txt +21 -0
  2451. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.flows.emptyArgs.mermaid +11 -0
  2452. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.flows.txt +1 -0
  2453. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.layers.txt +1 -0
  2454. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.pipings.txt +29 -0
  2455. package/repos/tsgo/testdata/baselines/reference/effect-v4/emptyArgs.quickfixes.txt +51 -0
  2456. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.errors.txt +32 -0
  2457. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.flows.extendsNativeError.mermaid +7 -0
  2458. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.flows.txt +1 -0
  2459. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.layers.txt +1 -0
  2460. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.pipings.txt +1 -0
  2461. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError.quickfixes.txt +33 -0
  2462. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.errors.txt +14 -0
  2463. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.flows.extendsNativeError_preview.mermaid +2 -0
  2464. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.flows.txt +1 -0
  2465. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.layers.txt +1 -0
  2466. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.pipings.txt +1 -0
  2467. package/repos/tsgo/testdata/baselines/reference/effect-v4/extendsNativeError_preview.quickfixes.txt +13 -0
  2468. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.errors.txt +45 -0
  2469. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.flows.floatingEffect.mermaid +24 -0
  2470. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.flows.txt +1 -0
  2471. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.layers.txt +1 -0
  2472. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.pipings.txt +43 -0
  2473. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect.quickfixes.txt +52 -0
  2474. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.errors.txt +14 -0
  2475. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.flows.floatingEffectGen.mermaid +8 -0
  2476. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.flows.txt +1 -0
  2477. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.layers.txt +1 -0
  2478. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.pipings.txt +29 -0
  2479. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectGen.quickfixes.txt +13 -0
  2480. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.errors.txt +50 -0
  2481. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.flows.floatingEffectSuppressed.mermaid +46 -0
  2482. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.flows.txt +1 -0
  2483. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.layers.txt +1 -0
  2484. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.pipings.txt +127 -0
  2485. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffectSuppressed.quickfixes.txt +53 -0
  2486. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.errors.txt +26 -0
  2487. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.flows.floatingEffect_disabledWildcard.mermaid +21 -0
  2488. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.flows.txt +1 -0
  2489. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.layers.txt +1 -0
  2490. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.pipings.txt +57 -0
  2491. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_disabledWildcard.quickfixes.txt +23 -0
  2492. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.errors.txt +15 -0
  2493. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.flows.floatingEffect_preview.mermaid +6 -0
  2494. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.flows.txt +1 -0
  2495. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.layers.txt +1 -0
  2496. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.pipings.txt +15 -0
  2497. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_preview.quickfixes.txt +13 -0
  2498. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.errors.txt +15 -0
  2499. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.flows.floatingEffect_stream.mermaid +8 -0
  2500. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.flows.txt +1 -0
  2501. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.layers.txt +1 -0
  2502. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.pipings.txt +29 -0
  2503. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_stream.quickfixes.txt +13 -0
  2504. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.errors.txt +21 -0
  2505. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.flows.floatingEffect_subtypes.mermaid +28 -0
  2506. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.flows.txt +1 -0
  2507. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.layers.txt +1 -0
  2508. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.pipings.txt +75 -0
  2509. package/repos/tsgo/testdata/baselines/reference/effect-v4/floatingEffect_subtypes.quickfixes.txt +5 -0
  2510. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.errors.txt +24 -0
  2511. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.flows.functionCalls.mermaid +50 -0
  2512. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.flows.txt +1 -0
  2513. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.layers.txt +1 -0
  2514. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.pipings.txt +73 -0
  2515. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionCalls.quickfixes.txt +5 -0
  2516. package/repos/tsgo/testdata/baselines/reference/effect-v4/functionToArrow.refactors.txt +278 -0
  2517. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.errors.txt +55 -0
  2518. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.flows.globalConsole.mermaid +58 -0
  2519. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.flows.txt +1 -0
  2520. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.layers.txt +1 -0
  2521. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.pipings.txt +141 -0
  2522. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole.quickfixes.txt +49 -0
  2523. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.errors.txt +70 -0
  2524. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.flows.globalConsoleInEffect.mermaid +63 -0
  2525. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.flows.txt +1 -0
  2526. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.layers.txt +1 -0
  2527. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.pipings.txt +225 -0
  2528. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect.quickfixes.txt +56 -0
  2529. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.errors.txt +17 -0
  2530. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.flows.globalConsoleInEffect_preview.mermaid +8 -0
  2531. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.flows.txt +1 -0
  2532. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.layers.txt +1 -0
  2533. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.pipings.txt +29 -0
  2534. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_preview.quickfixes.txt +13 -0
  2535. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.errors.txt +39 -0
  2536. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.flows.globalConsoleInEffect_thunks.mermaid +75 -0
  2537. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.flows.txt +1 -0
  2538. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.layers.txt +1 -0
  2539. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.pipings.txt +155 -0
  2540. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsoleInEffect_thunks.quickfixes.txt +43 -0
  2541. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.errors.txt +14 -0
  2542. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.flows.globalConsole_preview.mermaid +6 -0
  2543. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.flows.txt +1 -0
  2544. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.layers.txt +1 -0
  2545. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.pipings.txt +15 -0
  2546. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalConsole_preview.quickfixes.txt +13 -0
  2547. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.errors.txt +50 -0
  2548. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.flows.globalDate.mermaid +26 -0
  2549. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.flows.txt +1 -0
  2550. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.layers.txt +1 -0
  2551. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.pipings.txt +43 -0
  2552. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate.quickfixes.txt +52 -0
  2553. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.errors.txt +60 -0
  2554. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.flows.globalDateInEffect.mermaid +32 -0
  2555. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.flows.txt +1 -0
  2556. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.layers.txt +1 -0
  2557. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.pipings.txt +71 -0
  2558. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect.quickfixes.txt +49 -0
  2559. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.errors.txt +18 -0
  2560. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.flows.globalDateInEffect_preview.mermaid +5 -0
  2561. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.flows.txt +1 -0
  2562. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.layers.txt +1 -0
  2563. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.pipings.txt +15 -0
  2564. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_preview.quickfixes.txt +13 -0
  2565. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.errors.txt +39 -0
  2566. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.flows.globalDateInEffect_thunks.mermaid +55 -0
  2567. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.flows.txt +1 -0
  2568. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.layers.txt +1 -0
  2569. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.pipings.txt +85 -0
  2570. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDateInEffect_thunks.quickfixes.txt +43 -0
  2571. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.errors.txt +14 -0
  2572. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.flows.globalDate_preview.mermaid +2 -0
  2573. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.flows.txt +1 -0
  2574. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.layers.txt +1 -0
  2575. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.pipings.txt +1 -0
  2576. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalDate_preview.quickfixes.txt +13 -0
  2577. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.errors.txt +29 -0
  2578. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.flows.globalErrorInEffectCatch.mermaid +32 -0
  2579. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.flows.txt +1 -0
  2580. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.layers.txt +1 -0
  2581. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.pipings.txt +71 -0
  2582. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch.quickfixes.txt +26 -0
  2583. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.errors.txt +18 -0
  2584. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.flows.globalErrorInEffectCatch_preview.mermaid +20 -0
  2585. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.flows.txt +1 -0
  2586. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.layers.txt +1 -0
  2587. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.pipings.txt +29 -0
  2588. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectCatch_preview.quickfixes.txt +13 -0
  2589. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.errors.txt +86 -0
  2590. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.flows.globalErrorInEffectFailure.mermaid +85 -0
  2591. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.flows.txt +1 -0
  2592. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.layers.txt +1 -0
  2593. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.pipings.txt +191 -0
  2594. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure.quickfixes.txt +251 -0
  2595. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.errors.txt +15 -0
  2596. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.flows.globalErrorInEffectFailure_preview.mermaid +6 -0
  2597. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.flows.txt +1 -0
  2598. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.layers.txt +1 -0
  2599. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.pipings.txt +15 -0
  2600. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalErrorInEffectFailure_preview.quickfixes.txt +13 -0
  2601. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.errors.txt +42 -0
  2602. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.flows.globalFetch.mermaid +16 -0
  2603. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.flows.txt +1 -0
  2604. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.layers.txt +1 -0
  2605. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.pipings.txt +99 -0
  2606. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch.quickfixes.txt +52 -0
  2607. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.errors.txt +37 -0
  2608. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.flows.globalFetchInEffect.mermaid +17 -0
  2609. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.flows.txt +1 -0
  2610. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.layers.txt +1 -0
  2611. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.pipings.txt +113 -0
  2612. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect.quickfixes.txt +29 -0
  2613. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.errors.txt +17 -0
  2614. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.flows.globalFetchInEffect_preview.mermaid +13 -0
  2615. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.flows.txt +1 -0
  2616. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.layers.txt +1 -0
  2617. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.pipings.txt +43 -0
  2618. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_preview.quickfixes.txt +13 -0
  2619. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.errors.txt +42 -0
  2620. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.flows.globalFetchInEffect_thunks.mermaid +55 -0
  2621. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.flows.txt +1 -0
  2622. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.layers.txt +1 -0
  2623. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.pipings.txt +155 -0
  2624. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetchInEffect_thunks.quickfixes.txt +53 -0
  2625. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.errors.txt +14 -0
  2626. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.flows.globalFetch_preview.mermaid +2 -0
  2627. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.flows.txt +1 -0
  2628. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.layers.txt +1 -0
  2629. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.pipings.txt +15 -0
  2630. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalFetch_preview.quickfixes.txt +13 -0
  2631. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.errors.txt +48 -0
  2632. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.flows.globalRandom.mermaid +27 -0
  2633. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.flows.txt +1 -0
  2634. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.layers.txt +1 -0
  2635. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.pipings.txt +29 -0
  2636. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom.quickfixes.txt +55 -0
  2637. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.errors.txt +40 -0
  2638. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.flows.globalRandomInEffect.mermaid +21 -0
  2639. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.flows.txt +1 -0
  2640. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.layers.txt +1 -0
  2641. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.pipings.txt +43 -0
  2642. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect.quickfixes.txt +29 -0
  2643. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.errors.txt +18 -0
  2644. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.flows.globalRandomInEffect_preview.mermaid +5 -0
  2645. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.flows.txt +1 -0
  2646. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.layers.txt +1 -0
  2647. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.pipings.txt +15 -0
  2648. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_preview.quickfixes.txt +13 -0
  2649. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.errors.txt +39 -0
  2650. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.flows.globalRandomInEffect_thunks.mermaid +55 -0
  2651. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.flows.txt +1 -0
  2652. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.layers.txt +1 -0
  2653. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.pipings.txt +85 -0
  2654. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandomInEffect_thunks.quickfixes.txt +43 -0
  2655. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.errors.txt +14 -0
  2656. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.flows.globalRandom_preview.mermaid +2 -0
  2657. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.flows.txt +1 -0
  2658. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.layers.txt +1 -0
  2659. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.pipings.txt +1 -0
  2660. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalRandom_preview.quickfixes.txt +13 -0
  2661. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.errors.txt +48 -0
  2662. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.flows.globalTimers.mermaid +37 -0
  2663. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.flows.txt +1 -0
  2664. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.layers.txt +1 -0
  2665. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.pipings.txt +29 -0
  2666. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers.quickfixes.txt +55 -0
  2667. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.errors.txt +48 -0
  2668. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.flows.globalTimersInEffect.mermaid +26 -0
  2669. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.flows.txt +1 -0
  2670. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.layers.txt +1 -0
  2671. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.pipings.txt +57 -0
  2672. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect.quickfixes.txt +36 -0
  2673. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.errors.txt +17 -0
  2674. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.flows.globalTimersInEffect_preview.mermaid +4 -0
  2675. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.flows.txt +1 -0
  2676. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.layers.txt +1 -0
  2677. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.pipings.txt +15 -0
  2678. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_preview.quickfixes.txt +13 -0
  2679. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.errors.txt +39 -0
  2680. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.flows.globalTimersInEffect_thunks.mermaid +65 -0
  2681. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.flows.txt +1 -0
  2682. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.layers.txt +1 -0
  2683. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.pipings.txt +85 -0
  2684. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimersInEffect_thunks.quickfixes.txt +43 -0
  2685. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.errors.txt +14 -0
  2686. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.flows.globalTimers_preview.mermaid +4 -0
  2687. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.flows.txt +1 -0
  2688. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.layers.txt +1 -0
  2689. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.pipings.txt +1 -0
  2690. package/repos/tsgo/testdata/baselines/reference/effect-v4/globalTimers_preview.quickfixes.txt +13 -0
  2691. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.errors.txt +47 -0
  2692. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.flows.instanceOfSchema.mermaid +42 -0
  2693. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.flows.txt +1 -0
  2694. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.layers.txt +1 -0
  2695. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.pipings.txt +85 -0
  2696. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema.quickfixes.txt +103 -0
  2697. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.errors.txt +17 -0
  2698. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.flows.instanceOfSchema_preview.mermaid +9 -0
  2699. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.flows.txt +1 -0
  2700. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.layers.txt +1 -0
  2701. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.pipings.txt +15 -0
  2702. package/repos/tsgo/testdata/baselines/reference/effect-v4/instanceOfSchema_preview.quickfixes.txt +26 -0
  2703. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.errors.txt +16 -0
  2704. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.flows.interfaceExtendsIssue.mermaid +2 -0
  2705. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.flows.txt +1 -0
  2706. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.layers.txt +1 -0
  2707. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.pipings.txt +1 -0
  2708. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssue.quickfixes.txt +5 -0
  2709. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.errors.txt +23 -0
  2710. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.flows.interfaceExtendsIssueNoPlugin.mermaid +2 -0
  2711. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.flows.txt +1 -0
  2712. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.layers.txt +1 -0
  2713. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.pipings.txt +1 -0
  2714. package/repos/tsgo/testdata/baselines/reference/effect-v4/interfaceExtendsIssueNoPlugin.quickfixes.txt +5 -0
  2715. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.errors.txt +33 -0
  2716. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.flows.issue179_nestedEffectGenThis.mermaid +17 -0
  2717. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.flows.txt +1 -0
  2718. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.layers.txt +1 -0
  2719. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.pipings.txt +1 -0
  2720. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_nestedEffectGenThis.quickfixes.txt +7 -0
  2721. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.errors.txt +89 -0
  2722. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.flows.issue179_remainingCases.mermaid +126 -0
  2723. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.flows.txt +1 -0
  2724. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.layers.txt +1 -0
  2725. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.pipings.txt +145 -0
  2726. package/repos/tsgo/testdata/baselines/reference/effect-v4/issue179_remainingCases.quickfixes.txt +10 -0
  2727. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.errors.txt +31 -0
  2728. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.flows.test.mermaid +7 -0
  2729. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.flows.txt +1 -0
  2730. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.layers.txt +1 -0
  2731. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.pipings.txt +1 -0
  2732. package/repos/tsgo/testdata/baselines/reference/effect-v4/jsxIntrinsicElements.quickfixes.txt +5 -0
  2733. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.errors.txt +58 -0
  2734. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.flows.layerGraphDocumented.mermaid +93 -0
  2735. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.flows.txt +1 -0
  2736. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.layers.txt +240 -0
  2737. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.pipings.txt +153 -0
  2738. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDocumented.quickfixes.txt +5 -0
  2739. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.errors.txt +66 -0
  2740. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.flows.layerGraphDuplicated.mermaid +176 -0
  2741. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.flows.txt +1 -0
  2742. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.layers.txt +480 -0
  2743. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.pipings.txt +261 -0
  2744. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphDuplicated.quickfixes.txt +5 -0
  2745. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.errors.txt +22 -0
  2746. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.flows.layerGraphEffect.mermaid +37 -0
  2747. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.flows.txt +1 -0
  2748. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.layers.txt +64 -0
  2749. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.pipings.txt +65 -0
  2750. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphEffect.quickfixes.txt +5 -0
  2751. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.errors.txt +59 -0
  2752. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.flows.followSymbols.mermaid +21 -0
  2753. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.flows.simple.mermaid +95 -0
  2754. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.flows.txt +2 -0
  2755. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.layers.txt +920 -0
  2756. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.pipings.txt +196 -0
  2757. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbols.quickfixes.txt +5 -0
  2758. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.errors.txt +54 -0
  2759. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.flows.base.mermaid +53 -0
  2760. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.flows.deep.mermaid +3 -0
  2761. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.flows.middle.mermaid +3 -0
  2762. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.flows.txt +3 -0
  2763. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.layers.txt +628 -0
  2764. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.pipings.txt +101 -0
  2765. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsDeep.quickfixes.txt +5 -0
  2766. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.errors.txt +52 -0
  2767. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.flows.followSymbols.mermaid +21 -0
  2768. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.flows.simple.mermaid +81 -0
  2769. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.flows.txt +2 -0
  2770. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.layers.txt +396 -0
  2771. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.pipings.txt +178 -0
  2772. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphFollowSymbolsOff.quickfixes.txt +5 -0
  2773. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.errors.txt +70 -0
  2774. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.flows.layerGraphMultiple.mermaid +165 -0
  2775. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.flows.txt +1 -0
  2776. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.layers.txt +377 -0
  2777. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.pipings.txt +243 -0
  2778. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphMultiple.quickfixes.txt +5 -0
  2779. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.errors.txt +47 -0
  2780. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.flows.layerGraphSimple.mermaid +95 -0
  2781. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.flows.txt +1 -0
  2782. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.layers.txt +359 -0
  2783. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.pipings.txt +163 -0
  2784. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSimple.quickfixes.txt +5 -0
  2785. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.errors.txt +30 -0
  2786. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.flows.layerGraphSpecialChars.mermaid +16 -0
  2787. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.flows.txt +1 -0
  2788. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.layers.txt +30 -0
  2789. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.pipings.txt +29 -0
  2790. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerGraphSpecialChars.quickfixes.txt +5 -0
  2791. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMagic_build.refactors.txt +1314 -0
  2792. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMagic_prepare.refactors.txt +467 -0
  2793. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMagic_prepareReuse.refactors.txt +330 -0
  2794. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.errors.txt +66 -0
  2795. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.flows.layerMergeAllWithDependencies.mermaid +78 -0
  2796. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.flows.txt +1 -0
  2797. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.layers.txt +349 -0
  2798. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.pipings.txt +131 -0
  2799. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies.quickfixes.txt +251 -0
  2800. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.errors.txt +33 -0
  2801. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.flows.layerMergeAllWithDependenciesNonPropertyAccess.mermaid +47 -0
  2802. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.flows.txt +1 -0
  2803. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.layers.txt +90 -0
  2804. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.pipings.txt +85 -0
  2805. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.quickfixes.txt +5 -0
  2806. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.errors.txt +21 -0
  2807. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.flows.layerMergeAllWithDependencies_preview.mermaid +32 -0
  2808. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.flows.txt +1 -0
  2809. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.layers.txt +73 -0
  2810. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.pipings.txt +57 -0
  2811. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerMergeAllWithDependencies_preview.quickfixes.txt +30 -0
  2812. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.errors.txt +60 -0
  2813. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.flows.layerServiceTypes.mermaid +99 -0
  2814. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.flows.txt +1 -0
  2815. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.layers.txt +1 -0
  2816. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.pipings.txt +209 -0
  2817. package/repos/tsgo/testdata/baselines/reference/effect-v4/layerServiceTypes.quickfixes.txt +16 -0
  2818. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.errors.txt +139 -0
  2819. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.flows.lazyEffect.mermaid +112 -0
  2820. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.flows.txt +1 -0
  2821. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.layers.txt +1 -0
  2822. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.pipings.txt +155 -0
  2823. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect.quickfixes.txt +103 -0
  2824. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.errors.txt +17 -0
  2825. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.flows.lazyEffect_preview.mermaid +1 -0
  2826. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.flows.txt +1 -0
  2827. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.layers.txt +1 -0
  2828. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.pipings.txt +1 -0
  2829. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyEffect_preview.quickfixes.txt +13 -0
  2830. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.errors.txt +33 -0
  2831. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.flows.lazyPromiseInEffectSync.mermaid +36 -0
  2832. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.flows.txt +1 -0
  2833. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.layers.txt +1 -0
  2834. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.pipings.txt +99 -0
  2835. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync.quickfixes.txt +23 -0
  2836. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.errors.txt +15 -0
  2837. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.flows.lazyPromiseInEffectSync_preview.mermaid +8 -0
  2838. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.flows.txt +1 -0
  2839. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.layers.txt +1 -0
  2840. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.pipings.txt +29 -0
  2841. package/repos/tsgo/testdata/baselines/reference/effect-v4/lazyPromiseInEffectSync_preview.quickfixes.txt +13 -0
  2842. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.errors.txt +67 -0
  2843. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.flows.leakingRequirements.mermaid +4 -0
  2844. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.flows.txt +1 -0
  2845. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.layers.txt +1 -0
  2846. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.pipings.txt +57 -0
  2847. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements.quickfixes.txt +45 -0
  2848. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.errors.txt +72 -0
  2849. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.flows.leakingRequirements_allowJsdoc.mermaid +7 -0
  2850. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.flows.txt +1 -0
  2851. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.layers.txt +1 -0
  2852. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.pipings.txt +85 -0
  2853. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_allowJsdoc.quickfixes.txt +21 -0
  2854. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.errors.txt +39 -0
  2855. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.flows.leakingRequirements_genericTag.mermaid +3 -0
  2856. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.flows.txt +1 -0
  2857. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.layers.txt +1 -0
  2858. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.pipings.txt +29 -0
  2859. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_genericTag.quickfixes.txt +21 -0
  2860. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.errors.txt +19 -0
  2861. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.flows.leakingRequirements_heuristic.mermaid +3 -0
  2862. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.flows.txt +1 -0
  2863. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.layers.txt +1 -0
  2864. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.pipings.txt +29 -0
  2865. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_heuristic.quickfixes.txt +5 -0
  2866. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.errors.txt +24 -0
  2867. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.flows.leakingRequirements_leakableJsDoc.mermaid +3 -0
  2868. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.flows.txt +1 -0
  2869. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.layers.txt +1 -0
  2870. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.pipings.txt +29 -0
  2871. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_leakableJsDoc.quickfixes.txt +5 -0
  2872. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.errors.txt +21 -0
  2873. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.flows.leakingRequirements_noScope.mermaid +3 -0
  2874. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.flows.txt +1 -0
  2875. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.layers.txt +1 -0
  2876. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.pipings.txt +29 -0
  2877. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_noScope.quickfixes.txt +5 -0
  2878. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.errors.txt +39 -0
  2879. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.flows.leakingRequirements_preview.mermaid +3 -0
  2880. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.flows.txt +1 -0
  2881. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.layers.txt +1 -0
  2882. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.pipings.txt +29 -0
  2883. package/repos/tsgo/testdata/baselines/reference/effect-v4/leakingRequirements_preview.quickfixes.txt +21 -0
  2884. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque.refactors.txt +85 -0
  2885. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaqueWithNs_shortImport.refactors.txt +85 -0
  2886. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque_brand.refactors.txt +70 -0
  2887. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque_shortImport.refactors.txt +85 -0
  2888. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque_shortImportAlias.refactors.txt +85 -0
  2889. package/repos/tsgo/testdata/baselines/reference/effect-v4/makeSchemaOpaque_union.refactors.txt +85 -0
  2890. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.errors.txt +70 -0
  2891. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.flows.missedPipeableOpportunity.mermaid +182 -0
  2892. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.flows.txt +1 -0
  2893. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.layers.txt +1 -0
  2894. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.pipings.txt +303 -0
  2895. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity.quickfixes.txt +258 -0
  2896. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.errors.txt +44 -0
  2897. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.flows.missedPipeableOpportunity_error.mermaid +60 -0
  2898. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.flows.txt +1 -0
  2899. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.layers.txt +1 -0
  2900. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.pipings.txt +143 -0
  2901. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_error.quickfixes.txt +40 -0
  2902. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.errors.txt +17 -0
  2903. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.flows.missedPipeableOpportunity_preview.mermaid +15 -0
  2904. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.flows.txt +1 -0
  2905. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.layers.txt +1 -0
  2906. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.pipings.txt +37 -0
  2907. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_preview.quickfixes.txt +26 -0
  2908. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.errors.txt +54 -0
  2909. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.flows.missedPipeableOpportunity_safer.mermaid +44 -0
  2910. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.flows.txt +1 -0
  2911. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.layers.txt +1 -0
  2912. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.pipings.txt +87 -0
  2913. package/repos/tsgo/testdata/baselines/reference/effect-v4/missedPipeableOpportunity_safer.quickfixes.txt +73 -0
  2914. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.errors.txt +43 -0
  2915. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.flows.missingEffectContext.mermaid +5 -0
  2916. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.flows.txt +1 -0
  2917. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.layers.txt +1 -0
  2918. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.pipings.txt +1 -0
  2919. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext.quickfixes.txt +35 -0
  2920. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.errors.txt +18 -0
  2921. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.flows.missingEffectContext_preview.mermaid +11 -0
  2922. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.flows.txt +1 -0
  2923. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.layers.txt +1 -0
  2924. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.pipings.txt +29 -0
  2925. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_preview.quickfixes.txt +13 -0
  2926. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.errors.txt +58 -0
  2927. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.flows.missingEffectContext_sugg.mermaid +115 -0
  2928. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.flows.txt +1 -0
  2929. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.layers.txt +170 -0
  2930. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.pipings.txt +203 -0
  2931. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectContext_sugg.quickfixes.txt +23 -0
  2932. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.errors.txt +38 -0
  2933. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.flows.missingEffectError.mermaid +15 -0
  2934. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.flows.txt +1 -0
  2935. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.layers.txt +1 -0
  2936. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.pipings.txt +29 -0
  2937. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError.quickfixes.txt +110 -0
  2938. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.errors.txt +20 -0
  2939. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.flows.missingEffectError_preview.mermaid +9 -0
  2940. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.flows.txt +1 -0
  2941. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.layers.txt +1 -0
  2942. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.pipings.txt +15 -0
  2943. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingEffectError_preview.quickfixes.txt +45 -0
  2944. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.errors.txt +48 -0
  2945. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.flows.missingLayerContext.mermaid +61 -0
  2946. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.flows.txt +1 -0
  2947. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.layers.txt +1 -0
  2948. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.pipings.txt +113 -0
  2949. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext.quickfixes.txt +23 -0
  2950. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.errors.txt +20 -0
  2951. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.flows.missingLayerContext_preview.mermaid +16 -0
  2952. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.flows.txt +1 -0
  2953. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.layers.txt +36 -0
  2954. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.pipings.txt +29 -0
  2955. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingLayerContext_preview.quickfixes.txt +13 -0
  2956. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.errors.txt +54 -0
  2957. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.flows.missingReturnYieldStar.mermaid +71 -0
  2958. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.flows.txt +1 -0
  2959. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.layers.txt +1 -0
  2960. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.pipings.txt +159 -0
  2961. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar.quickfixes.txt +210 -0
  2962. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.errors.txt +47 -0
  2963. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.flows.missingReturnYieldStarFn.mermaid +59 -0
  2964. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.flows.txt +1 -0
  2965. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.layers.txt +1 -0
  2966. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.pipings.txt +155 -0
  2967. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFn.quickfixes.txt +208 -0
  2968. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.errors.txt +30 -0
  2969. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.flows.missingReturnYieldStarFnUntraced.mermaid +29 -0
  2970. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.flows.txt +1 -0
  2971. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.layers.txt +1 -0
  2972. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.pipings.txt +85 -0
  2973. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStarFnUntraced.quickfixes.txt +67 -0
  2974. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.errors.txt +18 -0
  2975. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.flows.missingReturnYieldStar_preview.mermaid +14 -0
  2976. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.flows.txt +1 -0
  2977. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.layers.txt +1 -0
  2978. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.pipings.txt +43 -0
  2979. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYieldStar_preview.quickfixes.txt +27 -0
  2980. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.errors.txt +17 -0
  2981. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.flows.missingReturnYiesStarGenThis.mermaid +9 -0
  2982. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.flows.txt +1 -0
  2983. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.layers.txt +1 -0
  2984. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.pipings.txt +15 -0
  2985. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingReturnYiesStarGenThis.quickfixes.txt +26 -0
  2986. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.errors.txt +95 -0
  2987. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.flows.missingStarInYieldEffectGen.mermaid +53 -0
  2988. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.flows.txt +1 -0
  2989. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.layers.txt +1 -0
  2990. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.pipings.txt +183 -0
  2991. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen.quickfixes.txt +575 -0
  2992. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.errors.txt +19 -0
  2993. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.flows.missingStarInYieldEffectGen_preview.mermaid +11 -0
  2994. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.flows.txt +1 -0
  2995. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.layers.txt +1 -0
  2996. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.pipings.txt +29 -0
  2997. package/repos/tsgo/testdata/baselines/reference/effect-v4/missingStarInYieldEffectGen_preview.quickfixes.txt +27 -0
  2998. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.errors.txt +78 -0
  2999. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.flows.multipleCatchTag.mermaid +240 -0
  3000. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.flows.txt +1 -0
  3001. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.layers.txt +1 -0
  3002. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.pipings.txt +397 -0
  3003. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag.quickfixes.txt +33 -0
  3004. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.errors.txt +25 -0
  3005. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.flows.multipleCatchTag_preview.mermaid +40 -0
  3006. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.flows.txt +1 -0
  3007. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.layers.txt +1 -0
  3008. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.pipings.txt +75 -0
  3009. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_preview.quickfixes.txt +13 -0
  3010. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.errors.txt +50 -0
  3011. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.flows.multipleCatchTag_stream.mermaid +149 -0
  3012. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.flows.txt +1 -0
  3013. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.layers.txt +1 -0
  3014. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.pipings.txt +245 -0
  3015. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleCatchTag_stream.quickfixes.txt +13 -0
  3016. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.errors.txt +57 -0
  3017. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.flows.multipleEffectProvide.mermaid +102 -0
  3018. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.flows.txt +1 -0
  3019. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.layers.txt +1 -0
  3020. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.pipings.txt +155 -0
  3021. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide.quickfixes.txt +214 -0
  3022. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.errors.txt +72 -0
  3023. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.flows.multipleEffectProvide_effectFn.mermaid +117 -0
  3024. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.flows.txt +1 -0
  3025. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.layers.txt +1 -0
  3026. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.pipings.txt +161 -0
  3027. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFn.quickfixes.txt +274 -0
  3028. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.errors.txt +55 -0
  3029. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.flows.multipleEffectProvide_effectFnRegular.mermaid +100 -0
  3030. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.flows.txt +1 -0
  3031. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.layers.txt +1 -0
  3032. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.pipings.txt +143 -0
  3033. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_effectFnRegular.quickfixes.txt +164 -0
  3034. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.errors.txt +21 -0
  3035. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.flows.multipleEffectProvide_preview.mermaid +42 -0
  3036. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.flows.txt +1 -0
  3037. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.layers.txt +1 -0
  3038. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.pipings.txt +75 -0
  3039. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleEffectProvide_preview.quickfixes.txt +30 -0
  3040. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.errors.txt +25 -0
  3041. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.flows.multipleFlows.mermaid +36 -0
  3042. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.flows.txt +1 -0
  3043. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.layers.txt +1 -0
  3044. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.pipings.txt +55 -0
  3045. package/repos/tsgo/testdata/baselines/reference/effect-v4/multipleFlows.quickfixes.txt +5 -0
  3046. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.errors.txt +89 -0
  3047. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.flows.nestedEffectGenYield.mermaid +55 -0
  3048. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.flows.txt +1 -0
  3049. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.layers.txt +1 -0
  3050. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.pipings.txt +201 -0
  3051. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield.quickfixes.txt +286 -0
  3052. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.errors.txt +21 -0
  3053. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.flows.nestedEffectGenYield_preview.mermaid +7 -0
  3054. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.flows.txt +1 -0
  3055. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.layers.txt +1 -0
  3056. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.pipings.txt +29 -0
  3057. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedEffectGenYield_preview.quickfixes.txt +13 -0
  3058. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.errors.txt +52 -0
  3059. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.flows.nestedPipe.mermaid +82 -0
  3060. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.flows.txt +1 -0
  3061. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.layers.txt +1 -0
  3062. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.pipings.txt +113 -0
  3063. package/repos/tsgo/testdata/baselines/reference/effect-v4/nestedPipe.quickfixes.txt +141 -0
  3064. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.errors.txt +44 -0
  3065. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.flows.newPromise.mermaid +49 -0
  3066. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.flows.txt +1 -0
  3067. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.layers.txt +1 -0
  3068. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.pipings.txt +71 -0
  3069. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise.quickfixes.txt +43 -0
  3070. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.errors.txt +14 -0
  3071. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.flows.newPromise_preview.mermaid +10 -0
  3072. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.flows.txt +1 -0
  3073. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.layers.txt +1 -0
  3074. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.pipings.txt +15 -0
  3075. package/repos/tsgo/testdata/baselines/reference/effect-v4/newPromise_preview.quickfixes.txt +13 -0
  3076. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.errors.txt +48 -0
  3077. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.flows.newSchemaClass.mermaid +32 -0
  3078. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.flows.txt +1 -0
  3079. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.layers.txt +1 -0
  3080. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.pipings.txt +85 -0
  3081. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass.quickfixes.txt +147 -0
  3082. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.errors.txt +17 -0
  3083. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.flows.newSchemaClass_preview.mermaid +9 -0
  3084. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.flows.txt +1 -0
  3085. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.layers.txt +1 -0
  3086. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.pipings.txt +15 -0
  3087. package/repos/tsgo/testdata/baselines/reference/effect-v4/newSchemaClass_preview.quickfixes.txt +26 -0
  3088. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.errors.txt +102 -0
  3089. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.flows.nodeBuiltinImport.mermaid +6 -0
  3090. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.flows.txt +1 -0
  3091. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.layers.txt +1 -0
  3092. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.pipings.txt +15 -0
  3093. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport.quickfixes.txt +217 -0
  3094. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.errors.txt +18 -0
  3095. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.flows.nodeBuiltinImport_preview.mermaid +2 -0
  3096. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.flows.txt +1 -0
  3097. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.layers.txt +1 -0
  3098. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.pipings.txt +1 -0
  3099. package/repos/tsgo/testdata/baselines/reference/effect-v4/nodeBuiltinImport_preview.quickfixes.txt +16 -0
  3100. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.errors.txt +223 -0
  3101. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.flows.outdatedApi.mermaid +236 -0
  3102. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.flows.txt +1 -0
  3103. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.layers.txt +1 -0
  3104. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.pipings.txt +557 -0
  3105. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi.quickfixes.txt +352 -0
  3106. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.errors.txt +18 -0
  3107. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.flows.outdatedApi_preview.mermaid +4 -0
  3108. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.flows.txt +1 -0
  3109. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.layers.txt +1 -0
  3110. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.pipings.txt +15 -0
  3111. package/repos/tsgo/testdata/baselines/reference/effect-v4/outdatedApi_preview.quickfixes.txt +13 -0
  3112. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.errors.txt +42 -0
  3113. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.flows.overriddenSchemaConstructor.mermaid +29 -0
  3114. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.flows.txt +1 -0
  3115. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.layers.txt +1 -0
  3116. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.pipings.txt +57 -0
  3117. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor.quickfixes.txt +86 -0
  3118. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.errors.txt +17 -0
  3119. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.flows.overriddenSchemaConstructor_preview.mermaid +9 -0
  3120. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.flows.txt +1 -0
  3121. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.layers.txt +1 -0
  3122. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.pipings.txt +29 -0
  3123. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_preview.quickfixes.txt +25 -0
  3124. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.errors.txt +24 -0
  3125. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.flows.overriddenSchemaConstructor_static.mermaid +9 -0
  3126. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.flows.txt +1 -0
  3127. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.layers.txt +1 -0
  3128. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.pipings.txt +29 -0
  3129. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_static.quickfixes.txt +49 -0
  3130. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.errors.txt +16 -0
  3131. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.flows.overriddenSchemaConstructor_valid.mermaid +9 -0
  3132. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.flows.txt +1 -0
  3133. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.layers.txt +1 -0
  3134. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.pipings.txt +15 -0
  3135. package/repos/tsgo/testdata/baselines/reference/effect-v4/overriddenSchemaConstructor_valid.quickfixes.txt +5 -0
  3136. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.errors.txt +22 -0
  3137. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.flows.parsingGen.mermaid +25 -0
  3138. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.flows.txt +1 -0
  3139. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.layers.txt +1 -0
  3140. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.pipings.txt +57 -0
  3141. package/repos/tsgo/testdata/baselines/reference/effect-v4/parsingGen.quickfixes.txt +14 -0
  3142. package/repos/tsgo/testdata/baselines/reference/effect-v4/pipeableToDatafirst.refactors.txt +366 -0
  3143. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.errors.txt +15 -0
  3144. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.flows.test.mermaid +6 -0
  3145. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.flows.txt +1 -0
  3146. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.layers.txt +1 -0
  3147. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.pipings.txt +15 -0
  3148. package/repos/tsgo/testdata/baselines/reference/effect-v4/pluginDisabled.quickfixes.txt +5 -0
  3149. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.errors.txt +85 -0
  3150. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.flows.preferSchemaOverJson.mermaid +65 -0
  3151. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.flows.txt +1 -0
  3152. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.layers.txt +1 -0
  3153. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.pipings.txt +211 -0
  3154. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson.quickfixes.txt +96 -0
  3155. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.errors.txt +18 -0
  3156. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.flows.preferSchemaOverJson_preview.mermaid +11 -0
  3157. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.flows.txt +1 -0
  3158. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.layers.txt +1 -0
  3159. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.pipings.txt +43 -0
  3160. package/repos/tsgo/testdata/baselines/reference/effect-v4/preferSchemaOverJson_preview.quickfixes.txt +13 -0
  3161. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.errors.txt +36 -0
  3162. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.flows.processEnv.mermaid +17 -0
  3163. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.flows.txt +1 -0
  3164. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.layers.txt +1 -0
  3165. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.pipings.txt +29 -0
  3166. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv.quickfixes.txt +33 -0
  3167. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.errors.txt +38 -0
  3168. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.flows.processEnvInEffect.mermaid +23 -0
  3169. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.flows.txt +1 -0
  3170. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.layers.txt +1 -0
  3171. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.pipings.txt +43 -0
  3172. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect.quickfixes.txt +23 -0
  3173. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.errors.txt +18 -0
  3174. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.flows.processEnvInEffect_preview.mermaid +5 -0
  3175. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.flows.txt +1 -0
  3176. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.layers.txt +1 -0
  3177. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.pipings.txt +15 -0
  3178. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_preview.quickfixes.txt +13 -0
  3179. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.errors.txt +40 -0
  3180. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.flows.processEnvInEffect_thunks.mermaid +55 -0
  3181. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.flows.txt +1 -0
  3182. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.layers.txt +1 -0
  3183. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.pipings.txt +85 -0
  3184. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnvInEffect_thunks.quickfixes.txt +43 -0
  3185. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.errors.txt +15 -0
  3186. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.flows.processEnv_preview.mermaid +2 -0
  3187. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.flows.txt +1 -0
  3188. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.layers.txt +1 -0
  3189. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.pipings.txt +1 -0
  3190. package/repos/tsgo/testdata/baselines/reference/effect-v4/processEnv_preview.quickfixes.txt +10 -0
  3191. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.errors.txt +86 -0
  3192. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.flows.redundantMapError.mermaid +136 -0
  3193. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.flows.txt +1 -0
  3194. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.layers.txt +1 -0
  3195. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.pipings.txt +235 -0
  3196. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError.quickfixes.txt +23 -0
  3197. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.errors.txt +32 -0
  3198. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.flows.redundantMapError_preview.mermaid +26 -0
  3199. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.flows.txt +1 -0
  3200. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.layers.txt +1 -0
  3201. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.pipings.txt +43 -0
  3202. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantMapError_preview.quickfixes.txt +13 -0
  3203. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.errors.txt +80 -0
  3204. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.flows.redundantOrDie.mermaid +92 -0
  3205. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.flows.txt +1 -0
  3206. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.layers.txt +1 -0
  3207. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.pipings.txt +285 -0
  3208. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie.quickfixes.txt +33 -0
  3209. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.errors.txt +24 -0
  3210. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.flows.redundantOrDie_preview.mermaid +13 -0
  3211. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.flows.txt +1 -0
  3212. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.layers.txt +1 -0
  3213. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.pipings.txt +43 -0
  3214. package/repos/tsgo/testdata/baselines/reference/effect-v4/redundantOrDie_preview.quickfixes.txt +13 -0
  3215. package/repos/tsgo/testdata/baselines/reference/effect-v4/removeUnnecessaryEffectGen.refactors.txt +90 -0
  3216. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.errors.txt +15 -0
  3217. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.flows.returnEffectInGen.mermaid +9 -0
  3218. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.flows.txt +1 -0
  3219. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.layers.txt +1 -0
  3220. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.pipings.txt +29 -0
  3221. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen.quickfixes.txt +24 -0
  3222. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.errors.txt +37 -0
  3223. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.flows.returnEffectInGenNoDiagnostics.mermaid +64 -0
  3224. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.flows.txt +1 -0
  3225. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.layers.txt +1 -0
  3226. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.pipings.txt +169 -0
  3227. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGenNoDiagnostics.quickfixes.txt +5 -0
  3228. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.errors.txt +17 -0
  3229. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.flows.returnEffectInGen_preview.mermaid +9 -0
  3230. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.flows.txt +1 -0
  3231. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.layers.txt +1 -0
  3232. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.pipings.txt +29 -0
  3233. package/repos/tsgo/testdata/baselines/reference/effect-v4/returnEffectInGen_preview.quickfixes.txt +26 -0
  3234. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.errors.txt +38 -0
  3235. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.flows.runEffectInsideEffect.mermaid +57 -0
  3236. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.flows.txt +1 -0
  3237. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.layers.txt +1 -0
  3238. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.pipings.txt +131 -0
  3239. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect.quickfixes.txt +56 -0
  3240. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.errors.txt +18 -0
  3241. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.flows.runEffectInsideEffect_preview.mermaid +17 -0
  3242. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.flows.txt +1 -0
  3243. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.layers.txt +1 -0
  3244. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.pipings.txt +33 -0
  3245. package/repos/tsgo/testdata/baselines/reference/effect-v4/runEffectInsideEffect_preview.quickfixes.txt +29 -0
  3246. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.errors.txt +36 -0
  3247. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.flows.schemaMutableKey_ts2322.mermaid +15 -0
  3248. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.flows.txt +1 -0
  3249. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.layers.txt +1 -0
  3250. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.pipings.txt +29 -0
  3251. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322.quickfixes.txt +5 -0
  3252. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.errors.txt +48 -0
  3253. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.flows.schemaMutableKey_ts2322_pluginDisabled.mermaid +15 -0
  3254. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.flows.txt +1 -0
  3255. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.layers.txt +1 -0
  3256. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.pipings.txt +29 -0
  3257. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaMutableKey_ts2322_pluginDisabled.quickfixes.txt +5 -0
  3258. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.errors.txt +50 -0
  3259. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.flows.schemaNumber.mermaid +17 -0
  3260. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.flows.txt +1 -0
  3261. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.layers.txt +1 -0
  3262. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.pipings.txt +43 -0
  3263. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber.quickfixes.txt +187 -0
  3264. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.errors.txt +22 -0
  3265. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.flows.schemaNumber_preview.mermaid +6 -0
  3266. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.flows.txt +1 -0
  3267. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.layers.txt +1 -0
  3268. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.pipings.txt +15 -0
  3269. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaNumber_preview.quickfixes.txt +53 -0
  3270. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.errors.txt +33 -0
  3271. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.flows.schemaStructWithTag.mermaid +18 -0
  3272. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.flows.txt +1 -0
  3273. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.layers.txt +1 -0
  3274. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.pipings.txt +43 -0
  3275. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag.quickfixes.txt +34 -0
  3276. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.errors.txt +21 -0
  3277. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.flows.schemaStructWithTag_preview.mermaid +12 -0
  3278. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.flows.txt +1 -0
  3279. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.layers.txt +1 -0
  3280. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.pipings.txt +29 -0
  3281. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaStructWithTag_preview.quickfixes.txt +24 -0
  3282. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.errors.txt +83 -0
  3283. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.flows.schemaSyncInEffect.mermaid +52 -0
  3284. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.flows.txt +1 -0
  3285. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.layers.txt +1 -0
  3286. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.pipings.txt +225 -0
  3287. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect.quickfixes.txt +56 -0
  3288. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.errors.txt +45 -0
  3289. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.flows.schemaSyncInEffect_thunks.mermaid +60 -0
  3290. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.flows.txt +1 -0
  3291. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.layers.txt +1 -0
  3292. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.pipings.txt +169 -0
  3293. package/repos/tsgo/testdata/baselines/reference/effect-v4/schemaSyncInEffect_thunks.quickfixes.txt +43 -0
  3294. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.errors.txt +30 -0
  3295. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.flows.serviceNotAsClass.mermaid +5 -0
  3296. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.flows.txt +1 -0
  3297. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.layers.txt +1 -0
  3298. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.pipings.txt +43 -0
  3299. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass.quickfixes.txt +78 -0
  3300. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.errors.txt +15 -0
  3301. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.flows.serviceNotAsClass_preview.mermaid +2 -0
  3302. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.flows.txt +1 -0
  3303. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.layers.txt +1 -0
  3304. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.pipings.txt +15 -0
  3305. package/repos/tsgo/testdata/baselines/reference/effect-v4/serviceNotAsClass_preview.quickfixes.txt +26 -0
  3306. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.errors.txt +52 -0
  3307. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.flows.simpleEffect.mermaid +190 -0
  3308. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.flows.txt +1 -0
  3309. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.layers.txt +1 -0
  3310. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.pipings.txt +193 -0
  3311. package/repos/tsgo/testdata/baselines/reference/effect-v4/simpleEffect.quickfixes.txt +53 -0
  3312. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.errors.txt +22 -0
  3313. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.flows.simplePipe.mermaid +51 -0
  3314. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.flows.txt +1 -0
  3315. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.layers.txt +1 -0
  3316. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.pipings.txt +73 -0
  3317. package/repos/tsgo/testdata/baselines/reference/effect-v4/simplePipe.quickfixes.txt +5 -0
  3318. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.errors.txt +81 -0
  3319. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.flows.strictBooleanExpressions.mermaid +19 -0
  3320. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.flows.txt +1 -0
  3321. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.layers.txt +1 -0
  3322. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.pipings.txt +1 -0
  3323. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions.quickfixes.txt +113 -0
  3324. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.errors.txt +18 -0
  3325. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.flows.strictBooleanExpressions_preview.mermaid +2 -0
  3326. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.flows.txt +1 -0
  3327. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.layers.txt +1 -0
  3328. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.pipings.txt +1 -0
  3329. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictBooleanExpressions_preview.quickfixes.txt +23 -0
  3330. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.errors.txt +70 -0
  3331. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.flows.strictEffectProvide.mermaid +101 -0
  3332. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.flows.txt +1 -0
  3333. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.layers.txt +59 -0
  3334. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.pipings.txt +177 -0
  3335. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide.quickfixes.txt +43 -0
  3336. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.errors.txt +18 -0
  3337. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.flows.strictEffectProvide_preview.mermaid +22 -0
  3338. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.flows.txt +1 -0
  3339. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.layers.txt +1 -0
  3340. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.pipings.txt +43 -0
  3341. package/repos/tsgo/testdata/baselines/reference/effect-v4/strictEffectProvide_preview.quickfixes.txt +13 -0
  3342. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema.refactors.txt +264 -0
  3343. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_avoidConflict.refactors.txt +113 -0
  3344. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_externalType.refactors.txt +58 -0
  3345. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_reuse.refactors.txt +108 -0
  3346. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_symbolNames.refactors.txt +125 -0
  3347. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_typeAlias.refactors.txt +82 -0
  3348. package/repos/tsgo/testdata/baselines/reference/effect-v4/structuralTypeToSchema_union.refactors.txt +54 -0
  3349. package/repos/tsgo/testdata/baselines/reference/effect-v4/toggleLazyConst.refactors.txt +132 -0
  3350. package/repos/tsgo/testdata/baselines/reference/effect-v4/togglePipeStyle.refactors.txt +88 -0
  3351. package/repos/tsgo/testdata/baselines/reference/effect-v4/togglePipeStyle_nestedCallback.refactors.txt +108 -0
  3352. package/repos/tsgo/testdata/baselines/reference/effect-v4/toggleReturnTypeAnnotation.refactors.txt +322 -0
  3353. package/repos/tsgo/testdata/baselines/reference/effect-v4/toggleTypeAnnotation.refactors.txt +728 -0
  3354. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.errors.txt +75 -0
  3355. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.flows.tryCatchInEffectGen.mermaid +76 -0
  3356. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.flows.txt +1 -0
  3357. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.layers.txt +1 -0
  3358. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.pipings.txt +197 -0
  3359. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen.quickfixes.txt +33 -0
  3360. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.errors.txt +18 -0
  3361. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.flows.tryCatchInEffectGen_finally.mermaid +17 -0
  3362. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.flows.txt +1 -0
  3363. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.layers.txt +1 -0
  3364. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.pipings.txt +43 -0
  3365. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_finally.quickfixes.txt +5 -0
  3366. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.errors.txt +19 -0
  3367. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.flows.tryCatchInEffectGen_preview.mermaid +14 -0
  3368. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.flows.txt +1 -0
  3369. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.layers.txt +1 -0
  3370. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.pipings.txt +29 -0
  3371. package/repos/tsgo/testdata/baselines/reference/effect-v4/tryCatchInEffectGen_preview.quickfixes.txt +13 -0
  3372. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.errors.txt +43 -0
  3373. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.flows.tsExpectErrorDoesNotSuppressEffectDiagnostics.mermaid +17 -0
  3374. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.flows.txt +1 -0
  3375. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.layers.txt +1 -0
  3376. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.pipings.txt +43 -0
  3377. package/repos/tsgo/testdata/baselines/reference/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.quickfixes.txt +36 -0
  3378. package/repos/tsgo/testdata/baselines/reference/effect-v4/typeToEffectSchema.refactors.txt +315 -0
  3379. package/repos/tsgo/testdata/baselines/reference/effect-v4/typeToEffectSchemaClass.refactors.txt +299 -0
  3380. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.errors.txt +42 -0
  3381. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.flows.txt +1 -0
  3382. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.flows.unknownInEffectCatch.mermaid +54 -0
  3383. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.layers.txt +1 -0
  3384. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.pipings.txt +127 -0
  3385. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch.quickfixes.txt +33 -0
  3386. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.errors.txt +18 -0
  3387. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.flows.txt +1 -0
  3388. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.flows.unknownInEffectCatch_preview.mermaid +14 -0
  3389. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.layers.txt +1 -0
  3390. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.pipings.txt +15 -0
  3391. package/repos/tsgo/testdata/baselines/reference/effect-v4/unknownInEffectCatch_preview.quickfixes.txt +13 -0
  3392. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.errors.txt +41 -0
  3393. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.flows.txt +1 -0
  3394. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.flows.unnecessaryArrowBlock.mermaid +20 -0
  3395. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.layers.txt +1 -0
  3396. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.pipings.txt +1 -0
  3397. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock.quickfixes.txt +102 -0
  3398. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.errors.txt +17 -0
  3399. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.flows.txt +1 -0
  3400. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.flows.unnecessaryArrowBlock_preview.mermaid +5 -0
  3401. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.layers.txt +1 -0
  3402. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.pipings.txt +1 -0
  3403. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryArrowBlock_preview.quickfixes.txt +22 -0
  3404. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.errors.txt +26 -0
  3405. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.flows.txt +1 -0
  3406. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.flows.unnecessaryEffectGen.mermaid +31 -0
  3407. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.layers.txt +1 -0
  3408. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.pipings.txt +85 -0
  3409. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen.quickfixes.txt +31 -0
  3410. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.errors.txt +17 -0
  3411. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.flows.txt +1 -0
  3412. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.flows.unnecessaryEffectGen_ifBlock.mermaid +28 -0
  3413. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.layers.txt +1 -0
  3414. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.pipings.txt +57 -0
  3415. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_ifBlock.quickfixes.txt +5 -0
  3416. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.errors.txt +35 -0
  3417. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.flows.txt +1 -0
  3418. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.flows.unnecessaryEffectGen_noReturn.mermaid +28 -0
  3419. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.layers.txt +1 -0
  3420. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.pipings.txt +99 -0
  3421. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_noReturn.quickfixes.txt +67 -0
  3422. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.errors.txt +19 -0
  3423. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.flows.txt +1 -0
  3424. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.flows.unnecessaryEffectGen_preview.mermaid +11 -0
  3425. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.layers.txt +1 -0
  3426. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.pipings.txt +29 -0
  3427. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryEffectGen_preview.quickfixes.txt +24 -0
  3428. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.errors.txt +40 -0
  3429. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.flows.txt +1 -0
  3430. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.flows.unnecessaryFailYieldableError.mermaid +51 -0
  3431. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.layers.txt +1 -0
  3432. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.pipings.txt +127 -0
  3433. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError.quickfixes.txt +89 -0
  3434. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.errors.txt +19 -0
  3435. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.flows.txt +1 -0
  3436. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.flows.unnecessaryFailYieldableError_preview.mermaid +13 -0
  3437. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.layers.txt +1 -0
  3438. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.pipings.txt +43 -0
  3439. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryFailYieldableError_preview.quickfixes.txt +28 -0
  3440. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.errors.txt +28 -0
  3441. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.flows.txt +1 -0
  3442. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.flows.unnecessaryPipe.mermaid +33 -0
  3443. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.layers.txt +1 -0
  3444. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.pipings.txt +61 -0
  3445. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe.quickfixes.txt +65 -0
  3446. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.errors.txt +30 -0
  3447. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.flows.txt +1 -0
  3448. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.flows.unnecessaryPipeChain.mermaid +98 -0
  3449. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.layers.txt +1 -0
  3450. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.pipings.txt +107 -0
  3451. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain.quickfixes.txt +69 -0
  3452. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.errors.txt +15 -0
  3453. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.flows.txt +1 -0
  3454. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.flows.unnecessaryPipeChain_preview.mermaid +14 -0
  3455. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.layers.txt +1 -0
  3456. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.pipings.txt +23 -0
  3457. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipeChain_preview.quickfixes.txt +24 -0
  3458. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.errors.txt +22 -0
  3459. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.flows.txt +1 -0
  3460. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.flows.unnecessaryPipe_disableMidObject.mermaid +20 -0
  3461. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.layers.txt +1 -0
  3462. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.pipings.txt +43 -0
  3463. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_disableMidObject.quickfixes.txt +53 -0
  3464. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.errors.txt +22 -0
  3465. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.flows.txt +1 -0
  3466. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.flows.unnecessaryPipe_namespace.mermaid +5 -0
  3467. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.layers.txt +1 -0
  3468. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.pipings.txt +25 -0
  3469. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_namespace.quickfixes.txt +28 -0
  3470. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.errors.txt +15 -0
  3471. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.flows.txt +1 -0
  3472. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.flows.unnecessaryPipe_preview.mermaid +2 -0
  3473. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.layers.txt +1 -0
  3474. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.pipings.txt +11 -0
  3475. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryPipe_preview.quickfixes.txt +24 -0
  3476. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.errors.txt +57 -0
  3477. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.flows.schemas.mermaid +23 -0
  3478. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.flows.test.mermaid +13 -0
  3479. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.flows.txt +2 -0
  3480. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.layers.txt +2 -0
  3481. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.pipings.txt +58 -0
  3482. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType.quickfixes.txt +108 -0
  3483. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.errors.txt +20 -0
  3484. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.flows.txt +1 -0
  3485. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.flows.unnecessaryTypeofType_preview.mermaid +9 -0
  3486. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.layers.txt +1 -0
  3487. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.pipings.txt +15 -0
  3488. package/repos/tsgo/testdata/baselines/reference/effect-v4/unnecessaryTypeofType_preview.quickfixes.txt +29 -0
  3489. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.errors.txt +62 -0
  3490. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.flows.txt +1 -0
  3491. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.flows.unsafeEffectTypeAssertion.mermaid +12 -0
  3492. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.layers.txt +88 -0
  3493. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.pipings.txt +1 -0
  3494. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion.quickfixes.txt +283 -0
  3495. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.errors.txt +19 -0
  3496. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.flows.txt +1 -0
  3497. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.flows.unsafeEffectTypeAssertion_preview.mermaid +2 -0
  3498. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.layers.txt +1 -0
  3499. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.pipings.txt +1 -0
  3500. package/repos/tsgo/testdata/baselines/reference/effect-v4/unsafeEffectTypeAssertion_preview.quickfixes.txt +26 -0
  3501. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.errors.txt +21 -0
  3502. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.flows.txt +1 -0
  3503. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.flows.unusedDirective.mermaid +8 -0
  3504. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.layers.txt +1 -0
  3505. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.pipings.txt +29 -0
  3506. package/repos/tsgo/testdata/baselines/reference/effect-v4/unusedDirective.quickfixes.txt +24 -0
  3507. package/repos/tsgo/testdata/baselines/reference/effect-v4/wrapWithEffectGen.refactors.txt +408 -0
  3508. package/repos/tsgo/testdata/baselines/reference/effect-v4/wrapWithEffectGen_nestedCallback.refactors.txt +10 -0
  3509. package/repos/tsgo/testdata/baselines/reference/effect-v4/wrapWithPipe.refactors.txt +28 -0
  3510. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsDisabledPassthrough.baseline +105 -0
  3511. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsFnSuppression.baseline +18 -0
  3512. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsFnUntracedSuppression.baseline +18 -0
  3513. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsGenSuppression.baseline +18 -0
  3514. package/repos/tsgo/testdata/baselines/reference/inlayHints/effectInlayHintsNonEffectNotSuppressed.baseline +18 -0
  3515. package/repos/tsgo/testdata/baselines/reference/metadata.json +2020 -0
  3516. package/repos/tsgo/testdata/baselines/reference/schema.json +2812 -0
  3517. package/repos/tsgo/testdata/tests/cli-test/package.json +7 -0
  3518. package/repos/tsgo/testdata/tests/cli-test/pnpm-lock.yaml +87 -0
  3519. package/repos/tsgo/testdata/tests/effect-v3/anyUnknownInErrorContext.ts +40 -0
  3520. package/repos/tsgo/testdata/tests/effect-v3/asyncFunction.ts +33 -0
  3521. package/repos/tsgo/testdata/tests/effect-v3/asyncFunction_preview.ts +6 -0
  3522. package/repos/tsgo/testdata/tests/effect-v3/catchAllToMapError.ts +66 -0
  3523. package/repos/tsgo/testdata/tests/effect-v3/catchAllToMapError_effectFn.ts +26 -0
  3524. package/repos/tsgo/testdata/tests/effect-v3/catchAllToMapError_effectFnRegular.ts +25 -0
  3525. package/repos/tsgo/testdata/tests/effect-v3/catchToOrElseSucceed.ts +46 -0
  3526. package/repos/tsgo/testdata/tests/effect-v3/catchToOrElseSucceed_preview.ts +6 -0
  3527. package/repos/tsgo/testdata/tests/effect-v3/catchUnfailableEffect.ts +44 -0
  3528. package/repos/tsgo/testdata/tests/effect-v3/catchUnfailableEffect_effectFn.ts +20 -0
  3529. package/repos/tsgo/testdata/tests/effect-v3/catchUnfailableEffect_effectFnRegular.ts +19 -0
  3530. package/repos/tsgo/testdata/tests/effect-v3/catchUnfailableEffect_variants.ts +32 -0
  3531. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch.ts +18 -0
  3532. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_contextTag.ts +12 -0
  3533. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_effectTag.ts +12 -0
  3534. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_preview.ts +10 -0
  3535. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_schema.ts +55 -0
  3536. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_schemaFalsePositive.ts +17 -0
  3537. package/repos/tsgo/testdata/tests/effect-v3/classSelfMismatch_unionGiven.ts +10 -0
  3538. package/repos/tsgo/testdata/tests/effect-v3/deterministicKeys.ts +29 -0
  3539. package/repos/tsgo/testdata/tests/effect-v3/deterministicKeys_custom.ts +65 -0
  3540. package/repos/tsgo/testdata/tests/effect-v3/deterministicKeys_defaultHashed.ts +29 -0
  3541. package/repos/tsgo/testdata/tests/effect-v3/deterministicKeys_packageIdentifier.ts +29 -0
  3542. package/repos/tsgo/testdata/tests/effect-v3/duplicatePackage_preview.ts +8 -0
  3543. package/repos/tsgo/testdata/tests/effect-v3/effectDoNotation.ts +12 -0
  3544. package/repos/tsgo/testdata/tests/effect-v3/effectDoNotation_preview.ts +12 -0
  3545. package/repos/tsgo/testdata/tests/effect-v3/effectFnIife.ts +53 -0
  3546. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_alreadyEffectFn.ts +27 -0
  3547. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_basic.ts +48 -0
  3548. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_genWithThis.ts +38 -0
  3549. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_inferred.ts +36 -0
  3550. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_inferredLayer.ts +44 -0
  3551. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_invalid.ts +38 -0
  3552. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_multipleReturns.ts +43 -0
  3553. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_noPipeWithSpan.ts +39 -0
  3554. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_overloadsNever.ts +38 -0
  3555. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_overloadsOk.ts +65 -0
  3556. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_params.ts +39 -0
  3557. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_paramsInPipe.ts +48 -0
  3558. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_pipeWithSpan.ts +40 -0
  3559. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_plainFew.ts +35 -0
  3560. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_plainMany.ts +54 -0
  3561. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_returnType.ts +40 -0
  3562. package/repos/tsgo/testdata/tests/effect-v3/effectFnOpportunity_typeParams.ts +71 -0
  3563. package/repos/tsgo/testdata/tests/effect-v3/effectGenUsesAdapter.ts +13 -0
  3564. package/repos/tsgo/testdata/tests/effect-v3/effectGenUsesAdapter_preview.ts +7 -0
  3565. package/repos/tsgo/testdata/tests/effect-v3/effectInFailure.ts +22 -0
  3566. package/repos/tsgo/testdata/tests/effect-v3/effectMapFlatten.ts +38 -0
  3567. package/repos/tsgo/testdata/tests/effect-v3/effectMapFlatten_preview.ts +9 -0
  3568. package/repos/tsgo/testdata/tests/effect-v3/effectMapVoid.ts +54 -0
  3569. package/repos/tsgo/testdata/tests/effect-v3/effectSucceedWithVoid.ts +32 -0
  3570. package/repos/tsgo/testdata/tests/effect-v3/extendsNativeError.ts +17 -0
  3571. package/repos/tsgo/testdata/tests/effect-v3/floatingEffect.ts +28 -0
  3572. package/repos/tsgo/testdata/tests/effect-v3/floatingEffect_stream.ts +7 -0
  3573. package/repos/tsgo/testdata/tests/effect-v3/genericEffectServices.ts +10 -0
  3574. package/repos/tsgo/testdata/tests/effect-v3/genericEffectServices_preview.ts +7 -0
  3575. package/repos/tsgo/testdata/tests/effect-v3/globalConsole.ts +36 -0
  3576. package/repos/tsgo/testdata/tests/effect-v3/globalConsoleInEffect.ts +48 -0
  3577. package/repos/tsgo/testdata/tests/effect-v3/globalConsoleInEffect_preview.ts +7 -0
  3578. package/repos/tsgo/testdata/tests/effect-v3/globalConsoleInEffect_thunks.ts +21 -0
  3579. package/repos/tsgo/testdata/tests/effect-v3/globalConsole_preview.ts +5 -0
  3580. package/repos/tsgo/testdata/tests/effect-v3/globalDate.ts +32 -0
  3581. package/repos/tsgo/testdata/tests/effect-v3/globalDateInEffect.ts +41 -0
  3582. package/repos/tsgo/testdata/tests/effect-v3/globalDateInEffect_preview.ts +8 -0
  3583. package/repos/tsgo/testdata/tests/effect-v3/globalDateInEffect_thunks.ts +21 -0
  3584. package/repos/tsgo/testdata/tests/effect-v3/globalDate_preview.ts +5 -0
  3585. package/repos/tsgo/testdata/tests/effect-v3/globalErrorInEffectCatch.ts +27 -0
  3586. package/repos/tsgo/testdata/tests/effect-v3/globalErrorInEffectFailure.ts +49 -0
  3587. package/repos/tsgo/testdata/tests/effect-v3/globalFetch.ts +23 -0
  3588. package/repos/tsgo/testdata/tests/effect-v3/globalFetchInEffect.ts +25 -0
  3589. package/repos/tsgo/testdata/tests/effect-v3/globalFetchInEffect_preview.ts +7 -0
  3590. package/repos/tsgo/testdata/tests/effect-v3/globalFetchInEffect_thunks.ts +21 -0
  3591. package/repos/tsgo/testdata/tests/effect-v3/globalFetch_preview.ts +5 -0
  3592. package/repos/tsgo/testdata/tests/effect-v3/globalRandom.ts +30 -0
  3593. package/repos/tsgo/testdata/tests/effect-v3/globalRandomInEffect.ts +27 -0
  3594. package/repos/tsgo/testdata/tests/effect-v3/globalRandomInEffect_preview.ts +8 -0
  3595. package/repos/tsgo/testdata/tests/effect-v3/globalRandomInEffect_thunks.ts +21 -0
  3596. package/repos/tsgo/testdata/tests/effect-v3/globalRandom_preview.ts +5 -0
  3597. package/repos/tsgo/testdata/tests/effect-v3/globalTimers.ts +30 -0
  3598. package/repos/tsgo/testdata/tests/effect-v3/globalTimersInEffect.ts +33 -0
  3599. package/repos/tsgo/testdata/tests/effect-v3/globalTimersInEffect_preview.ts +8 -0
  3600. package/repos/tsgo/testdata/tests/effect-v3/globalTimersInEffect_thunks.ts +20 -0
  3601. package/repos/tsgo/testdata/tests/effect-v3/globalTimers_preview.ts +4 -0
  3602. package/repos/tsgo/testdata/tests/effect-v3/instanceOfSchema.ts +35 -0
  3603. package/repos/tsgo/testdata/tests/effect-v3/layerMergeAllWithDependencies.ts +40 -0
  3604. package/repos/tsgo/testdata/tests/effect-v3/lazyPromiseInEffectSync.ts +21 -0
  3605. package/repos/tsgo/testdata/tests/effect-v3/lazyPromiseInEffectSync_preview.ts +6 -0
  3606. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements.ts +23 -0
  3607. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_allowJsdoc.ts +59 -0
  3608. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_genericTag.ts +14 -0
  3609. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_heuristic.ts +13 -0
  3610. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_leakableJsDoc.ts +17 -0
  3611. package/repos/tsgo/testdata/tests/effect-v3/leakingRequirements_noScope.ts +15 -0
  3612. package/repos/tsgo/testdata/tests/effect-v3/missedPipeableOpportunity.ts +49 -0
  3613. package/repos/tsgo/testdata/tests/effect-v3/missedPipeableOpportunity_error.ts +34 -0
  3614. package/repos/tsgo/testdata/tests/effect-v3/missedPipeableOpportunity_safer.ts +36 -0
  3615. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_arrowReturnType.ts +20 -0
  3616. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_callExpression.ts +30 -0
  3617. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_conciseBody.ts +11 -0
  3618. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_lazy.ts +21 -0
  3619. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_pipe.ts +10 -0
  3620. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_plainAssignment.ts +39 -0
  3621. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_returnSignature.ts +28 -0
  3622. package/repos/tsgo/testdata/tests/effect-v3/missingEffectContext_skipArrowDefaults.ts +8 -0
  3623. package/repos/tsgo/testdata/tests/effect-v3/missingEffectError_callExpression.ts +31 -0
  3624. package/repos/tsgo/testdata/tests/effect-v3/missingEffectError_plainAssignment.ts +39 -0
  3625. package/repos/tsgo/testdata/tests/effect-v3/missingEffectError_returnSignature.ts +28 -0
  3626. package/repos/tsgo/testdata/tests/effect-v3/missingEffectError_tagged.ts +23 -0
  3627. package/repos/tsgo/testdata/tests/effect-v3/missingEffectServiceDependency.ts +82 -0
  3628. package/repos/tsgo/testdata/tests/effect-v3/missingEffectServiceDependency_preview.ts +12 -0
  3629. package/repos/tsgo/testdata/tests/effect-v3/missingLayerContext.ts +31 -0
  3630. package/repos/tsgo/testdata/tests/effect-v3/missingReturnYieldStar.ts +27 -0
  3631. package/repos/tsgo/testdata/tests/effect-v3/missingReturnYieldStar_yieldable.ts +11 -0
  3632. package/repos/tsgo/testdata/tests/effect-v3/missingStarInYieldEffectGen.ts +44 -0
  3633. package/repos/tsgo/testdata/tests/effect-v3/multipleEffectProvide.ts +34 -0
  3634. package/repos/tsgo/testdata/tests/effect-v3/multipleEffectProvide_effectFn.ts +48 -0
  3635. package/repos/tsgo/testdata/tests/effect-v3/multipleEffectProvide_effectFnRegular.ts +34 -0
  3636. package/repos/tsgo/testdata/tests/effect-v3/nestedEffectGenYield.ts +36 -0
  3637. package/repos/tsgo/testdata/tests/effect-v3/nestedEffectGenYield_preview.ts +10 -0
  3638. package/repos/tsgo/testdata/tests/effect-v3/newPromise.ts +25 -0
  3639. package/repos/tsgo/testdata/tests/effect-v3/newPromise_preview.ts +5 -0
  3640. package/repos/tsgo/testdata/tests/effect-v3/nodeBuiltinImport.ts +48 -0
  3641. package/repos/tsgo/testdata/tests/effect-v3/nonObjectEffectServiceType.ts +53 -0
  3642. package/repos/tsgo/testdata/tests/effect-v3/nonObjectEffectServiceType_preview.ts +9 -0
  3643. package/repos/tsgo/testdata/tests/effect-v3/outdatedApi.ts +22 -0
  3644. package/repos/tsgo/testdata/tests/effect-v3/overriddenSchemaConstructor.ts +40 -0
  3645. package/repos/tsgo/testdata/tests/effect-v3/overriddenSchemaConstructor_static.ts +15 -0
  3646. package/repos/tsgo/testdata/tests/effect-v3/overriddenSchemaConstructor_valid.ts +10 -0
  3647. package/repos/tsgo/testdata/tests/effect-v3/package.json +11 -0
  3648. package/repos/tsgo/testdata/tests/effect-v3/preferSchemaOverJson.ts +64 -0
  3649. package/repos/tsgo/testdata/tests/effect-v3/processEnv.ts +20 -0
  3650. package/repos/tsgo/testdata/tests/effect-v3/processEnvInEffect.ts +25 -0
  3651. package/repos/tsgo/testdata/tests/effect-v3/processEnvInEffect_preview.ts +8 -0
  3652. package/repos/tsgo/testdata/tests/effect-v3/processEnvInEffect_thunks.ts +22 -0
  3653. package/repos/tsgo/testdata/tests/effect-v3/processEnv_preview.ts +6 -0
  3654. package/repos/tsgo/testdata/tests/effect-v3/redundantOrDie.ts +59 -0
  3655. package/repos/tsgo/testdata/tests/effect-v3/redundantOrDie_preview.ts +13 -0
  3656. package/repos/tsgo/testdata/tests/effect-v3/redundantSchemaTagIdentifier.ts +35 -0
  3657. package/repos/tsgo/testdata/tests/effect-v3/redundantSchemaTagIdentifier_preview.ts +8 -0
  3658. package/repos/tsgo/testdata/tests/effect-v3/returnEffectInGen.ts +6 -0
  3659. package/repos/tsgo/testdata/tests/effect-v3/returnEffectInGenNoDiagnostics.ts +32 -0
  3660. package/repos/tsgo/testdata/tests/effect-v3/runEffectInsideEffect.ts +26 -0
  3661. package/repos/tsgo/testdata/tests/effect-v3/runEffectInsideEffect_preview.ts +9 -0
  3662. package/repos/tsgo/testdata/tests/effect-v3/schemaStructWithTag.ts +20 -0
  3663. package/repos/tsgo/testdata/tests/effect-v3/schemaSyncInEffect.ts +62 -0
  3664. package/repos/tsgo/testdata/tests/effect-v3/schemaSyncInEffect_preview.ts +12 -0
  3665. package/repos/tsgo/testdata/tests/effect-v3/schemaSyncInEffect_thunks.ts +27 -0
  3666. package/repos/tsgo/testdata/tests/effect-v3/schemaUnionOfLiterals.ts +7 -0
  3667. package/repos/tsgo/testdata/tests/effect-v3/schemaUnionOfLiterals_preview.ts +6 -0
  3668. package/repos/tsgo/testdata/tests/effect-v3/scopeInLayerEffect.ts +52 -0
  3669. package/repos/tsgo/testdata/tests/effect-v3/scopeInLayerEffect_preview.ts +12 -0
  3670. package/repos/tsgo/testdata/tests/effect-v3/strictBooleanExpressions.ts +42 -0
  3671. package/repos/tsgo/testdata/tests/effect-v3/strictEffectProvide.ts +49 -0
  3672. package/repos/tsgo/testdata/tests/effect-v3/tryCatchInEffectGen.ts +47 -0
  3673. package/repos/tsgo/testdata/tests/effect-v3/tryCatchInEffectGen_finally.ts +12 -0
  3674. package/repos/tsgo/testdata/tests/effect-v3/unknownInEffectCatch.ts +42 -0
  3675. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryArrowBlock.ts +20 -0
  3676. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryArrowBlock_preview.ts +6 -0
  3677. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryEffectGen.ts +15 -0
  3678. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryEffectGen_ifBlock.ts +11 -0
  3679. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryEffectGen_noReturn.ts +19 -0
  3680. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryFailYieldableError.ts +26 -0
  3681. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryPipe.ts +16 -0
  3682. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryPipeChain.ts +7 -0
  3683. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryPipe_disableMidObject.ts +10 -0
  3684. package/repos/tsgo/testdata/tests/effect-v3/unnecessaryPipe_namespace.ts +11 -0
  3685. package/repos/tsgo/testdata/tests/effect-v3/unsafeEffectTypeAssertion.ts +24 -0
  3686. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToFn.ts +7 -0
  3687. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToFnTryPromise.ts +10 -0
  3688. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToFn_fetch.ts +8 -0
  3689. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToFn_generics.ts +7 -0
  3690. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGen.ts +7 -0
  3691. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGenTryPromise.ts +11 -0
  3692. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGenTryPromise_anonymous.ts +21 -0
  3693. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGen_anonymous.ts +21 -0
  3694. package/repos/tsgo/testdata/tests/effect-v3-refactors/asyncAwaitToGen_namedImport.ts +7 -0
  3695. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn.ts +34 -0
  3696. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn_classMethod.ts +13 -0
  3697. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn_mixedPipes.ts +13 -0
  3698. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn_returns.ts +18 -0
  3699. package/repos/tsgo/testdata/tests/effect-v3-refactors/effectGenToFn_withPipes.ts +13 -0
  3700. package/repos/tsgo/testdata/tests/effect-v3-refactors/functionToArrow.ts +25 -0
  3701. package/repos/tsgo/testdata/tests/effect-v3-refactors/layerMagic_build.ts +45 -0
  3702. package/repos/tsgo/testdata/tests/effect-v3-refactors/layerMagic_prepare.ts +29 -0
  3703. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque.ts +8 -0
  3704. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaqueWithNs_shortImport.ts +8 -0
  3705. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque_brand.ts +5 -0
  3706. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque_shortImport.ts +8 -0
  3707. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque_shortImportAlias.ts +8 -0
  3708. package/repos/tsgo/testdata/tests/effect-v3-refactors/makeSchemaOpaque_union.ts +8 -0
  3709. package/repos/tsgo/testdata/tests/effect-v3-refactors/package.json +11 -0
  3710. package/repos/tsgo/testdata/tests/effect-v3-refactors/pipeableToDatafirst.ts +27 -0
  3711. package/repos/tsgo/testdata/tests/effect-v3-refactors/removeUnnecessaryEffectGen.ts +22 -0
  3712. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema.ts +32 -0
  3713. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_avoidConflict.ts +17 -0
  3714. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_externalType.ts +6 -0
  3715. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_reuse.ts +17 -0
  3716. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_symbolNames.ts +18 -0
  3717. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_typeAlias.ts +9 -0
  3718. package/repos/tsgo/testdata/tests/effect-v3-refactors/structuralTypeToSchema_union.ts +5 -0
  3719. package/repos/tsgo/testdata/tests/effect-v3-refactors/toggleLazyConst.ts +10 -0
  3720. package/repos/tsgo/testdata/tests/effect-v3-refactors/togglePipeStyle.ts +8 -0
  3721. package/repos/tsgo/testdata/tests/effect-v3-refactors/toggleReturnTypeAnnotation.ts +19 -0
  3722. package/repos/tsgo/testdata/tests/effect-v3-refactors/toggleTypeAnnotation.ts +22 -0
  3723. package/repos/tsgo/testdata/tests/effect-v3-refactors/typeToEffectSchema.ts +42 -0
  3724. package/repos/tsgo/testdata/tests/effect-v3-refactors/typeToEffectSchemaClass.ts +38 -0
  3725. package/repos/tsgo/testdata/tests/effect-v3-refactors/wrapWithEffectGen.ts +19 -0
  3726. package/repos/tsgo/testdata/tests/effect-v3-refactors/wrapWithEffectGen_noclass.ts +7 -0
  3727. package/repos/tsgo/testdata/tests/effect-v3-refactors/writeTagClassAccessors.ts +31 -0
  3728. package/repos/tsgo/testdata/tests/effect-v4/anyUnknownInErrorContext.ts +39 -0
  3729. package/repos/tsgo/testdata/tests/effect-v4/anyUnknownInErrorContext_preview.ts +8 -0
  3730. package/repos/tsgo/testdata/tests/effect-v4/asyncFunction.ts +33 -0
  3731. package/repos/tsgo/testdata/tests/effect-v4/asyncFunction_preview.ts +6 -0
  3732. package/repos/tsgo/testdata/tests/effect-v4/callExpPipeable.ts +8 -0
  3733. package/repos/tsgo/testdata/tests/effect-v4/catchAllToMapError.ts +64 -0
  3734. package/repos/tsgo/testdata/tests/effect-v4/catchAllToMapError_effectFn.ts +25 -0
  3735. package/repos/tsgo/testdata/tests/effect-v4/catchAllToMapError_preview.ts +11 -0
  3736. package/repos/tsgo/testdata/tests/effect-v4/catchToOrElseSucceed.ts +44 -0
  3737. package/repos/tsgo/testdata/tests/effect-v4/catchToOrElseSucceed_preview.ts +5 -0
  3738. package/repos/tsgo/testdata/tests/effect-v4/catchUnfailableEffect.ts +56 -0
  3739. package/repos/tsgo/testdata/tests/effect-v4/catchUnfailableEffect_preview.ts +7 -0
  3740. package/repos/tsgo/testdata/tests/effect-v4/classImplementsIssue.ts +18 -0
  3741. package/repos/tsgo/testdata/tests/effect-v4/classSelfMismatch_contextTag.ts +11 -0
  3742. package/repos/tsgo/testdata/tests/effect-v4/classSelfMismatch_schema.ts +38 -0
  3743. package/repos/tsgo/testdata/tests/effect-v4/classSelfMismatch_service.ts +13 -0
  3744. package/repos/tsgo/testdata/tests/effect-v4/classSelfMismatch_sqlClass.ts +12 -0
  3745. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUID.ts +29 -0
  3746. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUIDInEffect.ts +25 -0
  3747. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUIDInEffect_preview.ts +7 -0
  3748. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUIDInEffect_thunks.ts +20 -0
  3749. package/repos/tsgo/testdata/tests/effect-v4/cryptoRandomUUID_preview.ts +4 -0
  3750. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys.ts +27 -0
  3751. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys_custom.ts +63 -0
  3752. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys_defaultHashed.ts +27 -0
  3753. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys_packageIdentifier.ts +27 -0
  3754. package/repos/tsgo/testdata/tests/effect-v4/deterministicKeys_preview.ts +7 -0
  3755. package/repos/tsgo/testdata/tests/effect-v4/duplicatePackage.ts +6 -0
  3756. package/repos/tsgo/testdata/tests/effect-v4/duplicatePackage_detected.ts +35 -0
  3757. package/repos/tsgo/testdata/tests/effect-v4/duplicatePackage_suppressed.ts +37 -0
  3758. package/repos/tsgo/testdata/tests/effect-v4/effectDoNotation.ts +12 -0
  3759. package/repos/tsgo/testdata/tests/effect-v4/effectDoNotation_preview.ts +11 -0
  3760. package/repos/tsgo/testdata/tests/effect-v4/effectFn.ts +45 -0
  3761. package/repos/tsgo/testdata/tests/effect-v4/effectFnIife.ts +52 -0
  3762. package/repos/tsgo/testdata/tests/effect-v4/effectFnIife_preview.ts +7 -0
  3763. package/repos/tsgo/testdata/tests/effect-v4/effectFnImplicitAny.ts +92 -0
  3764. package/repos/tsgo/testdata/tests/effect-v4/effectFnImplicitAnyNonGen.ts +72 -0
  3765. package/repos/tsgo/testdata/tests/effect-v4/effectFnImplicitAny_noDiags.ts +22 -0
  3766. package/repos/tsgo/testdata/tests/effect-v4/effectFnImplicitAny_preview.ts +6 -0
  3767. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_alreadyEffectFn.ts +26 -0
  3768. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_basic.ts +47 -0
  3769. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_defaultConfig.ts +36 -0
  3770. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_genWithThis.ts +37 -0
  3771. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferred.ts +35 -0
  3772. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferredLayer.ts +40 -0
  3773. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferredLayerThis.ts +31 -0
  3774. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferredOf.ts +26 -0
  3775. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_inferredServiceMake.ts +25 -0
  3776. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_invalid.ts +37 -0
  3777. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_multipleReturns.ts +42 -0
  3778. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_noPipeWithSpan.ts +38 -0
  3779. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_overloadsNever.ts +37 -0
  3780. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_overloadsOk.ts +64 -0
  3781. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_params.ts +38 -0
  3782. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_paramsInPipe.ts +47 -0
  3783. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_pipeWithSpan.ts +39 -0
  3784. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_plainFew.ts +34 -0
  3785. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_plainMany.ts +53 -0
  3786. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_preview.ts +8 -0
  3787. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_returnType.ts +39 -0
  3788. package/repos/tsgo/testdata/tests/effect-v4/effectFnOpportunity_typeParams.ts +70 -0
  3789. package/repos/tsgo/testdata/tests/effect-v4/effectFnRegular.ts +19 -0
  3790. package/repos/tsgo/testdata/tests/effect-v4/effectFnUntracedEagerImplicitAny.ts +82 -0
  3791. package/repos/tsgo/testdata/tests/effect-v4/effectFnUntracedImplicitAny.ts +82 -0
  3792. package/repos/tsgo/testdata/tests/effect-v4/effectInFailure.ts +22 -0
  3793. package/repos/tsgo/testdata/tests/effect-v4/effectInFailure_preview.ts +8 -0
  3794. package/repos/tsgo/testdata/tests/effect-v4/effectInVoidSuccess.ts +15 -0
  3795. package/repos/tsgo/testdata/tests/effect-v4/effectInVoidSuccess_preview.ts +7 -0
  3796. package/repos/tsgo/testdata/tests/effect-v4/effectMapFlatten.ts +38 -0
  3797. package/repos/tsgo/testdata/tests/effect-v4/effectMapFlatten_preview.ts +8 -0
  3798. package/repos/tsgo/testdata/tests/effect-v4/effectMapVoid.ts +51 -0
  3799. package/repos/tsgo/testdata/tests/effect-v4/effectMapVoid_preview.ts +7 -0
  3800. package/repos/tsgo/testdata/tests/effect-v4/effectSucceedWithVoid.ts +31 -0
  3801. package/repos/tsgo/testdata/tests/effect-v4/effectSucceedWithVoid_preview.ts +5 -0
  3802. package/repos/tsgo/testdata/tests/effect-v4/effect_fn_opportunity_panic.ts +141 -0
  3803. package/repos/tsgo/testdata/tests/effect-v4/emptyArgs.ts +8 -0
  3804. package/repos/tsgo/testdata/tests/effect-v4/extendsNativeError.ts +16 -0
  3805. package/repos/tsgo/testdata/tests/effect-v4/extendsNativeError_preview.ts +4 -0
  3806. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect.ts +26 -0
  3807. package/repos/tsgo/testdata/tests/effect-v4/floatingEffectGen.ts +5 -0
  3808. package/repos/tsgo/testdata/tests/effect-v4/floatingEffectSuppressed.ts +28 -0
  3809. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect_disabledWildcard.ts +13 -0
  3810. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect_preview.ts +5 -0
  3811. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect_stream.ts +5 -0
  3812. package/repos/tsgo/testdata/tests/effect-v4/floatingEffect_subtypes.ts +14 -0
  3813. package/repos/tsgo/testdata/tests/effect-v4/functionCalls.ts +17 -0
  3814. package/repos/tsgo/testdata/tests/effect-v4/globalConsole.ts +36 -0
  3815. package/repos/tsgo/testdata/tests/effect-v4/globalConsoleInEffect.ts +48 -0
  3816. package/repos/tsgo/testdata/tests/effect-v4/globalConsoleInEffect_preview.ts +7 -0
  3817. package/repos/tsgo/testdata/tests/effect-v4/globalConsoleInEffect_thunks.ts +20 -0
  3818. package/repos/tsgo/testdata/tests/effect-v4/globalConsole_preview.ts +4 -0
  3819. package/repos/tsgo/testdata/tests/effect-v4/globalDate.ts +31 -0
  3820. package/repos/tsgo/testdata/tests/effect-v4/globalDateInEffect.ts +41 -0
  3821. package/repos/tsgo/testdata/tests/effect-v4/globalDateInEffect_preview.ts +8 -0
  3822. package/repos/tsgo/testdata/tests/effect-v4/globalDateInEffect_thunks.ts +20 -0
  3823. package/repos/tsgo/testdata/tests/effect-v4/globalDate_preview.ts +4 -0
  3824. package/repos/tsgo/testdata/tests/effect-v4/globalErrorInEffectCatch.ts +16 -0
  3825. package/repos/tsgo/testdata/tests/effect-v4/globalErrorInEffectCatch_preview.ts +8 -0
  3826. package/repos/tsgo/testdata/tests/effect-v4/globalErrorInEffectFailure.ts +48 -0
  3827. package/repos/tsgo/testdata/tests/effect-v4/globalErrorInEffectFailure_preview.ts +5 -0
  3828. package/repos/tsgo/testdata/tests/effect-v4/globalFetch.ts +23 -0
  3829. package/repos/tsgo/testdata/tests/effect-v4/globalFetchInEffect.ts +24 -0
  3830. package/repos/tsgo/testdata/tests/effect-v4/globalFetchInEffect_preview.ts +7 -0
  3831. package/repos/tsgo/testdata/tests/effect-v4/globalFetchInEffect_thunks.ts +20 -0
  3832. package/repos/tsgo/testdata/tests/effect-v4/globalFetch_preview.ts +4 -0
  3833. package/repos/tsgo/testdata/tests/effect-v4/globalRandom.ts +29 -0
  3834. package/repos/tsgo/testdata/tests/effect-v4/globalRandomInEffect.ts +27 -0
  3835. package/repos/tsgo/testdata/tests/effect-v4/globalRandomInEffect_preview.ts +8 -0
  3836. package/repos/tsgo/testdata/tests/effect-v4/globalRandomInEffect_thunks.ts +20 -0
  3837. package/repos/tsgo/testdata/tests/effect-v4/globalRandom_preview.ts +4 -0
  3838. package/repos/tsgo/testdata/tests/effect-v4/globalTimers.ts +29 -0
  3839. package/repos/tsgo/testdata/tests/effect-v4/globalTimersInEffect.ts +32 -0
  3840. package/repos/tsgo/testdata/tests/effect-v4/globalTimersInEffect_preview.ts +7 -0
  3841. package/repos/tsgo/testdata/tests/effect-v4/globalTimersInEffect_thunks.ts +20 -0
  3842. package/repos/tsgo/testdata/tests/effect-v4/globalTimers_preview.ts +4 -0
  3843. package/repos/tsgo/testdata/tests/effect-v4/instanceOfSchema.ts +34 -0
  3844. package/repos/tsgo/testdata/tests/effect-v4/instanceOfSchema_preview.ts +7 -0
  3845. package/repos/tsgo/testdata/tests/effect-v4/interfaceExtendsIssue.ts +10 -0
  3846. package/repos/tsgo/testdata/tests/effect-v4/interfaceExtendsIssueNoPlugin.ts +16 -0
  3847. package/repos/tsgo/testdata/tests/effect-v4/issue179_nestedEffectGenThis.ts +26 -0
  3848. package/repos/tsgo/testdata/tests/effect-v4/issue179_remainingCases.ts +82 -0
  3849. package/repos/tsgo/testdata/tests/effect-v4/jsxIntrinsicElements.ts +41 -0
  3850. package/repos/tsgo/testdata/tests/effect-v4/layerGraphDocumented.ts +51 -0
  3851. package/repos/tsgo/testdata/tests/effect-v4/layerGraphDuplicated.ts +59 -0
  3852. package/repos/tsgo/testdata/tests/effect-v4/layerGraphEffect.ts +15 -0
  3853. package/repos/tsgo/testdata/tests/effect-v4/layerGraphFollowSymbols.ts +59 -0
  3854. package/repos/tsgo/testdata/tests/effect-v4/layerGraphFollowSymbolsDeep.ts +53 -0
  3855. package/repos/tsgo/testdata/tests/effect-v4/layerGraphFollowSymbolsOff.ts +56 -0
  3856. package/repos/tsgo/testdata/tests/effect-v4/layerGraphMultiple.ts +63 -0
  3857. package/repos/tsgo/testdata/tests/effect-v4/layerGraphSimple.ts +40 -0
  3858. package/repos/tsgo/testdata/tests/effect-v4/layerGraphSpecialChars.ts +23 -0
  3859. package/repos/tsgo/testdata/tests/effect-v4/layerMergeAllWithDependencies.ts +47 -0
  3860. package/repos/tsgo/testdata/tests/effect-v4/layerMergeAllWithDependenciesNonPropertyAccess.ts +26 -0
  3861. package/repos/tsgo/testdata/tests/effect-v4/layerMergeAllWithDependencies_preview.ts +11 -0
  3862. package/repos/tsgo/testdata/tests/effect-v4/layerServiceTypes.ts +53 -0
  3863. package/repos/tsgo/testdata/tests/effect-v4/lazyEffect.ts +102 -0
  3864. package/repos/tsgo/testdata/tests/effect-v4/lazyEffect_preview.ts +7 -0
  3865. package/repos/tsgo/testdata/tests/effect-v4/lazyPromiseInEffectSync.ts +20 -0
  3866. package/repos/tsgo/testdata/tests/effect-v4/lazyPromiseInEffectSync_preview.ts +5 -0
  3867. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements.ts +22 -0
  3868. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_allowJsdoc.ts +46 -0
  3869. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_genericTag.ts +13 -0
  3870. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_heuristic.ts +12 -0
  3871. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_leakableJsDoc.ts +17 -0
  3872. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_noScope.ts +14 -0
  3873. package/repos/tsgo/testdata/tests/effect-v4/leakingRequirements_preview.ts +13 -0
  3874. package/repos/tsgo/testdata/tests/effect-v4/missedPipeableOpportunity.ts +48 -0
  3875. package/repos/tsgo/testdata/tests/effect-v4/missedPipeableOpportunity_error.ts +34 -0
  3876. package/repos/tsgo/testdata/tests/effect-v4/missedPipeableOpportunity_preview.ts +7 -0
  3877. package/repos/tsgo/testdata/tests/effect-v4/missedPipeableOpportunity_safer.ts +35 -0
  3878. package/repos/tsgo/testdata/tests/effect-v4/missingEffectContext.ts +24 -0
  3879. package/repos/tsgo/testdata/tests/effect-v4/missingEffectContext_preview.ts +8 -0
  3880. package/repos/tsgo/testdata/tests/effect-v4/missingEffectContext_sugg.ts +43 -0
  3881. package/repos/tsgo/testdata/tests/effect-v4/missingEffectError.ts +19 -0
  3882. package/repos/tsgo/testdata/tests/effect-v4/missingEffectError_preview.ts +10 -0
  3883. package/repos/tsgo/testdata/tests/effect-v4/missingLayerContext.ts +35 -0
  3884. package/repos/tsgo/testdata/tests/effect-v4/missingLayerContext_preview.ts +10 -0
  3885. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYieldStar.ts +35 -0
  3886. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYieldStarFn.ts +26 -0
  3887. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYieldStarFnUntraced.ts +13 -0
  3888. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYieldStar_preview.ts +8 -0
  3889. package/repos/tsgo/testdata/tests/effect-v4/missingReturnYiesStarGenThis.ts +8 -0
  3890. package/repos/tsgo/testdata/tests/effect-v4/missingStarInYieldEffectGen.ts +48 -0
  3891. package/repos/tsgo/testdata/tests/effect-v4/missingStarInYieldEffectGen_preview.ts +8 -0
  3892. package/repos/tsgo/testdata/tests/effect-v4/multipleCatchTag.ts +58 -0
  3893. package/repos/tsgo/testdata/tests/effect-v4/multipleCatchTag_preview.ts +14 -0
  3894. package/repos/tsgo/testdata/tests/effect-v4/multipleCatchTag_stream.ts +39 -0
  3895. package/repos/tsgo/testdata/tests/effect-v4/multipleEffectProvide.ts +38 -0
  3896. package/repos/tsgo/testdata/tests/effect-v4/multipleEffectProvide_effectFn.ts +53 -0
  3897. package/repos/tsgo/testdata/tests/effect-v4/multipleEffectProvide_effectFnRegular.ts +39 -0
  3898. package/repos/tsgo/testdata/tests/effect-v4/multipleEffectProvide_preview.ts +11 -0
  3899. package/repos/tsgo/testdata/tests/effect-v4/multipleFlows.ts +18 -0
  3900. package/repos/tsgo/testdata/tests/effect-v4/nestedEffectGenYield.ts +35 -0
  3901. package/repos/tsgo/testdata/tests/effect-v4/nestedEffectGenYield_preview.ts +9 -0
  3902. package/repos/tsgo/testdata/tests/effect-v4/nestedPipe.ts +22 -0
  3903. package/repos/tsgo/testdata/tests/effect-v4/newPromise.ts +25 -0
  3904. package/repos/tsgo/testdata/tests/effect-v4/newPromise_preview.ts +4 -0
  3905. package/repos/tsgo/testdata/tests/effect-v4/newSchemaClass.ts +32 -0
  3906. package/repos/tsgo/testdata/tests/effect-v4/newSchemaClass_preview.ts +7 -0
  3907. package/repos/tsgo/testdata/tests/effect-v4/nodeBuiltinImport.ts +47 -0
  3908. package/repos/tsgo/testdata/tests/effect-v4/nodeBuiltinImport_preview.ts +5 -0
  3909. package/repos/tsgo/testdata/tests/effect-v4/outdatedApi.ts +87 -0
  3910. package/repos/tsgo/testdata/tests/effect-v4/outdatedApi_preview.ts +8 -0
  3911. package/repos/tsgo/testdata/tests/effect-v4/overriddenSchemaConstructor.ts +32 -0
  3912. package/repos/tsgo/testdata/tests/effect-v4/overriddenSchemaConstructor_preview.ts +7 -0
  3913. package/repos/tsgo/testdata/tests/effect-v4/overriddenSchemaConstructor_static.ts +14 -0
  3914. package/repos/tsgo/testdata/tests/effect-v4/overriddenSchemaConstructor_valid.ts +9 -0
  3915. package/repos/tsgo/testdata/tests/effect-v4/package.json +11 -0
  3916. package/repos/tsgo/testdata/tests/effect-v4/parsingGen.ts +11 -0
  3917. package/repos/tsgo/testdata/tests/effect-v4/pluginDisabled.ts +8 -0
  3918. package/repos/tsgo/testdata/tests/effect-v4/preferSchemaOverJson.ts +51 -0
  3919. package/repos/tsgo/testdata/tests/effect-v4/preferSchemaOverJson_preview.ts +8 -0
  3920. package/repos/tsgo/testdata/tests/effect-v4/processEnv.ts +20 -0
  3921. package/repos/tsgo/testdata/tests/effect-v4/processEnvInEffect.ts +25 -0
  3922. package/repos/tsgo/testdata/tests/effect-v4/processEnvInEffect_preview.ts +8 -0
  3923. package/repos/tsgo/testdata/tests/effect-v4/processEnvInEffect_thunks.ts +21 -0
  3924. package/repos/tsgo/testdata/tests/effect-v4/processEnv_preview.ts +5 -0
  3925. package/repos/tsgo/testdata/tests/effect-v4/redundantMapError.ts +68 -0
  3926. package/repos/tsgo/testdata/tests/effect-v4/redundantMapError_preview.ts +20 -0
  3927. package/repos/tsgo/testdata/tests/effect-v4/redundantOrDie.ts +58 -0
  3928. package/repos/tsgo/testdata/tests/effect-v4/redundantOrDie_preview.ts +12 -0
  3929. package/repos/tsgo/testdata/tests/effect-v4/returnEffectInGen.ts +5 -0
  3930. package/repos/tsgo/testdata/tests/effect-v4/returnEffectInGenNoDiagnostics.ts +30 -0
  3931. package/repos/tsgo/testdata/tests/effect-v4/returnEffectInGen_preview.ts +7 -0
  3932. package/repos/tsgo/testdata/tests/effect-v4/runEffectInsideEffect.ts +25 -0
  3933. package/repos/tsgo/testdata/tests/effect-v4/runEffectInsideEffect_preview.ts +8 -0
  3934. package/repos/tsgo/testdata/tests/effect-v4/schemaMutableKey_ts2322.ts +30 -0
  3935. package/repos/tsgo/testdata/tests/effect-v4/schemaMutableKey_ts2322_pluginDisabled.ts +41 -0
  3936. package/repos/tsgo/testdata/tests/effect-v4/schemaNumber.ts +25 -0
  3937. package/repos/tsgo/testdata/tests/effect-v4/schemaNumber_preview.ts +9 -0
  3938. package/repos/tsgo/testdata/tests/effect-v4/schemaStructWithTag.ts +19 -0
  3939. package/repos/tsgo/testdata/tests/effect-v4/schemaStructWithTag_preview.ts +8 -0
  3940. package/repos/tsgo/testdata/tests/effect-v4/schemaSyncInEffect.ts +61 -0
  3941. package/repos/tsgo/testdata/tests/effect-v4/schemaSyncInEffect_thunks.ts +26 -0
  3942. package/repos/tsgo/testdata/tests/effect-v4/serviceNotAsClass.ts +17 -0
  3943. package/repos/tsgo/testdata/tests/effect-v4/serviceNotAsClass_preview.ts +5 -0
  3944. package/repos/tsgo/testdata/tests/effect-v4/simpleEffect.ts +38 -0
  3945. package/repos/tsgo/testdata/tests/effect-v4/simplePipe.ts +15 -0
  3946. package/repos/tsgo/testdata/tests/effect-v4/strictBooleanExpressions.ts +41 -0
  3947. package/repos/tsgo/testdata/tests/effect-v4/strictBooleanExpressions_preview.ts +5 -0
  3948. package/repos/tsgo/testdata/tests/effect-v4/strictEffectProvide.ts +51 -0
  3949. package/repos/tsgo/testdata/tests/effect-v4/strictEffectProvide_preview.ts +8 -0
  3950. package/repos/tsgo/testdata/tests/effect-v4/tryCatchInEffectGen.ts +46 -0
  3951. package/repos/tsgo/testdata/tests/effect-v4/tryCatchInEffectGen_finally.ts +11 -0
  3952. package/repos/tsgo/testdata/tests/effect-v4/tryCatchInEffectGen_preview.ts +8 -0
  3953. package/repos/tsgo/testdata/tests/effect-v4/tsExpectErrorDoesNotSuppressEffectDiagnostics.ts +24 -0
  3954. package/repos/tsgo/testdata/tests/effect-v4/unknownInEffectCatch.ts +26 -0
  3955. package/repos/tsgo/testdata/tests/effect-v4/unknownInEffectCatch_preview.ts +8 -0
  3956. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryArrowBlock.ts +19 -0
  3957. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryArrowBlock_preview.ts +5 -0
  3958. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryEffectGen.ts +14 -0
  3959. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryEffectGen_ifBlock.ts +10 -0
  3960. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryEffectGen_noReturn.ts +18 -0
  3961. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryEffectGen_preview.ts +7 -0
  3962. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryFailYieldableError.ts +27 -0
  3963. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryFailYieldableError_preview.ts +9 -0
  3964. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipe.ts +15 -0
  3965. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipeChain.ts +17 -0
  3966. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipeChain_preview.ts +5 -0
  3967. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipe_disableMidObject.ts +9 -0
  3968. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipe_namespace.ts +10 -0
  3969. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryPipe_preview.ts +5 -0
  3970. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryTypeofType.ts +40 -0
  3971. package/repos/tsgo/testdata/tests/effect-v4/unnecessaryTypeofType_preview.ts +10 -0
  3972. package/repos/tsgo/testdata/tests/effect-v4/unsafeEffectTypeAssertion.ts +24 -0
  3973. package/repos/tsgo/testdata/tests/effect-v4/unsafeEffectTypeAssertion_preview.ts +7 -0
  3974. package/repos/tsgo/testdata/tests/effect-v4/unusedDirective.ts +6 -0
  3975. package/repos/tsgo/testdata/tests/effect-v4-document-symbols/debugDocumentSymbolFlows.ts +23 -0
  3976. package/repos/tsgo/testdata/tests/effect-v4-document-symbols/documentSymbolEffectStub.ts +70 -0
  3977. package/repos/tsgo/testdata/tests/effect-v4-document-symbols/package.json +11 -0
  3978. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToFn.ts +6 -0
  3979. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToFnTryPromise.ts +9 -0
  3980. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToFn_fetch.ts +7 -0
  3981. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToFn_generics.ts +6 -0
  3982. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGen.ts +6 -0
  3983. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGenTryPromise.ts +10 -0
  3984. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGenTryPromise_anonymous.ts +20 -0
  3985. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGen_anonymous.ts +15 -0
  3986. package/repos/tsgo/testdata/tests/effect-v4-refactors/asyncAwaitToGen_namedImport.ts +6 -0
  3987. package/repos/tsgo/testdata/tests/effect-v4-refactors/effectGenToFn.ts +33 -0
  3988. package/repos/tsgo/testdata/tests/effect-v4-refactors/effectGenToFn_classMethod.ts +12 -0
  3989. package/repos/tsgo/testdata/tests/effect-v4-refactors/effectGenToFn_mixedPipes.ts +12 -0
  3990. package/repos/tsgo/testdata/tests/effect-v4-refactors/effectGenToFn_withPipes.ts +12 -0
  3991. package/repos/tsgo/testdata/tests/effect-v4-refactors/functionToArrow.ts +24 -0
  3992. package/repos/tsgo/testdata/tests/effect-v4-refactors/layerMagic_build.ts +51 -0
  3993. package/repos/tsgo/testdata/tests/effect-v4-refactors/layerMagic_prepare.ts +36 -0
  3994. package/repos/tsgo/testdata/tests/effect-v4-refactors/layerMagic_prepareReuse.ts +35 -0
  3995. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque.ts +7 -0
  3996. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaqueWithNs_shortImport.ts +7 -0
  3997. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque_brand.ts +4 -0
  3998. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque_shortImport.ts +7 -0
  3999. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque_shortImportAlias.ts +7 -0
  4000. package/repos/tsgo/testdata/tests/effect-v4-refactors/makeSchemaOpaque_union.ts +7 -0
  4001. package/repos/tsgo/testdata/tests/effect-v4-refactors/package.json +11 -0
  4002. package/repos/tsgo/testdata/tests/effect-v4-refactors/pipeableToDatafirst.ts +26 -0
  4003. package/repos/tsgo/testdata/tests/effect-v4-refactors/removeUnnecessaryEffectGen.ts +21 -0
  4004. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema.ts +31 -0
  4005. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_avoidConflict.ts +16 -0
  4006. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_externalType.ts +5 -0
  4007. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_reuse.ts +16 -0
  4008. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_symbolNames.ts +17 -0
  4009. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_typeAlias.ts +8 -0
  4010. package/repos/tsgo/testdata/tests/effect-v4-refactors/structuralTypeToSchema_union.ts +4 -0
  4011. package/repos/tsgo/testdata/tests/effect-v4-refactors/toggleLazyConst.ts +9 -0
  4012. package/repos/tsgo/testdata/tests/effect-v4-refactors/togglePipeStyle.ts +7 -0
  4013. package/repos/tsgo/testdata/tests/effect-v4-refactors/togglePipeStyle_nestedCallback.ts +19 -0
  4014. package/repos/tsgo/testdata/tests/effect-v4-refactors/toggleReturnTypeAnnotation.ts +18 -0
  4015. package/repos/tsgo/testdata/tests/effect-v4-refactors/toggleTypeAnnotation.ts +21 -0
  4016. package/repos/tsgo/testdata/tests/effect-v4-refactors/typeToEffectSchema.ts +41 -0
  4017. package/repos/tsgo/testdata/tests/effect-v4-refactors/typeToEffectSchemaClass.ts +37 -0
  4018. package/repos/tsgo/testdata/tests/effect-v4-refactors/wrapWithEffectGen.ts +18 -0
  4019. package/repos/tsgo/testdata/tests/effect-v4-refactors/wrapWithEffectGen_nestedCallback.ts +12 -0
  4020. package/repos/tsgo/testdata/tests/effect-v4-refactors/wrapWithPipe.ts +4 -0
  4021. package/repos/tsgo.subtree.json +40 -0
  4022. package/dist/src/harness/CraftSkills.d.ts +0 -14
  4023. package/dist/src/harness/CraftSkills.js +0 -164
  4024. package/dist/src/harness/CraftSkills.js.map +0 -1
  4025. package/dist/src/harness/GuardrailRules.d.ts +0 -6
  4026. package/dist/src/harness/GuardrailRules.js +0 -303
  4027. package/dist/src/harness/GuardrailRules.js.map +0 -1
  4028. package/dist/src/harness/Init.d.ts +0 -9
  4029. package/dist/src/harness/Init.js +0 -234
  4030. package/dist/src/harness/Init.js.map +0 -1
  4031. package/dist/src/harness/PnpmWorkspace.d.ts +0 -2
  4032. package/dist/src/harness/PnpmWorkspace.js +0 -23
  4033. package/dist/src/harness/PnpmWorkspace.js.map +0 -1
  4034. package/dist/src/harness/Publish.d.ts +0 -53
  4035. package/dist/src/harness/Publish.js +0 -282
  4036. package/dist/src/harness/Publish.js.map +0 -1
  4037. package/dist/src/harness/SelfVerify.d.ts +0 -4
  4038. package/dist/src/harness/SelfVerify.js +0 -56
  4039. package/dist/src/harness/SelfVerify.js.map +0 -1
  4040. package/dist/src/harness/Status.d.ts +0 -12
  4041. package/dist/src/harness/Status.js +0 -88
  4042. package/dist/src/harness/Status.js.map +0 -1
  4043. package/dist/src/harness/TargetVerify.d.ts +0 -8
  4044. package/dist/src/harness/TargetVerify.js +0 -432
  4045. package/dist/src/harness/TargetVerify.js.map +0 -1
  4046. package/dist/src/harness/TestContract.d.ts +0 -6
  4047. package/dist/src/harness/TestContract.js +0 -45
  4048. package/dist/src/harness/TestContract.js.map +0 -1
  4049. package/dist/src/platform/ManagedFiles.d.ts +0 -8
  4050. package/dist/src/platform/ManagedFiles.js +0 -59
  4051. package/dist/src/platform/ManagedFiles.js.map +0 -1
  4052. package/guide/default-capabilities.md +0 -38
  4053. package/guide/index.md +0 -49
  4054. package/guide/setup.md +0 -64
  4055. package/harness/default-capabilities.md +0 -32
  4056. package/harness/exposure.md +0 -46
  4057. package/harness/feedback/index.md +0 -60
  4058. package/harness/official-inventory.md +0 -85
  4059. package/harness/runtime/codex/AGENTS.fragment.md +0 -28
  4060. package/harness/runtime/codex/agents/effect-worker.md +0 -26
  4061. package/harness/runtime/codex/skills/effect-code/SKILL.md +0 -72
  4062. package/harness/runtime/codex/skills/effect-code/agents/openai.yaml +0 -4
  4063. package/harness/runtime/codex/skills/effect-feedback/SKILL.md +0 -66
  4064. package/harness/runtime/codex/skills/effect-feedback/agents/openai.yaml +0 -4
  4065. package/harness/target-agent-contract.md +0 -205
  4066. package/repos/craft-skills.manifest.json +0 -34
  4067. package/repos/effect/packages/effect/src/internal/concurrency.ts +0 -52
  4068. package/repos/effect/scripts/check-cookbook-schedule.ts +0 -390
@@ -0,0 +1,2020 @@
1
+ {
2
+ "groups": [
3
+ {
4
+ "id": "correctness",
5
+ "name": "Correctness",
6
+ "description": "Wrong, unsafe, or structurally invalid code patterns."
7
+ },
8
+ {
9
+ "id": "antipattern",
10
+ "name": "Anti-pattern",
11
+ "description": "Discouraged patterns that often lead to bugs or confusing behavior."
12
+ },
13
+ {
14
+ "id": "effectNative",
15
+ "name": "Effect-native",
16
+ "description": "Prefer Effect-native APIs and abstractions when available."
17
+ },
18
+ {
19
+ "id": "style",
20
+ "name": "Style",
21
+ "description": "Cleanup, consistency, and idiomatic Effect code."
22
+ }
23
+ ],
24
+ "presets": [
25
+ {
26
+ "name": "effect-native",
27
+ "description": "Enable all Effect-native diagnostics at warning level.",
28
+ "diagnosticSeverity": {
29
+ "asyncFunction": "warning",
30
+ "cryptoRandomUUID": "warning",
31
+ "cryptoRandomUUIDInEffect": "warning",
32
+ "extendsNativeError": "warning",
33
+ "globalConsole": "warning",
34
+ "globalConsoleInEffect": "warning",
35
+ "globalDate": "warning",
36
+ "globalDateInEffect": "warning",
37
+ "globalFetch": "warning",
38
+ "globalFetchInEffect": "warning",
39
+ "globalRandom": "warning",
40
+ "globalRandomInEffect": "warning",
41
+ "globalTimers": "warning",
42
+ "globalTimersInEffect": "warning",
43
+ "instanceOfSchema": "warning",
44
+ "newPromise": "warning",
45
+ "nodeBuiltinImport": "warning",
46
+ "preferSchemaOverJson": "warning",
47
+ "processEnv": "warning",
48
+ "processEnvInEffect": "warning",
49
+ "unsafeEffectTypeAssertion": "warning"
50
+ }
51
+ }
52
+ ],
53
+ "rules": [
54
+ {
55
+ "name": "anyUnknownInErrorContext",
56
+ "group": "correctness",
57
+ "description": "Detects 'any' or 'unknown' types in Effect error or requirements channels",
58
+ "defaultSeverity": "off",
59
+ "fixable": false,
60
+ "supportedEffect": [
61
+ "v3",
62
+ "v4"
63
+ ],
64
+ "codes": [
65
+ 377030
66
+ ],
67
+ "preview": {
68
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n yield* Effect.context\u003cunknown\u003e()\n return yield* Effect.fail\u003cany\u003e(\"boom\")\n})\n",
69
+ "diagnostics": [
70
+ {
71
+ "start": 46,
72
+ "end": 53,
73
+ "text": "This has unknown in the requirements channel and any in the error channel which is not recommended.\nOnly service identifiers should appear in the requirements channel.\nHaving an unknown or any error type is not useful. Consider instead using specific error types baked by Data.TaggedError for example. effect(anyUnknownInErrorContext)"
74
+ },
75
+ {
76
+ "start": 90,
77
+ "end": 115,
78
+ "text": "This has unknown in the requirements channel which is not recommended.\nOnly service identifiers should appear in the requirements channel. effect(anyUnknownInErrorContext)"
79
+ },
80
+ {
81
+ "start": 132,
82
+ "end": 156,
83
+ "text": "This has any in the error channel which is not recommended.\nHaving an unknown or any error type is not useful. Consider instead using specific error types baked by Data.TaggedError for example. effect(anyUnknownInErrorContext)"
84
+ }
85
+ ]
86
+ }
87
+ },
88
+ {
89
+ "name": "classSelfMismatch",
90
+ "group": "correctness",
91
+ "description": "Ensures Self type parameter matches the class name in Context/Service/Tag/Schema classes",
92
+ "defaultSeverity": "error",
93
+ "fixable": true,
94
+ "supportedEffect": [
95
+ "v3",
96
+ "v4"
97
+ ],
98
+ "codes": [
99
+ 377046
100
+ ],
101
+ "preview": {
102
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\ninterface ServiceShape { value: number }\n\nexport class InvalidContextTag\n extends Effect.Tag(\"ValidContextTag\")\u003cValidContextTag, ServiceShape\u003e() {}\n\ndeclare class ValidContextTag {}\n",
103
+ "diagnostics": [
104
+ {
105
+ "start": 154,
106
+ "end": 169,
107
+ "text": "The `Self` type parameter for this class should be `InvalidContextTag`. effect(classSelfMismatch)"
108
+ }
109
+ ]
110
+ }
111
+ },
112
+ {
113
+ "name": "duplicatePackage",
114
+ "group": "correctness",
115
+ "description": "Warns when multiple versions of an Effect-related package are detected in the program",
116
+ "defaultSeverity": "warning",
117
+ "fixable": false,
118
+ "supportedEffect": [
119
+ "v3",
120
+ "v4"
121
+ ],
122
+ "codes": [
123
+ 377051
124
+ ],
125
+ "preview": {
126
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\n// This preview only reports when the workspace resolves duplicated\n// Effect package versions.\nexport const preview = Effect.succeed(true)",
127
+ "diagnostics": []
128
+ }
129
+ },
130
+ {
131
+ "name": "effectFnImplicitAny",
132
+ "group": "correctness",
133
+ "description": "Mirrors noImplicitAny for unannotated Effect.fn, Effect.fnUntraced, and Effect.fnUntracedEager callback parameters when no outer contextual function type exists. Requires TS's noImplicitAny: true",
134
+ "defaultSeverity": "error",
135
+ "fixable": false,
136
+ "supportedEffect": [
137
+ "v3",
138
+ "v4"
139
+ ],
140
+ "codes": [
141
+ 377062
142
+ ],
143
+ "preview": {
144
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.fn(\"preview\")((input) =\u003e Effect.succeed(input))\n",
145
+ "diagnostics": [
146
+ {
147
+ "start": 78,
148
+ "end": 83,
149
+ "text": "Parameter `input` implicitly has type `any` in `Effect.fn`, `Effect.fnUntraced`, or `Effect.fnUntracedEager`. No parameter type is available from an explicit annotation or contextual function type. effect(effectFnImplicitAny)"
150
+ }
151
+ ]
152
+ }
153
+ },
154
+ {
155
+ "name": "floatingEffect",
156
+ "group": "correctness",
157
+ "description": "Detects Effect values that are neither yielded nor assigned",
158
+ "defaultSeverity": "error",
159
+ "fixable": false,
160
+ "supportedEffect": [
161
+ "v3",
162
+ "v4"
163
+ ],
164
+ "codes": [
165
+ 377001,
166
+ 377058
167
+ ],
168
+ "preview": {
169
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nEffect.log(\"forgotten\")\n",
170
+ "diagnostics": [
171
+ {
172
+ "start": 41,
173
+ "end": 64,
174
+ "text": "This Effect value is neither yielded nor used in an assignment. effect(floatingEffect)"
175
+ }
176
+ ]
177
+ }
178
+ },
179
+ {
180
+ "name": "genericEffectServices",
181
+ "group": "correctness",
182
+ "description": "Prevents services with type parameters that cannot be discriminated at runtime",
183
+ "defaultSeverity": "warning",
184
+ "fixable": false,
185
+ "supportedEffect": [
186
+ "v3",
187
+ "v4"
188
+ ],
189
+ "codes": [
190
+ 377043
191
+ ],
192
+ "preview": {
193
+ "sourceText": "import { Effect } from \"effect\"\n\nexport class Preview\u003c_A\u003e extends Effect.Service\u003cPreview\u003cany\u003e\u003e()(\"Preview\", {\n succeed: {}\n}) {}\n",
194
+ "diagnostics": [
195
+ {
196
+ "start": 46,
197
+ "end": 53,
198
+ "text": "Effect Services with type parameters are not supported because they cannot be properly discriminated at runtime, which may cause unexpected behavior. effect(genericEffectServices)"
199
+ }
200
+ ]
201
+ }
202
+ },
203
+ {
204
+ "name": "missingEffectContext",
205
+ "group": "correctness",
206
+ "description": "Detects Effect values with unhandled context requirements",
207
+ "defaultSeverity": "error",
208
+ "fixable": false,
209
+ "supportedEffect": [
210
+ "v3",
211
+ "v4"
212
+ ],
213
+ "codes": [
214
+ 377004
215
+ ],
216
+ "preview": {
217
+ "sourceText": "import { Effect, Context } from \"effect\"\n\nclass Db extends Context.Service\u003cDb\u003e()(\"Db\", { make: Effect.succeed({}) }) {}\n\n// @ts-expect-error\nexport const preview: Effect.Effect\u003cvoid\u003e = Db.pipe(Effect.asVoid)\n",
218
+ "diagnostics": [
219
+ {
220
+ "start": 154,
221
+ "end": 161,
222
+ "text": "This Effect requires a service that is missing from the expected Effect context: `Db`. effect(missingEffectContext)"
223
+ }
224
+ ]
225
+ }
226
+ },
227
+ {
228
+ "name": "missingEffectError",
229
+ "group": "correctness",
230
+ "description": "Detects Effect values with unhandled error types",
231
+ "defaultSeverity": "error",
232
+ "fixable": true,
233
+ "supportedEffect": [
234
+ "v3",
235
+ "v4"
236
+ ],
237
+ "codes": [
238
+ 377003
239
+ ],
240
+ "preview": {
241
+ "sourceText": "import type * as Effect from \"effect/Effect\"\nimport { Data } from \"effect\"\n\nclass Boom extends Data.TaggedError(\"Boom\")\u003c{}\u003e {}\ndeclare const effect: Effect.Effect\u003cnumber, Boom\u003e\n\n// @ts-expect-error\nexport const preview: () =\u003e Effect.Effect\u003cnumber\u003e = () =\u003e effect\n",
242
+ "diagnostics": [
243
+ {
244
+ "start": 256,
245
+ "end": 262,
246
+ "text": "Missing errors Boom in the expected Effect type. effect(missingEffectError)"
247
+ }
248
+ ]
249
+ }
250
+ },
251
+ {
252
+ "name": "missingLayerContext",
253
+ "group": "correctness",
254
+ "description": "Detects Layer values with unhandled context requirements",
255
+ "defaultSeverity": "error",
256
+ "fixable": false,
257
+ "supportedEffect": [
258
+ "v3",
259
+ "v4"
260
+ ],
261
+ "codes": [
262
+ 377034
263
+ ],
264
+ "preview": {
265
+ "sourceText": "import { Effect, Layer, Context } from \"effect\"\n\nclass A extends Context.Service\u003cA\u003e()(\"A\", { make: Effect.succeed({}) }) {\n static Default = Layer.effect(this, this.make)\n}\ndeclare const layer: Layer.Layer\u003cA, never, A\u003e\n// @ts-expect-error\nexport const preview: Layer.Layer\u003cA\u003e = layer\n",
266
+ "diagnostics": [
267
+ {
268
+ "start": 253,
269
+ "end": 260,
270
+ "text": "Missing 'A' in the expected Layer context. effect(missingLayerContext)"
271
+ }
272
+ ]
273
+ }
274
+ },
275
+ {
276
+ "name": "missingReturnYieldStar",
277
+ "group": "correctness",
278
+ "description": "Suggests using return yield* for Effects that never succeed",
279
+ "defaultSeverity": "error",
280
+ "fixable": true,
281
+ "supportedEffect": [
282
+ "v3",
283
+ "v4"
284
+ ],
285
+ "codes": [
286
+ 377006
287
+ ],
288
+ "preview": {
289
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview = Effect.gen(function*() {\n yield* Effect.log(\"before\")\n yield* Effect.fail(\"boom\")\n})\n",
290
+ "diagnostics": [
291
+ {
292
+ "start": 121,
293
+ "end": 126,
294
+ "text": "This Effect never succeeds; using `return yield*` preserves a definitive generator exit point for type narrowing and tooling support. effect(missingReturnYieldStar)"
295
+ }
296
+ ]
297
+ }
298
+ },
299
+ {
300
+ "name": "missingStarInYieldEffectGen",
301
+ "group": "correctness",
302
+ "description": "Detects bare yield (without *) inside Effect generator scopes",
303
+ "defaultSeverity": "error",
304
+ "fixable": true,
305
+ "supportedEffect": [
306
+ "v3",
307
+ "v4"
308
+ ],
309
+ "codes": [
310
+ 377007,
311
+ 377008
312
+ ],
313
+ "preview": {
314
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview = Effect.gen(function*() {\n const value = yield Effect.succeed(1)\n return value\n})\n",
315
+ "diagnostics": [
316
+ {
317
+ "start": 105,
318
+ "end": 110,
319
+ "text": "This uses `yield` for an `Effect` value. `yield*` is the Effect-aware form in this context. effect(missingStarInYieldEffectGen)"
320
+ }
321
+ ]
322
+ }
323
+ },
324
+ {
325
+ "name": "nonObjectEffectServiceType",
326
+ "group": "correctness",
327
+ "description": "Ensures Effect.Service types are objects, not primitives",
328
+ "defaultSeverity": "error",
329
+ "fixable": false,
330
+ "supportedEffect": [
331
+ "v3"
332
+ ],
333
+ "codes": [
334
+ 377048
335
+ ],
336
+ "preview": {
337
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport class BadService extends Effect.Service\u003cBadService\u003e()(\"BadService\", {\n // @ts-expect-error\n succeed: \"hello\" as const\n}) {}",
338
+ "diagnostics": [
339
+ {
340
+ "start": 142,
341
+ "end": 149,
342
+ "text": "`Effect.Service` is declared with a primitive service type. `Effect.Service` models object-shaped services; primitive values use `Context.Tag` or `Effect.Tag` directly. effect(nonObjectEffectServiceType)"
343
+ }
344
+ ]
345
+ }
346
+ },
347
+ {
348
+ "name": "outdatedApi",
349
+ "group": "correctness",
350
+ "description": "Detects usage of APIs that have been removed or renamed in Effect v4",
351
+ "defaultSeverity": "warning",
352
+ "fixable": false,
353
+ "supportedEffect": [
354
+ "v4"
355
+ ],
356
+ "codes": [
357
+ 377052,
358
+ 377053
359
+ ],
360
+ "preview": {
361
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n // @ts-expect-error\n return yield* Effect.runtime()\n})\n",
362
+ "diagnostics": [
363
+ {
364
+ "start": 0,
365
+ "end": 0,
366
+ "text": "This project targets Effect v4, but this code uses Effect v3 APIs. The referenced API belongs to the v3 surface rather than the configured v4 surface. effect(outdatedApi)"
367
+ },
368
+ {
369
+ "start": 126,
370
+ "end": 133,
371
+ "text": "This project targets Effect v4, but this code uses the Effect v3 API `runtime`. The referenced API belongs to the v3 surface rather than the configured v4 surface. Runtime has been removed in Effect v4. Use Effect.context to grab services and then run using Effect.runPromiseWith. effect(outdatedApi)"
372
+ }
373
+ ]
374
+ }
375
+ },
376
+ {
377
+ "name": "overriddenSchemaConstructor",
378
+ "group": "correctness",
379
+ "description": "Prevents overriding constructors in Schema classes which breaks decoding behavior",
380
+ "defaultSeverity": "error",
381
+ "fixable": true,
382
+ "supportedEffect": [
383
+ "v3",
384
+ "v4"
385
+ ],
386
+ "codes": [
387
+ 377044
388
+ ],
389
+ "preview": {
390
+ "sourceText": "import * as Schema from \"effect/Schema\"\n\nexport class User extends Schema.Class\u003cUser\u003e(\"User\")({ name: Schema.String }) {\n constructor(readonly input: { name: string }) { super(input) }\n}\n",
391
+ "diagnostics": [
392
+ {
393
+ "start": 123,
394
+ "end": 134,
395
+ "text": "This Schema subclass defines its own constructor. For Schema classes, constructor overrides break decoding behavior for the class shape. Custom construction can be expressed through a static `new` method instead. effect(overriddenSchemaConstructor)"
396
+ }
397
+ ]
398
+ }
399
+ },
400
+ {
401
+ "name": "catchUnfailableEffect",
402
+ "group": "antipattern",
403
+ "description": "Warns when using error handling on Effects that never fail",
404
+ "defaultSeverity": "suggestion",
405
+ "fixable": false,
406
+ "supportedEffect": [
407
+ "v3",
408
+ "v4"
409
+ ],
410
+ "codes": [
411
+ 377009
412
+ ],
413
+ "preview": {
414
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.succeed(1).pipe(\n Effect.catch(() =\u003e Effect.succeed(0))\n)\n",
415
+ "diagnostics": [
416
+ {
417
+ "start": 82,
418
+ "end": 94,
419
+ "text": "The previous Effect does not fail, so this error-handling branch will never run. effect(catchUnfailableEffect)"
420
+ }
421
+ ]
422
+ }
423
+ },
424
+ {
425
+ "name": "effectFnIife",
426
+ "group": "antipattern",
427
+ "description": "Effect.fn or Effect.fnUntraced is called as an IIFE; use Effect.gen instead",
428
+ "defaultSeverity": "warning",
429
+ "fixable": true,
430
+ "supportedEffect": [
431
+ "v3",
432
+ "v4"
433
+ ],
434
+ "codes": [
435
+ 377011
436
+ ],
437
+ "preview": {
438
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview = Effect.fn(\"preview\")(function*() {\n return yield* Effect.succeed(1)\n})()\n",
439
+ "diagnostics": [
440
+ {
441
+ "start": 64,
442
+ "end": 137,
443
+ "text": "`Effect.fn` returns a reusable function that can take arguments, but it is invoked immediately here. `Effect.gen` represents the immediate-use form for this pattern with Effect.withSpan(\"preview\") piped in the end to maintain tracing spans. effect(effectFnIife)"
444
+ }
445
+ ]
446
+ }
447
+ },
448
+ {
449
+ "name": "effectGenUsesAdapter",
450
+ "group": "antipattern",
451
+ "description": "Warns when using the deprecated adapter parameter in Effect.gen",
452
+ "defaultSeverity": "warning",
453
+ "fixable": false,
454
+ "supportedEffect": [
455
+ "v3",
456
+ "v4"
457
+ ],
458
+ "codes": [
459
+ 377027
460
+ ],
461
+ "preview": {
462
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview = Effect.gen(function*(_) {\n return yield* Effect.succeed(1)\n})\n",
463
+ "diagnostics": [
464
+ {
465
+ "start": 85,
466
+ "end": 86,
467
+ "text": "The adapter of Effect.gen is not required anymore, it is now just an alias of pipe. effect(effectGenUsesAdapter)"
468
+ }
469
+ ]
470
+ }
471
+ },
472
+ {
473
+ "name": "effectInFailure",
474
+ "group": "antipattern",
475
+ "description": "Warns when an Effect is used inside an Effect failure channel",
476
+ "defaultSeverity": "warning",
477
+ "fixable": false,
478
+ "supportedEffect": [
479
+ "v3",
480
+ "v4"
481
+ ],
482
+ "codes": [
483
+ 377054
484
+ ],
485
+ "preview": {
486
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.try({\n try: () =\u003e JSON.parse(\"{\"),\n catch: (error) =\u003e Effect.logError(error)\n})\n",
487
+ "diagnostics": [
488
+ {
489
+ "start": 46,
490
+ "end": 53,
491
+ "text": "The error channel contains an Effect (Effect\u003cvoid, never, never\u003e). Putting Effect computations in the failure channel is not intended; keep only failure types there. effect(effectInFailure)"
492
+ },
493
+ {
494
+ "start": 56,
495
+ "end": 144,
496
+ "text": "The error channel contains an Effect (Effect\u003cvoid, never, never\u003e). Putting Effect computations in the failure channel is not intended; keep only failure types there. effect(effectInFailure)"
497
+ }
498
+ ]
499
+ }
500
+ },
501
+ {
502
+ "name": "effectInVoidSuccess",
503
+ "group": "antipattern",
504
+ "description": "Detects nested Effects in void success channels that may cause unexecuted effects",
505
+ "defaultSeverity": "warning",
506
+ "fixable": false,
507
+ "supportedEffect": [
508
+ "v3",
509
+ "v4"
510
+ ],
511
+ "codes": [
512
+ 377020
513
+ ],
514
+ "preview": {
515
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview: Effect.Effect\u003cvoid\u003e = Effect.succeed(\n Effect.log(\"nested\")\n)\n",
516
+ "diagnostics": [
517
+ {
518
+ "start": 54,
519
+ "end": 61,
520
+ "text": "There is a nested 'Effect\u003cvoid, never, never\u003e' in the 'void' success channel, beware that this could lead to nested Effect\u003cEffect\u003c...\u003e\u003e that won't be executed. effect(effectInVoidSuccess)"
521
+ }
522
+ ]
523
+ }
524
+ },
525
+ {
526
+ "name": "globalErrorInEffectCatch",
527
+ "group": "antipattern",
528
+ "description": "Warns when catch callbacks return global Error type instead of typed errors",
529
+ "defaultSeverity": "warning",
530
+ "fixable": false,
531
+ "supportedEffect": [
532
+ "v3",
533
+ "v4"
534
+ ],
535
+ "codes": [
536
+ 377022
537
+ ],
538
+ "preview": {
539
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.tryPromise({\n try: async () =\u003e 1,\n catch: (error) =\u003e new Error(String(error))\n})\n",
540
+ "diagnostics": [
541
+ {
542
+ "start": 56,
543
+ "end": 73,
544
+ "text": "The `catch` callback in `Effect.tryPromise` returns the global `Error` type. Untagged errors merge together in the Effect error channel and lose type-level distinction; a tagged error preserves that distinction and can wrap the original error in a `cause` property. effect(globalErrorInEffectCatch)"
545
+ }
546
+ ]
547
+ }
548
+ },
549
+ {
550
+ "name": "globalErrorInEffectFailure",
551
+ "group": "antipattern",
552
+ "description": "Warns when the global Error type is used in an Effect failure channel",
553
+ "defaultSeverity": "warning",
554
+ "fixable": false,
555
+ "supportedEffect": [
556
+ "v3",
557
+ "v4"
558
+ ],
559
+ "codes": [
560
+ 377023
561
+ ],
562
+ "preview": {
563
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.fail(new Error(\"boom\"))\n",
564
+ "diagnostics": [
565
+ {
566
+ "start": 68,
567
+ "end": 85,
568
+ "text": "Global 'Error' loses type safety as untagged errors merge together in the Effect failure channel. Consider using a tagged error and optionally wrapping the original in a 'cause' property. effect(globalErrorInEffectFailure)"
569
+ }
570
+ ]
571
+ }
572
+ },
573
+ {
574
+ "name": "layerMergeAllWithDependencies",
575
+ "group": "antipattern",
576
+ "description": "Detects interdependencies in Layer.mergeAll calls where one layer provides a service that another layer requires",
577
+ "defaultSeverity": "warning",
578
+ "fixable": true,
579
+ "supportedEffect": [
580
+ "v3",
581
+ "v4"
582
+ ],
583
+ "codes": [
584
+ 377035
585
+ ],
586
+ "preview": {
587
+ "sourceText": "import { Effect, Layer, Context } from \"effect\"\n\nclass A extends Context.Service\u003cA\u003e()(\"A\", { make: Effect.succeed({}) }) {\n static Default = Layer.effect(this, this.make)\n}\nclass B extends Context.Service\u003cB\u003e()(\"B\", { make: Effect.as(A, {}) }) {\n static Default = Layer.effect(this, this.make)\n}\nexport const preview = Layer.mergeAll(A.Default, B.Default)\n",
588
+ "diagnostics": [
589
+ {
590
+ "start": 335,
591
+ "end": 344,
592
+ "text": "This layer provides A which is required by another layer in the same Layer.mergeAll call. Layer.mergeAll creates layers in parallel, so dependencies between layers will not be satisfied. Consider moving this layer into a Layer.provideMerge after the Layer.mergeAll. effect(layerMergeAllWithDependencies)"
593
+ }
594
+ ]
595
+ }
596
+ },
597
+ {
598
+ "name": "lazyEffect",
599
+ "group": "antipattern",
600
+ "description": "Suggests avoiding exported zero-argument functions and service members that lazily return Effect or Stream values",
601
+ "defaultSeverity": "suggestion",
602
+ "fixable": false,
603
+ "supportedEffect": [
604
+ "v4"
605
+ ],
606
+ "codes": [
607
+ 377091
608
+ ],
609
+ "preview": {
610
+ "sourceText": "import { Effect } from \"effect\"\n\nexport interface PreviewService {\n preview: () =\u003e Effect.Effect\u003cvoid\u003e\n}\n",
611
+ "diagnostics": [
612
+ {
613
+ "start": 69,
614
+ "end": 76,
615
+ "text": "Interface 'PreviewService' member 'preview' returns a lazy Effect. Effect is already lazy, so wrapping it in a zero-argument function adds unnecessary indirection. effect(lazyEffect)"
616
+ }
617
+ ]
618
+ }
619
+ },
620
+ {
621
+ "name": "lazyPromiseInEffectSync",
622
+ "group": "antipattern",
623
+ "description": "Warns when Effect.sync lazily returns a Promise instead of using an async Effect constructor",
624
+ "defaultSeverity": "warning",
625
+ "fixable": false,
626
+ "supportedEffect": [
627
+ "v3",
628
+ "v4"
629
+ ],
630
+ "codes": [
631
+ 377082
632
+ ],
633
+ "preview": {
634
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.sync(() =\u003e Promise.resolve(1))\n",
635
+ "diagnostics": [
636
+ {
637
+ "start": 68,
638
+ "end": 92,
639
+ "text": "This `Effect.sync` thunk returns a Promise. Use `Effect.promise` or `Effect.tryPromise` to represent async work. effect(lazyPromiseInEffectSync)"
640
+ }
641
+ ]
642
+ }
643
+ },
644
+ {
645
+ "name": "leakingRequirements",
646
+ "group": "antipattern",
647
+ "description": "Detects implementation services leaked in service methods",
648
+ "defaultSeverity": "suggestion",
649
+ "fixable": false,
650
+ "supportedEffect": [
651
+ "v3",
652
+ "v4"
653
+ ],
654
+ "codes": [
655
+ 377041
656
+ ],
657
+ "preview": {
658
+ "sourceText": "import type { Effect } from \"effect\"\nimport { Context } from \"effect\"\n\nclass FileSystem extends Context.Service\u003cFileSystem, {\n write: (s: string) =\u003e Effect.Effect\u003cvoid\u003e\n}\u003e()(\"FileSystem\") {}\n\nexport class Cache extends Context.Service\u003cCache, {\n read: Effect.Effect\u003cstring, never, FileSystem\u003e\n save: () =\u003e Effect.Effect\u003cvoid, never, FileSystem\u003e\n}\u003e()(\"Cache\") {}\n",
659
+ "diagnostics": [
660
+ {
661
+ "start": 206,
662
+ "end": 211,
663
+ "text": "Methods of this Service require `FileSystem` from every caller.\n\nThe requirement becomes part of the public service surface instead of remaining internal to Layer implementation.\n\nResolve these dependencies at Layer creation and provide them to each method, so the service's type reflects its purpose, not its implementation.\n\nTo suppress this diagnostic for specific dependency types that are intentionally passed through (e.g., HttpServerRequest), add `@effect-leakable-service` JSDoc to their interface declarations, or to this service by adding a `@effect-expect-leaking FileSystem` JSDoc.\n\nMore info and examples at https://effect.website/docs/requirements-management/layers/#avoiding-requirement-leakage effect(leakingRequirements)"
664
+ }
665
+ ]
666
+ }
667
+ },
668
+ {
669
+ "name": "multipleEffectProvide",
670
+ "group": "antipattern",
671
+ "description": "Warns against chaining Effect.provide calls which can cause service lifecycle issues",
672
+ "defaultSeverity": "warning",
673
+ "fixable": true,
674
+ "supportedEffect": [
675
+ "v3",
676
+ "v4"
677
+ ],
678
+ "codes": [
679
+ 377033
680
+ ],
681
+ "preview": {
682
+ "sourceText": "import { Effect, Layer, Context } from \"effect\"\n\nclass A extends Context.Service\u003cA\u003e()(\"A\", { make: Effect.succeed({}) }) {\n static Default = Layer.effect(this, this.make)\n}\nclass B extends Context.Service\u003cB\u003e()(\"B\", { make: Effect.succeed({}) }) {\n static Default = Layer.effect(this, this.make)\n}\nexport const preview = Effect.void.pipe(Effect.provide(A.Default), Effect.provide(B.Default))\n",
683
+ "diagnostics": [
684
+ {
685
+ "start": 339,
686
+ "end": 364,
687
+ "text": "This expression chains multiple `Effect.provide` calls. Providing Layers in multiple calls in a chain can break service lifecycle behavior compared with a single combined provide with merged layers. effect(multipleEffectProvide)"
688
+ }
689
+ ]
690
+ }
691
+ },
692
+ {
693
+ "name": "returnEffectInGen",
694
+ "group": "antipattern",
695
+ "description": "Warns when returning an Effect in a generator causes nested Effect\u003cEffect\u003c...\u003e\u003e",
696
+ "defaultSeverity": "suggestion",
697
+ "fixable": true,
698
+ "supportedEffect": [
699
+ "v3",
700
+ "v4"
701
+ ],
702
+ "codes": [
703
+ 377014
704
+ ],
705
+ "preview": {
706
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview = Effect.gen(function*() {\n return Effect.succeed(1)\n})\n",
707
+ "diagnostics": [
708
+ {
709
+ "start": 91,
710
+ "end": 97,
711
+ "text": "This generator returns an Effect-able value directly, which produces a nested `Effect\u003cEffect\u003c...\u003e\u003e`. If the intended result is the inner Effect value, `return yield*` represents that form. effect(returnEffectInGen)"
712
+ }
713
+ ]
714
+ }
715
+ },
716
+ {
717
+ "name": "runEffectInsideEffect",
718
+ "group": "antipattern",
719
+ "description": "Suggests using Runtime or Effect.run*With methods instead of Effect.run* inside Effect contexts",
720
+ "defaultSeverity": "suggestion",
721
+ "fixable": true,
722
+ "supportedEffect": [
723
+ "v3",
724
+ "v4"
725
+ ],
726
+ "codes": [
727
+ 377024,
728
+ 377025,
729
+ 377074
730
+ ],
731
+ "preview": {
732
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n const run = () =\u003e Effect.runSync(Effect.succeed(1))\n return run()\n})\n",
733
+ "diagnostics": [
734
+ {
735
+ "start": 101,
736
+ "end": 115,
737
+ "text": "`Effect.runSync` is called inside an Effect with a separate services invocation. In this context, child Effects run with the surrounding services, which can be accessed through `Effect.context` and `Effect.runSyncWith`. effect(runEffectInsideEffect)"
738
+ }
739
+ ]
740
+ }
741
+ },
742
+ {
743
+ "name": "schemaSyncInEffect",
744
+ "group": "antipattern",
745
+ "description": "Suggests using Effect-based Schema methods instead of sync methods inside Effect generators",
746
+ "defaultSeverity": "suggestion",
747
+ "fixable": false,
748
+ "supportedEffect": [
749
+ "v3"
750
+ ],
751
+ "codes": [
752
+ 377037
753
+ ],
754
+ "preview": {
755
+ "sourceText": "import * as Effect from \"effect/Effect\"\nimport * as Schema from \"effect/Schema\"\n\nconst Person = Schema.Struct({ name: Schema.String, age: Schema.Finite })\n\nexport const preview = Effect.gen(function*() {\n const input = yield* Effect.succeed({ name: \"Ada\", age: 1 })\n return Schema.decodeSync(Person)(input)\n})\n",
756
+ "diagnostics": [
757
+ {
758
+ "start": 276,
759
+ "end": 293,
760
+ "text": "`Schema.decodeSync` is used inside an Effect generator. `Schema.decode` preserves the typed Effect error channel for this operation without throwing. effect(schemaSyncInEffect)"
761
+ }
762
+ ]
763
+ }
764
+ },
765
+ {
766
+ "name": "scopeInLayerEffect",
767
+ "group": "antipattern",
768
+ "description": "Suggests using Layer.scoped instead of Layer.effect when Scope is in requirements",
769
+ "defaultSeverity": "warning",
770
+ "fixable": true,
771
+ "supportedEffect": [
772
+ "v3"
773
+ ],
774
+ "codes": [
775
+ 377031
776
+ ],
777
+ "preview": {
778
+ "sourceText": "import * as Context from \"effect/Context\"\nimport * as Effect from \"effect/Effect\"\nimport * as Layer from \"effect/Layer\"\n\nclass Cache extends Context.Tag(\"Cache\")\u003cCache, { ok: true }\u003e() {}\nexport const preview = Layer.effect(Cache, Effect.gen(function*() {\n yield* Effect.addFinalizer(() =\u003e Effect.void)\n return { ok: true as const }\n}))\n",
779
+ "diagnostics": [
780
+ {
781
+ "start": 211,
782
+ "end": 338,
783
+ "text": "This layer construction leaves `Scope` in the requirement set. The scoped API removes `Scope` from the resulting requirements. effect(scopeInLayerEffect)"
784
+ }
785
+ ]
786
+ }
787
+ },
788
+ {
789
+ "name": "strictEffectProvide",
790
+ "group": "antipattern",
791
+ "description": "Warns when using Effect.provide with layers outside of application entry points",
792
+ "defaultSeverity": "off",
793
+ "fixable": false,
794
+ "supportedEffect": [
795
+ "v3",
796
+ "v4"
797
+ ],
798
+ "codes": [
799
+ 377032
800
+ ],
801
+ "preview": {
802
+ "sourceText": "import { Effect, Layer, Context } from \"effect\"\n\nclass Config extends Context.Service\u003cConfig\u003e()(\"Config\", { make: Effect.succeed({}) }) {\n static Default = Layer.effect(this, this.make)\n}\nexport const preview = Effect.void.pipe(Effect.provide(Config.Default))\n",
803
+ "diagnostics": [
804
+ {
805
+ "start": 229,
806
+ "end": 259,
807
+ "text": "Effect.provide with a Layer should only be used at application entry points. If this is an entry point, you can safely disable this diagnostic. Otherwise, using Effect.provide may break scope lifetimes. Compose all layers at your entry point and provide them at once. effect(strictEffectProvide)"
808
+ }
809
+ ]
810
+ }
811
+ },
812
+ {
813
+ "name": "tryCatchInEffectGen",
814
+ "group": "antipattern",
815
+ "description": "Discourages try/catch in Effect generators in favor of Effect error handling",
816
+ "defaultSeverity": "suggestion",
817
+ "fixable": false,
818
+ "supportedEffect": [
819
+ "v3",
820
+ "v4"
821
+ ],
822
+ "codes": [
823
+ 377012
824
+ ],
825
+ "preview": {
826
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview = Effect.gen(function*() {\n try { return yield* Effect.succeed(1) }\n catch { return 0 }\n})\n",
827
+ "diagnostics": [
828
+ {
829
+ "start": 91,
830
+ "end": 151,
831
+ "text": "This Effect generator contains `try/catch`; in this context, error handling is expressed with Effect APIs such as Effect.try, Effect.tryPromise, Effect.catch, Effect.catchTag). effect(tryCatchInEffectGen)"
832
+ }
833
+ ]
834
+ }
835
+ },
836
+ {
837
+ "name": "unknownInEffectCatch",
838
+ "group": "antipattern",
839
+ "description": "Warns when catch callbacks return unknown instead of typed errors",
840
+ "defaultSeverity": "warning",
841
+ "fixable": false,
842
+ "supportedEffect": [
843
+ "v3",
844
+ "v4"
845
+ ],
846
+ "codes": [
847
+ 377021
848
+ ],
849
+ "preview": {
850
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.tryPromise({\n try: async () =\u003e 1,\n catch: (error) =\u003e error\n})\n",
851
+ "diagnostics": [
852
+ {
853
+ "start": 56,
854
+ "end": 73,
855
+ "text": "The `catch` callback in `Effect.tryPromise` returns `unknown`, so the Effect error type stays untyped. A specific typed error preserves error-channel information, for example by narrowing the value or wrapping it in `Data.TaggedError`. effect(unknownInEffectCatch)"
856
+ }
857
+ ]
858
+ }
859
+ },
860
+ {
861
+ "name": "asyncFunction",
862
+ "group": "effectNative",
863
+ "description": "Warns when declaring async functions and suggests using Effect values and Effect.gen for async control flow",
864
+ "defaultSeverity": "off",
865
+ "fixable": false,
866
+ "supportedEffect": [
867
+ "v3",
868
+ "v4"
869
+ ],
870
+ "codes": [
871
+ 377081
872
+ ],
873
+ "preview": {
874
+ "sourceText": "\nexport const preview = async () =\u003e {\n await Promise.resolve(1)\n}\n",
875
+ "diagnostics": [
876
+ {
877
+ "start": 24,
878
+ "end": 37,
879
+ "text": "This code declares an async function, consider representing this async control flow with Effect values and `Effect.gen`. effect(asyncFunction)"
880
+ }
881
+ ]
882
+ }
883
+ },
884
+ {
885
+ "name": "cryptoRandomUUID",
886
+ "group": "effectNative",
887
+ "description": "Warns when using crypto.randomUUID() outside Effect generators instead of the Effect Random module, which uses Effect-injected randomness rather than the crypto module behind the scenes",
888
+ "defaultSeverity": "off",
889
+ "fixable": false,
890
+ "supportedEffect": [
891
+ "v4"
892
+ ],
893
+ "codes": [
894
+ 377078
895
+ ],
896
+ "preview": {
897
+ "sourceText": "\nexport const preview = crypto.randomUUID()\n",
898
+ "diagnostics": [
899
+ {
900
+ "start": 24,
901
+ "end": 43,
902
+ "text": "This code uses `crypto.randomUUID()`, prefer the Effect `Random` module instead because it uses Effect-injected randomness rather than the `crypto` module behind the scenes. effect(cryptoRandomUUID)"
903
+ }
904
+ ]
905
+ }
906
+ },
907
+ {
908
+ "name": "cryptoRandomUUIDInEffect",
909
+ "group": "effectNative",
910
+ "description": "Warns when using crypto.randomUUID() inside Effect generators instead of the Effect Random module, which uses Effect-injected randomness rather than the crypto module behind the scenes",
911
+ "defaultSeverity": "off",
912
+ "fixable": false,
913
+ "supportedEffect": [
914
+ "v4"
915
+ ],
916
+ "codes": [
917
+ 377079
918
+ ],
919
+ "preview": {
920
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n return crypto.randomUUID()\n})\n",
921
+ "diagnostics": [
922
+ {
923
+ "start": 90,
924
+ "end": 109,
925
+ "text": "This Effect code uses `crypto.randomUUID()`, prefer the Effect `Random` module instead because it uses Effect-injected randomness rather than the `crypto` module behind the scenes. effect(cryptoRandomUUIDInEffect)"
926
+ }
927
+ ]
928
+ }
929
+ },
930
+ {
931
+ "name": "extendsNativeError",
932
+ "group": "effectNative",
933
+ "description": "Warns when a class directly extends the native Error class",
934
+ "defaultSeverity": "off",
935
+ "fixable": false,
936
+ "supportedEffect": [
937
+ "v3",
938
+ "v4"
939
+ ],
940
+ "codes": [
941
+ 377055
942
+ ],
943
+ "preview": {
944
+ "sourceText": "\nexport class PreviewError extends Error {}\n",
945
+ "diagnostics": [
946
+ {
947
+ "start": 14,
948
+ "end": 26,
949
+ "text": "This class extends the native `Error` type directly. Untagged native errors lose distinction in the Effect failure channel. effect(extendsNativeError)"
950
+ }
951
+ ]
952
+ }
953
+ },
954
+ {
955
+ "name": "globalConsole",
956
+ "group": "effectNative",
957
+ "description": "Warns when using console methods outside Effect generators instead of Effect.log/Logger",
958
+ "defaultSeverity": "off",
959
+ "fixable": false,
960
+ "supportedEffect": [
961
+ "v3",
962
+ "v4"
963
+ ],
964
+ "codes": [
965
+ 377064
966
+ ],
967
+ "preview": {
968
+ "sourceText": "\nconsole.log(\"preview\")\n",
969
+ "diagnostics": [
970
+ {
971
+ "start": 1,
972
+ "end": 23,
973
+ "text": "This code uses `console.log`, the corresponding Effect logging API is `Effect.log or Logger`. effect(globalConsole)"
974
+ }
975
+ ]
976
+ }
977
+ },
978
+ {
979
+ "name": "globalConsoleInEffect",
980
+ "group": "effectNative",
981
+ "description": "Warns when using console methods inside Effect generators instead of Effect.log/Logger",
982
+ "defaultSeverity": "off",
983
+ "fixable": false,
984
+ "supportedEffect": [
985
+ "v3",
986
+ "v4"
987
+ ],
988
+ "codes": [
989
+ 377065
990
+ ],
991
+ "preview": {
992
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n console.log(\"hello\")\n})\n",
993
+ "diagnostics": [
994
+ {
995
+ "start": 83,
996
+ "end": 103,
997
+ "text": "This Effect code uses `console.log`, logging in Effect code is represented through `Effect.log or Logger`. effect(globalConsoleInEffect)"
998
+ }
999
+ ]
1000
+ }
1001
+ },
1002
+ {
1003
+ "name": "globalDate",
1004
+ "group": "effectNative",
1005
+ "description": "Warns when using Date.now() or new Date() outside Effect generators instead of Clock/DateTime",
1006
+ "defaultSeverity": "off",
1007
+ "fixable": false,
1008
+ "supportedEffect": [
1009
+ "v3",
1010
+ "v4"
1011
+ ],
1012
+ "codes": [
1013
+ 377066,
1014
+ 377068
1015
+ ],
1016
+ "preview": {
1017
+ "sourceText": "\nexport const preview = Date.now()\n",
1018
+ "diagnostics": [
1019
+ {
1020
+ "start": 24,
1021
+ "end": 34,
1022
+ "text": "This code uses `Date.now()`, time access is represented through `Clock` from Effect. effect(globalDate)"
1023
+ }
1024
+ ]
1025
+ }
1026
+ },
1027
+ {
1028
+ "name": "globalDateInEffect",
1029
+ "group": "effectNative",
1030
+ "description": "Warns when using Date.now() or new Date() inside Effect generators instead of Clock/DateTime",
1031
+ "defaultSeverity": "off",
1032
+ "fixable": false,
1033
+ "supportedEffect": [
1034
+ "v3",
1035
+ "v4"
1036
+ ],
1037
+ "codes": [
1038
+ 377067,
1039
+ 377069
1040
+ ],
1041
+ "preview": {
1042
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n const now = Date.now()\n return now\n})\n",
1043
+ "diagnostics": [
1044
+ {
1045
+ "start": 95,
1046
+ "end": 105,
1047
+ "text": "This Effect code uses `Date.now()`, time access in Effect code is represented through `Clock` from Effect. effect(globalDateInEffect)"
1048
+ }
1049
+ ]
1050
+ }
1051
+ },
1052
+ {
1053
+ "name": "globalFetch",
1054
+ "group": "effectNative",
1055
+ "description": "Warns when using the global fetch function outside Effect generators instead of the Effect HTTP client",
1056
+ "defaultSeverity": "off",
1057
+ "fixable": false,
1058
+ "supportedEffect": [
1059
+ "v3",
1060
+ "v4"
1061
+ ],
1062
+ "codes": [
1063
+ 377061
1064
+ ],
1065
+ "preview": {
1066
+ "sourceText": "\nexport const preview = fetch(\"https://example.com\")\n",
1067
+ "diagnostics": [
1068
+ {
1069
+ "start": 24,
1070
+ "end": 29,
1071
+ "text": "This code uses the global `fetch` function, HTTP requests are represented through `HttpClient` from `@effect/platform`. effect(globalFetch)"
1072
+ }
1073
+ ]
1074
+ }
1075
+ },
1076
+ {
1077
+ "name": "globalFetchInEffect",
1078
+ "group": "effectNative",
1079
+ "description": "Warns when using the global fetch function inside Effect generators instead of the Effect HTTP client",
1080
+ "defaultSeverity": "off",
1081
+ "fixable": false,
1082
+ "supportedEffect": [
1083
+ "v3",
1084
+ "v4"
1085
+ ],
1086
+ "codes": [
1087
+ 377063
1088
+ ],
1089
+ "preview": {
1090
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n return yield* Effect.promise(() =\u003e fetch(\"https://example.com\"))\n})\n",
1091
+ "diagnostics": [
1092
+ {
1093
+ "start": 118,
1094
+ "end": 123,
1095
+ "text": "This Effect code calls the global `fetch` function, HTTP requests in Effect code are represented through `HttpClient` from `effect/unstable/http`. effect(globalFetchInEffect)"
1096
+ }
1097
+ ]
1098
+ }
1099
+ },
1100
+ {
1101
+ "name": "globalRandom",
1102
+ "group": "effectNative",
1103
+ "description": "Warns when using Math.random() outside Effect generators instead of the Random service",
1104
+ "defaultSeverity": "off",
1105
+ "fixable": false,
1106
+ "supportedEffect": [
1107
+ "v3",
1108
+ "v4"
1109
+ ],
1110
+ "codes": [
1111
+ 377070
1112
+ ],
1113
+ "preview": {
1114
+ "sourceText": "\nexport const preview = Math.random()\n",
1115
+ "diagnostics": [
1116
+ {
1117
+ "start": 24,
1118
+ "end": 37,
1119
+ "text": "This code uses `Math.random()`, randomness is represented through the Effect `Random` service. effect(globalRandom)"
1120
+ }
1121
+ ]
1122
+ }
1123
+ },
1124
+ {
1125
+ "name": "globalRandomInEffect",
1126
+ "group": "effectNative",
1127
+ "description": "Warns when using Math.random() inside Effect generators instead of the Random service",
1128
+ "defaultSeverity": "off",
1129
+ "fixable": false,
1130
+ "supportedEffect": [
1131
+ "v3",
1132
+ "v4"
1133
+ ],
1134
+ "codes": [
1135
+ 377071
1136
+ ],
1137
+ "preview": {
1138
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n const r = Math.random()\n return r\n})\n",
1139
+ "diagnostics": [
1140
+ {
1141
+ "start": 93,
1142
+ "end": 106,
1143
+ "text": "This Effect code uses `Math.random()`, randomness is represented through the Effect `Random` service. effect(globalRandomInEffect)"
1144
+ }
1145
+ ]
1146
+ }
1147
+ },
1148
+ {
1149
+ "name": "globalTimers",
1150
+ "group": "effectNative",
1151
+ "description": "Warns when using setTimeout/setInterval outside Effect generators instead of Effect.sleep/Schedule",
1152
+ "defaultSeverity": "off",
1153
+ "fixable": false,
1154
+ "supportedEffect": [
1155
+ "v3",
1156
+ "v4"
1157
+ ],
1158
+ "codes": [
1159
+ 377072
1160
+ ],
1161
+ "preview": {
1162
+ "sourceText": "\nsetTimeout(() =\u003e {}, 100)\n",
1163
+ "diagnostics": [
1164
+ {
1165
+ "start": 1,
1166
+ "end": 26,
1167
+ "text": "This code uses `setTimeout`, the corresponding Effect timer API is `Effect.sleep or Schedule` from Effect. effect(globalTimers)"
1168
+ }
1169
+ ]
1170
+ }
1171
+ },
1172
+ {
1173
+ "name": "globalTimersInEffect",
1174
+ "group": "effectNative",
1175
+ "description": "Warns when using setTimeout/setInterval inside Effect generators instead of Effect.sleep/Schedule",
1176
+ "defaultSeverity": "off",
1177
+ "fixable": false,
1178
+ "supportedEffect": [
1179
+ "v3",
1180
+ "v4"
1181
+ ],
1182
+ "codes": [
1183
+ 377073
1184
+ ],
1185
+ "preview": {
1186
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n setTimeout(() =\u003e {}, 100)\n})\n",
1187
+ "diagnostics": [
1188
+ {
1189
+ "start": 83,
1190
+ "end": 108,
1191
+ "text": "This Effect code uses `setTimeout`, the corresponding timer API in this context is `Effect.sleep or Schedule` from Effect. effect(globalTimersInEffect)"
1192
+ }
1193
+ ]
1194
+ }
1195
+ },
1196
+ {
1197
+ "name": "instanceOfSchema",
1198
+ "group": "effectNative",
1199
+ "description": "Suggests using Schema.is instead of instanceof for Effect Schema types",
1200
+ "defaultSeverity": "off",
1201
+ "fixable": true,
1202
+ "supportedEffect": [
1203
+ "v3",
1204
+ "v4"
1205
+ ],
1206
+ "codes": [
1207
+ 377042
1208
+ ],
1209
+ "preview": {
1210
+ "sourceText": "import { Schema } from \"effect\"\n\nclass User extends Schema.Class\u003cUser\u003e(\"User\")({ name: Schema.String }) {}\ndeclare const value: unknown\nexport const preview = value instanceof User\n",
1211
+ "diagnostics": [
1212
+ {
1213
+ "start": 159,
1214
+ "end": 180,
1215
+ "text": "This code uses `instanceof` with an Effect Schema type. `Schema.is` is the schema-aware runtime check for this case. effect(instanceOfSchema)"
1216
+ }
1217
+ ]
1218
+ }
1219
+ },
1220
+ {
1221
+ "name": "newPromise",
1222
+ "group": "effectNative",
1223
+ "description": "Warns when constructing promises with new Promise instead of using Effect APIs",
1224
+ "defaultSeverity": "off",
1225
+ "fixable": false,
1226
+ "supportedEffect": [
1227
+ "v3",
1228
+ "v4"
1229
+ ],
1230
+ "codes": [
1231
+ 377080
1232
+ ],
1233
+ "preview": {
1234
+ "sourceText": "\nexport const preview = new Promise\u003cnumber\u003e((resolve) =\u003e resolve(1))\n",
1235
+ "diagnostics": [
1236
+ {
1237
+ "start": 24,
1238
+ "end": 68,
1239
+ "text": "This code constructs `new Promise(...)`, prefer Effect APIs such as `Effect.async`, `Effect.promise`, or `Effect.tryPromise` instead of manual Promise construction. effect(newPromise)"
1240
+ }
1241
+ ]
1242
+ }
1243
+ },
1244
+ {
1245
+ "name": "nodeBuiltinImport",
1246
+ "group": "effectNative",
1247
+ "description": "Warns when importing Node.js built-in modules that have Effect-native counterparts",
1248
+ "defaultSeverity": "off",
1249
+ "fixable": false,
1250
+ "supportedEffect": [
1251
+ "v3",
1252
+ "v4"
1253
+ ],
1254
+ "codes": [
1255
+ 377057
1256
+ ],
1257
+ "preview": {
1258
+ "sourceText": "import fs from \"node:fs\"\n\nexport const preview = fs.readFileSync\n",
1259
+ "diagnostics": [
1260
+ {
1261
+ "start": 15,
1262
+ "end": 24,
1263
+ "text": "This module reference uses the `fs` module, the corresponding Effect API is `FileSystem` from `@effect/platform`. effect(nodeBuiltinImport)"
1264
+ }
1265
+ ]
1266
+ }
1267
+ },
1268
+ {
1269
+ "name": "preferSchemaOverJson",
1270
+ "group": "effectNative",
1271
+ "description": "Suggests using Effect Schema for JSON operations instead of JSON.parse/JSON.stringify",
1272
+ "defaultSeverity": "off",
1273
+ "fixable": false,
1274
+ "supportedEffect": [
1275
+ "v3",
1276
+ "v4"
1277
+ ],
1278
+ "codes": [
1279
+ 377026
1280
+ ],
1281
+ "preview": {
1282
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n const text = yield* Effect.succeed('{\"ok\":true}')\n return JSON.parse(text)\n})\n",
1283
+ "diagnostics": [
1284
+ {
1285
+ "start": 142,
1286
+ "end": 158,
1287
+ "text": "This code uses `JSON.parse` or `JSON.stringify`. Use `Schema.UnknownFromJsonString` for unknown shapes, `Schema.fromJsonString(schema)` for known ones, or `Schema.toCodecJson(schema)` when working with JSON values instead of strings. effect(preferSchemaOverJson)"
1288
+ }
1289
+ ]
1290
+ }
1291
+ },
1292
+ {
1293
+ "name": "processEnv",
1294
+ "group": "effectNative",
1295
+ "description": "Warns when reading process.env outside Effect generators instead of using Effect Config",
1296
+ "defaultSeverity": "off",
1297
+ "fixable": false,
1298
+ "supportedEffect": [
1299
+ "v3",
1300
+ "v4"
1301
+ ],
1302
+ "codes": [
1303
+ 377076
1304
+ ],
1305
+ "preview": {
1306
+ "sourceText": "/// \u003creference types=\"node\" /\u003e\n\nexport const preview = process.env.PORT\n",
1307
+ "diagnostics": [
1308
+ {
1309
+ "start": 55,
1310
+ "end": 71,
1311
+ "text": "This code reads from `process.env`, environment configuration is represented through `Config` from Effect. effect(processEnv)"
1312
+ }
1313
+ ]
1314
+ }
1315
+ },
1316
+ {
1317
+ "name": "processEnvInEffect",
1318
+ "group": "effectNative",
1319
+ "description": "Warns when reading process.env inside Effect generators instead of using Effect Config",
1320
+ "defaultSeverity": "off",
1321
+ "fixable": false,
1322
+ "supportedEffect": [
1323
+ "v3",
1324
+ "v4"
1325
+ ],
1326
+ "codes": [
1327
+ 377077
1328
+ ],
1329
+ "preview": {
1330
+ "sourceText": "/// \u003creference types=\"node\" /\u003e\nimport { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n return process.env.PORT\n})\n",
1331
+ "diagnostics": [
1332
+ {
1333
+ "start": 121,
1334
+ "end": 137,
1335
+ "text": "This Effect code reads from `process.env`, environment configuration in Effect code is represented through `Config` from Effect. effect(processEnvInEffect)"
1336
+ }
1337
+ ]
1338
+ }
1339
+ },
1340
+ {
1341
+ "name": "unsafeEffectTypeAssertion",
1342
+ "group": "effectNative",
1343
+ "description": "Detects unsafe type assertions that narrow Effect, Stream, or Layer error or requirements channels",
1344
+ "defaultSeverity": "off",
1345
+ "fixable": true,
1346
+ "supportedEffect": [
1347
+ "v3",
1348
+ "v4"
1349
+ ],
1350
+ "codes": [
1351
+ 377075
1352
+ ],
1353
+ "preview": {
1354
+ "sourceText": "import { Effect } from \"effect\"\n\ndeclare const program: Effect.Effect\u003cstring, \"boom\", \"service\"\u003e\n\nexport const preview = program as Effect.Effect\u003cstring, never, never\u003e\n",
1355
+ "diagnostics": [
1356
+ {
1357
+ "start": 121,
1358
+ "end": 167,
1359
+ "text": "This type assertion unsafely narrows the error or requirements channels. effect(unsafeEffectTypeAssertion)"
1360
+ }
1361
+ ]
1362
+ }
1363
+ },
1364
+ {
1365
+ "name": "catchAllToMapError",
1366
+ "group": "style",
1367
+ "description": "Suggests using Effect.mapError instead of Effect.catch + Effect.fail",
1368
+ "defaultSeverity": "suggestion",
1369
+ "fixable": true,
1370
+ "supportedEffect": [
1371
+ "v3",
1372
+ "v4"
1373
+ ],
1374
+ "codes": [
1375
+ 377010
1376
+ ],
1377
+ "preview": {
1378
+ "sourceText": "import { Effect } from \"effect\"\n\nclass WrappedError {\n constructor(readonly cause: unknown) {}\n}\n\nexport const preview = Effect.fail(\"boom\").pipe(\n Effect.catch((cause) =\u003e Effect.fail(new WrappedError(cause)))\n)\n",
1379
+ "diagnostics": [
1380
+ {
1381
+ "start": 150,
1382
+ "end": 162,
1383
+ "text": "`Effect.mapError` expresses the same error-type transformation more directly than `Effect.catch` followed by `Effect.fail`. effect(catchAllToMapError)"
1384
+ }
1385
+ ]
1386
+ }
1387
+ },
1388
+ {
1389
+ "name": "catchToOrElseSucceed",
1390
+ "group": "style",
1391
+ "description": "Suggests using Effect.orElseSucceed instead of Effect.catch + Effect.succeed",
1392
+ "defaultSeverity": "suggestion",
1393
+ "fixable": true,
1394
+ "supportedEffect": [
1395
+ "v3",
1396
+ "v4"
1397
+ ],
1398
+ "codes": [
1399
+ 377095
1400
+ ],
1401
+ "preview": {
1402
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const program = Effect.fail(\"error\").pipe(\n Effect.catch(() =\u003e Effect.succeed(42))\n)\n",
1403
+ "diagnostics": [
1404
+ {
1405
+ "start": 85,
1406
+ "end": 97,
1407
+ "text": "`Effect.orElseSucceed` expresses the same recovery more directly than `Effect.catch` followed by `Effect.succeed`. effect(catchToOrElseSucceed)"
1408
+ }
1409
+ ]
1410
+ }
1411
+ },
1412
+ {
1413
+ "name": "deterministicKeys",
1414
+ "group": "style",
1415
+ "description": "Enforces deterministic naming for service/tag/error identifiers based on class names",
1416
+ "defaultSeverity": "off",
1417
+ "fixable": true,
1418
+ "supportedEffect": [
1419
+ "v3",
1420
+ "v4"
1421
+ ],
1422
+ "codes": [
1423
+ 377049
1424
+ ],
1425
+ "preview": {
1426
+ "sourceText": "import { Context } from \"effect\"\n\nexport class RenamedService\n extends Context.Service\u003cRenamedService, {}\u003e()(\"CustomIdentifier\") {}\n",
1427
+ "diagnostics": [
1428
+ {
1429
+ "start": 110,
1430
+ "end": 128,
1431
+ "text": "This key does not match the deterministic key for this declaration. The expected key is `effect-v4-tests/preview/RenamedService`. effect(deterministicKeys)"
1432
+ }
1433
+ ]
1434
+ }
1435
+ },
1436
+ {
1437
+ "name": "effectDoNotation",
1438
+ "group": "style",
1439
+ "description": "Suggests using Effect.gen or Effect.fn instead of the Effect.Do notation helpers",
1440
+ "defaultSeverity": "off",
1441
+ "fixable": false,
1442
+ "supportedEffect": [
1443
+ "v3",
1444
+ "v4"
1445
+ ],
1446
+ "codes": [
1447
+ 377085
1448
+ ],
1449
+ "preview": {
1450
+ "sourceText": "import { Effect } from \"effect\"\nimport { pipe } from \"effect/Function\"\n\nexport const preview = pipe(\n Effect.Do,\n Effect.bind(\"a\", () =\u003e Effect.succeed(1)),\n Effect.let(\"b\", ({ a }) =\u003e a + 1),\n Effect.bind(\"c\", ({ b }) =\u003e Effect.succeed(b.toString()))\n)\n",
1451
+ "diagnostics": [
1452
+ {
1453
+ "start": 103,
1454
+ "end": 112,
1455
+ "text": "This uses the Effect do emulation. `Effect.gen` or `Effect.fn` achieve the same result with native JS scopes. effect(effectDoNotation)"
1456
+ }
1457
+ ]
1458
+ }
1459
+ },
1460
+ {
1461
+ "name": "effectFnOpportunity",
1462
+ "group": "style",
1463
+ "description": "Suggests using Effect.fn for functions that return an Effect",
1464
+ "defaultSeverity": "suggestion",
1465
+ "fixable": true,
1466
+ "supportedEffect": [
1467
+ "v3",
1468
+ "v4"
1469
+ ],
1470
+ "codes": [
1471
+ 377047
1472
+ ],
1473
+ "preview": {
1474
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview = () =\u003e Effect.gen(function*() {\n return yield* Effect.succeed(1)\n})\n",
1475
+ "diagnostics": [
1476
+ {
1477
+ "start": 54,
1478
+ "end": 61,
1479
+ "text": "This expression can be rewritten in the reusable function form `Effect.fn(function*() { ... })`. effect(effectFnOpportunity)"
1480
+ }
1481
+ ]
1482
+ }
1483
+ },
1484
+ {
1485
+ "name": "effectMapFlatten",
1486
+ "group": "style",
1487
+ "description": "Suggests using Effect.flatMap instead of Effect.map followed by Effect.flatten in piping flows",
1488
+ "defaultSeverity": "suggestion",
1489
+ "fixable": false,
1490
+ "supportedEffect": [
1491
+ "v3",
1492
+ "v4"
1493
+ ],
1494
+ "codes": [
1495
+ 377086
1496
+ ],
1497
+ "preview": {
1498
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.succeed(1).pipe(\n Effect.map((n) =\u003e Effect.succeed(n + 1)),\n Effect.flatten\n)\n",
1499
+ "diagnostics": [
1500
+ {
1501
+ "start": 126,
1502
+ "end": 140,
1503
+ "text": "`Effect.map` + `Effect.flatten` is the same as `Effect.flatMap` that expresses the same steps more directly. effect(effectMapFlatten)"
1504
+ }
1505
+ ]
1506
+ }
1507
+ },
1508
+ {
1509
+ "name": "effectMapVoid",
1510
+ "group": "style",
1511
+ "description": "Suggests using Effect.asVoid instead of Effect.map(() =\u003e void 0), Effect.map(() =\u003e undefined), or Effect.map(() =\u003e {})",
1512
+ "defaultSeverity": "suggestion",
1513
+ "fixable": true,
1514
+ "supportedEffect": [
1515
+ "v3",
1516
+ "v4"
1517
+ ],
1518
+ "codes": [
1519
+ 377018
1520
+ ],
1521
+ "preview": {
1522
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.succeed(1).pipe(\n Effect.map(() =\u003e undefined)\n)\n",
1523
+ "diagnostics": [
1524
+ {
1525
+ "start": 82,
1526
+ "end": 92,
1527
+ "text": "This expression discards the success value through mapping. `Effect.asVoid` represents that form directly. effect(effectMapVoid)"
1528
+ }
1529
+ ]
1530
+ }
1531
+ },
1532
+ {
1533
+ "name": "effectSucceedWithVoid",
1534
+ "group": "style",
1535
+ "description": "Suggests using Effect.void instead of Effect.succeed(undefined) or Effect.succeed(void 0)",
1536
+ "defaultSeverity": "suggestion",
1537
+ "fixable": true,
1538
+ "supportedEffect": [
1539
+ "v3",
1540
+ "v4"
1541
+ ],
1542
+ "codes": [
1543
+ 377016
1544
+ ],
1545
+ "preview": {
1546
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.succeed(undefined)\n",
1547
+ "diagnostics": [
1548
+ {
1549
+ "start": 56,
1550
+ "end": 81,
1551
+ "text": "`Effect.void` represents the same outcome as `Effect.succeed(undefined)` or `Effect.succeed(void 0)`. effect(effectSucceedWithVoid)"
1552
+ }
1553
+ ]
1554
+ }
1555
+ },
1556
+ {
1557
+ "name": "missedPipeableOpportunity",
1558
+ "group": "style",
1559
+ "description": "Suggests using .pipe() for nested function calls",
1560
+ "defaultSeverity": "off",
1561
+ "fixable": true,
1562
+ "supportedEffect": [
1563
+ "v3",
1564
+ "v4"
1565
+ ],
1566
+ "codes": [
1567
+ 377050
1568
+ ],
1569
+ "preview": {
1570
+ "sourceText": "import { identity, Schema } from \"effect\"\n\nconst User = Schema.Struct({ id: Schema.Finite })\nexport const preview = identity(identity(Schema.decodeEffect(User)({ id: 1 })))\n",
1571
+ "diagnostics": [
1572
+ {
1573
+ "start": 116,
1574
+ "end": 172,
1575
+ "text": "This nested call structure has a pipeable form. `Schema.decodeEffect(User)({ id: 1 }).pipe(...)` represents the same call sequence in pipe style and may be easier to read. effect(missedPipeableOpportunity)"
1576
+ }
1577
+ ]
1578
+ }
1579
+ },
1580
+ {
1581
+ "name": "missingEffectServiceDependency",
1582
+ "group": "style",
1583
+ "description": "Checks that Effect.Service dependencies satisfy all required layer inputs",
1584
+ "defaultSeverity": "off",
1585
+ "fixable": false,
1586
+ "supportedEffect": [
1587
+ "v3"
1588
+ ],
1589
+ "codes": [
1590
+ 377039,
1591
+ 377040
1592
+ ],
1593
+ "preview": {
1594
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nclass Db extends Effect.Service\u003cDb\u003e()(\"Db\", { succeed: { ok: true } }) {}\nexport class Repo extends Effect.Service\u003cRepo\u003e()(\"Repo\", {\n effect: Effect.gen(function*() {\n yield* Db\n return { all: Effect.succeed([] as Array\u003cnumber\u003e) }\n })\n}) {}",
1595
+ "diagnostics": [
1596
+ {
1597
+ "start": 128,
1598
+ "end": 132,
1599
+ "text": "Service 'Db' is required but not provided by dependencies. effect(missingEffectServiceDependency)"
1600
+ }
1601
+ ]
1602
+ }
1603
+ },
1604
+ {
1605
+ "name": "multipleCatchTag",
1606
+ "group": "style",
1607
+ "description": "Suggests collapsing consecutive Effect.catchTag transformations into a single Effect.catchTags call when semantics stay equivalent",
1608
+ "defaultSeverity": "suggestion",
1609
+ "fixable": false,
1610
+ "supportedEffect": [
1611
+ "v4"
1612
+ ],
1613
+ "codes": [
1614
+ 377092
1615
+ ],
1616
+ "preview": {
1617
+ "sourceText": "import { Data, Effect, pipe } from \"effect\"\n\nclass NotFound extends Data.TaggedError(\"NotFound\")\u003c{}\u003e {}\nclass Unauthorized extends Data.TaggedError(\"Unauthorized\")\u003c{}\u003e {}\n\ndeclare const program: Effect.Effect\u003cstring, NotFound | Unauthorized\u003e\n\nexport const preview = pipe(\n program,\n Effect.catchTag(\"NotFound\", () =\u003e Effect.succeed(\"missing\")),\n Effect.catchTag(\"Unauthorized\", () =\u003e Effect.succeed(\"denied\"))\n)\n",
1618
+ "diagnostics": [
1619
+ {
1620
+ "start": 285,
1621
+ "end": 300,
1622
+ "text": "These 2 consecutive `catchTag` transformations can be collapsed into a single `catchTags` call. effect(multipleCatchTag)"
1623
+ }
1624
+ ]
1625
+ }
1626
+ },
1627
+ {
1628
+ "name": "nestedEffectGenYield",
1629
+ "group": "style",
1630
+ "description": "Warns when yielding a nested bare Effect.gen inside an existing Effect generator context",
1631
+ "defaultSeverity": "off",
1632
+ "fixable": false,
1633
+ "supportedEffect": [
1634
+ "v3",
1635
+ "v4"
1636
+ ],
1637
+ "codes": [
1638
+ 377083
1639
+ ],
1640
+ "preview": {
1641
+ "sourceText": "import { Effect } from \"effect\"\n\nexport const preview = Effect.gen(function*() {\n\tyield* Effect.gen(function*() {\n\t\treturn 1\n\t})\n})\n",
1642
+ "diagnostics": [
1643
+ {
1644
+ "start": 89,
1645
+ "end": 128,
1646
+ "text": "This `yield*` is applied to a nested `Effect.gen(...)` that can be inlined in the parent Effect generator context. effect(nestedEffectGenYield)"
1647
+ }
1648
+ ]
1649
+ }
1650
+ },
1651
+ {
1652
+ "name": "newSchemaClass",
1653
+ "group": "style",
1654
+ "description": "Suggests using Schema make instead of new for Schema classes",
1655
+ "defaultSeverity": "off",
1656
+ "fixable": true,
1657
+ "supportedEffect": [
1658
+ "v4"
1659
+ ],
1660
+ "codes": [
1661
+ 377094
1662
+ ],
1663
+ "preview": {
1664
+ "sourceText": "import { Schema } from \"effect\"\n\nclass User extends Schema.Class\u003cUser\u003e(\"User\")({ name: Schema.String }) {}\n\nexport const preview = new User({ name: \"John\" })\n",
1665
+ "diagnostics": [
1666
+ {
1667
+ "start": 135,
1668
+ "end": 139,
1669
+ "text": "This Schema class is constructed with `new`. `User.make(...)` can be used to construct the Schema class instance. effect(newSchemaClass)"
1670
+ }
1671
+ ]
1672
+ }
1673
+ },
1674
+ {
1675
+ "name": "redundantMapError",
1676
+ "group": "style",
1677
+ "description": "Suggests hoisting a repeated trailing Effect.mapError from every yield in an Effect generator",
1678
+ "defaultSeverity": "suggestion",
1679
+ "fixable": false,
1680
+ "supportedEffect": [
1681
+ "v3",
1682
+ "v4"
1683
+ ],
1684
+ "codes": [
1685
+ 377088,
1686
+ 377089
1687
+ ],
1688
+ "preview": {
1689
+ "sourceText": "import { Effect } from \"effect\"\n\ndeclare const first: Effect.Effect\u003cnumber, unknown\u003e\ndeclare const second: Effect.Effect\u003cstring, unknown\u003e\n\nclass RepoError {\n constructor(readonly args: { cause: unknown }) {}\n}\n\nexport const program = Effect.gen(function*() {\n yield* first.pipe(\n Effect.mapError((cause) =\u003e new RepoError({ cause }))\n )\n\n return yield* second.pipe(\n Effect.mapError((cause) =\u003e new RepoError({ cause }))\n )\n})\n",
1690
+ "diagnostics": [
1691
+ {
1692
+ "start": 246,
1693
+ "end": 255,
1694
+ "text": "This generator applies the same inline `Effect.mapError(...)` to every yielded effect. Keep that `Effect.mapError(...)` inline and hoist it once to the generator result: `Effect.gen(...).pipe(Effect.mapError(...))`, or `Effect.fn(function*(){ ... }, Effect.mapError(...))`. effect(redundantMapError)"
1695
+ }
1696
+ ]
1697
+ }
1698
+ },
1699
+ {
1700
+ "name": "redundantOrDie",
1701
+ "group": "style",
1702
+ "description": "Suggests hoisting a repeated trailing Effect.orDie from every yield in an Effect generator",
1703
+ "defaultSeverity": "suggestion",
1704
+ "fixable": false,
1705
+ "supportedEffect": [
1706
+ "v3",
1707
+ "v4"
1708
+ ],
1709
+ "codes": [
1710
+ 377096,
1711
+ 377097
1712
+ ],
1713
+ "preview": {
1714
+ "sourceText": "import { Effect } from \"effect\"\n\ndeclare const first: Effect.Effect\u003cnumber, unknown\u003e\ndeclare const second: Effect.Effect\u003cstring, unknown\u003e\n\nexport const program = Effect.gen(function*() {\n yield* first.pipe(Effect.orDie)\n\n return yield* second.pipe(Effect.orDie)\n})\n",
1715
+ "diagnostics": [
1716
+ {
1717
+ "start": 173,
1718
+ "end": 182,
1719
+ "text": "This generator applies `Effect.orDie` to every yielded effect. Hoist it once to the generator result: `Effect.gen(...).pipe(Effect.orDie)`, or `Effect.fn(function*(){ ... }, Effect.orDie)`. effect(redundantOrDie)"
1720
+ }
1721
+ ]
1722
+ }
1723
+ },
1724
+ {
1725
+ "name": "redundantSchemaTagIdentifier",
1726
+ "group": "style",
1727
+ "description": "Suggests removing redundant identifier argument when it equals the tag value in Schema.TaggedClass/TaggedError/TaggedRequest",
1728
+ "defaultSeverity": "suggestion",
1729
+ "fixable": true,
1730
+ "supportedEffect": [
1731
+ "v3",
1732
+ "v4"
1733
+ ],
1734
+ "codes": [
1735
+ 377045
1736
+ ],
1737
+ "preview": {
1738
+ "sourceText": "import * as Schema from \"effect/Schema\"\n\nexport class Preview\n extends Schema.TaggedClass\u003cPreview\u003e(\"Preview\")(\"Preview\", {\n value: Schema.String\n }) {}\n",
1739
+ "diagnostics": [
1740
+ {
1741
+ "start": 100,
1742
+ "end": 109,
1743
+ "text": "Identifier 'Preview' is redundant since it equals the _tag value. effect(redundantSchemaTagIdentifier)"
1744
+ }
1745
+ ]
1746
+ }
1747
+ },
1748
+ {
1749
+ "name": "schemaNumber",
1750
+ "group": "style",
1751
+ "description": "Suggests Schema.Finite and Schema.FiniteFromString instead of Schema.Number APIs when describing domain numbers",
1752
+ "defaultSeverity": "suggestion",
1753
+ "fixable": true,
1754
+ "supportedEffect": [
1755
+ "v4"
1756
+ ],
1757
+ "codes": [
1758
+ 377098
1759
+ ],
1760
+ "preview": {
1761
+ "sourceText": "\nimport { Schema } from \"effect\"\n\nexport const User = Schema.Struct({\n age: Schema.Number,\n score: Schema.NumberFromString\n})\n",
1762
+ "diagnostics": [
1763
+ {
1764
+ "start": 84,
1765
+ "end": 90,
1766
+ "text": "This Schema number API accepts `NaN`, `Infinity`, and `-Infinity`. Use `Schema.Finite` for finite domain numbers. If non-finite values are intentional, disable this diagnostic for that line. effect(schemaNumber)"
1767
+ },
1768
+ {
1769
+ "start": 108,
1770
+ "end": 124,
1771
+ "text": "This Schema number API accepts `NaN`, `Infinity`, and `-Infinity`. Use `Schema.FiniteFromString` for finite domain numbers. If non-finite values are intentional, disable this diagnostic for that line. effect(schemaNumber)"
1772
+ }
1773
+ ]
1774
+ }
1775
+ },
1776
+ {
1777
+ "name": "schemaStructWithTag",
1778
+ "group": "style",
1779
+ "description": "Suggests using Schema.TaggedStruct instead of Schema.Struct with _tag field",
1780
+ "defaultSeverity": "suggestion",
1781
+ "fixable": true,
1782
+ "supportedEffect": [
1783
+ "v3",
1784
+ "v4"
1785
+ ],
1786
+ "codes": [
1787
+ 377036
1788
+ ],
1789
+ "preview": {
1790
+ "sourceText": "import * as Schema from \"effect/Schema\"\n\nexport const preview = Schema.Struct({\n _tag: Schema.Literal(\"User\"),\n name: Schema.String\n})\n",
1791
+ "diagnostics": [
1792
+ {
1793
+ "start": 64,
1794
+ "end": 136,
1795
+ "text": "This `Schema.Struct` includes a `_tag` field. `Schema.TaggedStruct` is the tagged-struct form for this pattern and makes the tag optional in the constructor. effect(schemaStructWithTag)"
1796
+ }
1797
+ ]
1798
+ }
1799
+ },
1800
+ {
1801
+ "name": "schemaUnionOfLiterals",
1802
+ "group": "style",
1803
+ "description": "Suggests combining multiple Schema.Literal calls in Schema.Union into a single Schema.Literal",
1804
+ "defaultSeverity": "off",
1805
+ "fixable": true,
1806
+ "supportedEffect": [
1807
+ "v3"
1808
+ ],
1809
+ "codes": [
1810
+ 377038
1811
+ ],
1812
+ "preview": {
1813
+ "sourceText": "import * as Schema from \"effect/Schema\"\n\nexport const preview = Schema.Union(Schema.Literal(\"a\"), Schema.Literal(\"b\"))",
1814
+ "diagnostics": [
1815
+ {
1816
+ "start": 64,
1817
+ "end": 118,
1818
+ "text": "This `Schema.Union` contains multiple `Schema.Literal` members and can be simplified to a single `Schema.Literal` call. effect(schemaUnionOfLiterals)"
1819
+ }
1820
+ ]
1821
+ }
1822
+ },
1823
+ {
1824
+ "name": "serviceNotAsClass",
1825
+ "group": "style",
1826
+ "description": "Warns when Context.Service is used as a variable instead of a class declaration",
1827
+ "defaultSeverity": "off",
1828
+ "fixable": true,
1829
+ "supportedEffect": [
1830
+ "v4"
1831
+ ],
1832
+ "codes": [
1833
+ 377056
1834
+ ],
1835
+ "preview": {
1836
+ "sourceText": "import { Context } from \"effect\"\n\nexport const Preview = Context.Service\u003c{ port: number }\u003e(\"Preview\")\n",
1837
+ "diagnostics": [
1838
+ {
1839
+ "start": 57,
1840
+ "end": 101,
1841
+ "text": "`Context.Service` is assigned to a variable here, but this API is intended for a class declaration shape such as `class Preview extends Context.Service\u003cPreview, { port: number }\u003e()(\"Preview\") {}`. effect(serviceNotAsClass)"
1842
+ }
1843
+ ]
1844
+ }
1845
+ },
1846
+ {
1847
+ "name": "strictBooleanExpressions",
1848
+ "group": "style",
1849
+ "description": "Enforces boolean types in conditional expressions for type safety",
1850
+ "defaultSeverity": "off",
1851
+ "fixable": false,
1852
+ "supportedEffect": [
1853
+ "v3",
1854
+ "v4"
1855
+ ],
1856
+ "codes": [
1857
+ 377029
1858
+ ],
1859
+ "preview": {
1860
+ "sourceText": "\ndeclare const value: string | undefined\nexport const preview = value ? 1 : 0\n",
1861
+ "diagnostics": [
1862
+ {
1863
+ "start": 64,
1864
+ "end": 69,
1865
+ "text": "Unexpected `string` type in condition, expected strictly a boolean instead. effect(strictBooleanExpressions)"
1866
+ },
1867
+ {
1868
+ "start": 64,
1869
+ "end": 69,
1870
+ "text": "Unexpected `undefined` type in condition, expected strictly a boolean instead. effect(strictBooleanExpressions)"
1871
+ }
1872
+ ]
1873
+ }
1874
+ },
1875
+ {
1876
+ "name": "unnecessaryArrowBlock",
1877
+ "group": "style",
1878
+ "description": "Suggests using a concise arrow body when the block only returns an expression",
1879
+ "defaultSeverity": "off",
1880
+ "fixable": true,
1881
+ "supportedEffect": [
1882
+ "v3",
1883
+ "v4"
1884
+ ],
1885
+ "codes": [
1886
+ 377084
1887
+ ],
1888
+ "preview": {
1889
+ "sourceText": "export const preview = (value: string) =\u003e {\n\treturn value.trim()\n}\n",
1890
+ "diagnostics": [
1891
+ {
1892
+ "start": 42,
1893
+ "end": 66,
1894
+ "text": "This arrow function block only returns an expression and can use a concise body. effect(unnecessaryArrowBlock)"
1895
+ }
1896
+ ]
1897
+ }
1898
+ },
1899
+ {
1900
+ "name": "unnecessaryEffectGen",
1901
+ "group": "style",
1902
+ "description": "Suggests removing Effect.gen when it contains only a single return statement",
1903
+ "defaultSeverity": "suggestion",
1904
+ "fixable": true,
1905
+ "supportedEffect": [
1906
+ "v3",
1907
+ "v4"
1908
+ ],
1909
+ "codes": [
1910
+ 377017
1911
+ ],
1912
+ "preview": {
1913
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview = Effect.gen(function*() {\n return yield* Effect.succeed(1)\n})\n",
1914
+ "diagnostics": [
1915
+ {
1916
+ "start": 64,
1917
+ "end": 125,
1918
+ "text": "This Effect.gen contains a single return statement. effect(unnecessaryEffectGen)"
1919
+ }
1920
+ ]
1921
+ }
1922
+ },
1923
+ {
1924
+ "name": "unnecessaryFailYieldableError",
1925
+ "group": "style",
1926
+ "description": "Suggests yielding yieldable errors directly instead of wrapping with Effect.fail",
1927
+ "defaultSeverity": "suggestion",
1928
+ "fixable": true,
1929
+ "supportedEffect": [
1930
+ "v3",
1931
+ "v4"
1932
+ ],
1933
+ "codes": [
1934
+ 377019
1935
+ ],
1936
+ "preview": {
1937
+ "sourceText": "import * as Data from \"effect/Data\"\nimport * as Effect from \"effect/Effect\"\n\nclass Boom extends Data.TaggedError(\"Boom\")\u003c{}\u003e {}\nexport const preview = Effect.gen(function*() {\n yield* Effect.fail(new Boom())\n})\n",
1938
+ "diagnostics": [
1939
+ {
1940
+ "start": 178,
1941
+ "end": 183,
1942
+ "text": "This `yield* Effect.fail(...)` passes a yieldable error value. `yield*` represents that value directly without wrapping it in `Effect.fail`. effect(unnecessaryFailYieldableError)"
1943
+ }
1944
+ ]
1945
+ }
1946
+ },
1947
+ {
1948
+ "name": "unnecessaryPipe",
1949
+ "group": "style",
1950
+ "description": "Removes pipe calls with no arguments",
1951
+ "defaultSeverity": "suggestion",
1952
+ "fixable": true,
1953
+ "supportedEffect": [
1954
+ "v3",
1955
+ "v4"
1956
+ ],
1957
+ "codes": [
1958
+ 377013
1959
+ ],
1960
+ "preview": {
1961
+ "sourceText": "import { pipe } from \"effect/Function\"\n\nexport const preview = pipe(1)\n",
1962
+ "diagnostics": [
1963
+ {
1964
+ "start": 63,
1965
+ "end": 70,
1966
+ "text": "This pipe call contains no arguments. effect(unnecessaryPipe)"
1967
+ }
1968
+ ]
1969
+ }
1970
+ },
1971
+ {
1972
+ "name": "unnecessaryPipeChain",
1973
+ "group": "style",
1974
+ "description": "Simplifies chained pipe calls into a single pipe call",
1975
+ "defaultSeverity": "suggestion",
1976
+ "fixable": true,
1977
+ "supportedEffect": [
1978
+ "v3",
1979
+ "v4"
1980
+ ],
1981
+ "codes": [
1982
+ 377015
1983
+ ],
1984
+ "preview": {
1985
+ "sourceText": "import * as Effect from \"effect/Effect\"\n\nexport const preview = Effect.succeed(1).pipe(Effect.asVoid).pipe(Effect.as(\"done\"))\n",
1986
+ "diagnostics": [
1987
+ {
1988
+ "start": 64,
1989
+ "end": 125,
1990
+ "text": "This expression contains chained `pipe` calls that can be simplified to a single `pipe` call. effect(unnecessaryPipeChain)"
1991
+ }
1992
+ ]
1993
+ }
1994
+ },
1995
+ {
1996
+ "name": "unnecessaryTypeofType",
1997
+ "group": "style",
1998
+ "description": "Suggests replacing typeof Schema.Type style annotations with the matching named type when available",
1999
+ "defaultSeverity": "suggestion",
2000
+ "fixable": true,
2001
+ "supportedEffect": [
2002
+ "v3",
2003
+ "v4"
2004
+ ],
2005
+ "codes": [
2006
+ 377090
2007
+ ],
2008
+ "preview": {
2009
+ "sourceText": "import { Schema } from \"effect\"\n\nexport namespace UsersRepo {\n export const User = Schema.Struct({ id: Schema.Finite })\n export type User = typeof User.Type\n}\n\nexport const preview: typeof UsersRepo.User.Type = { id: 1 }\n",
2010
+ "diagnostics": [
2011
+ {
2012
+ "start": 184,
2013
+ "end": 210,
2014
+ "text": "This `typeof ... .Type` query can be replaced with `UsersRepo.User`. effect(unnecessaryTypeofType)"
2015
+ }
2016
+ ]
2017
+ }
2018
+ }
2019
+ ]
2020
+ }