@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,2725 @@
1
+
2
+ // Code generated by _tools/gen_shims. DO NOT EDIT.
3
+
4
+ package ast
5
+
6
+ import "github.com/microsoft/typescript-go/internal/ast"
7
+ import "github.com/microsoft/typescript-go/internal/core"
8
+ import "github.com/microsoft/typescript-go/internal/diagnostics"
9
+ import "github.com/microsoft/typescript-go/internal/tspath"
10
+ import _ "unsafe"
11
+
12
+ type AbstractKeyword = ast.AbstractKeyword
13
+ type AccessExpression = ast.AccessExpression
14
+ type AccessKind = ast.AccessKind
15
+ const AccessKindRead = ast.AccessKindRead
16
+ const AccessKindReadWrite = ast.AccessKindReadWrite
17
+ const AccessKindWrite = ast.AccessKindWrite
18
+ type AccessorDeclaration = ast.AccessorDeclaration
19
+ type AccessorDeclarationBase = ast.AccessorDeclarationBase
20
+ type AccessorKeyword = ast.AccessorKeyword
21
+ type AdditiveOperator = ast.AdditiveOperator
22
+ type AdditiveOperatorOrHigher = ast.AdditiveOperatorOrHigher
23
+ type AllAccessorDeclarations = ast.AllAccessorDeclarations
24
+ type AnyImportOrRequireStatement = ast.AnyImportOrRequireStatement
25
+ type AnyImportSyntax = ast.AnyImportSyntax
26
+ type AnyValidImportOrReExport = ast.AnyValidImportOrReExport
27
+ type ArgumentList = ast.ArgumentList
28
+ type ArrayBindingElement = ast.ArrayBindingElement
29
+ type ArrayDestructuringAssignment = ast.ArrayDestructuringAssignment
30
+ type ArrayLiteralExpression = ast.ArrayLiteralExpression
31
+ type ArrayLiteralExpressionNode = ast.ArrayLiteralExpressionNode
32
+ type ArrayTypeNode = ast.ArrayTypeNode
33
+ type ArrayTypeNodeNode = ast.ArrayTypeNodeNode
34
+ type ArrowFunction = ast.ArrowFunction
35
+ type ArrowFunctionNode = ast.ArrowFunctionNode
36
+ type AsExpression = ast.AsExpression
37
+ type AsExpressionNode = ast.AsExpressionNode
38
+ type AssertKeyword = ast.AssertKeyword
39
+ type AssertionExpression = ast.AssertionExpression
40
+ type AssertsKeyword = ast.AssertsKeyword
41
+ type AssignmentOperator = ast.AssignmentOperator
42
+ type AssignmentOperatorOrHigher = ast.AssignmentOperatorOrHigher
43
+ type AssignmentOperatorToken = ast.AssignmentOperatorToken
44
+ type AsteriskToken = ast.AsteriskToken
45
+ type AsyncKeyword = ast.AsyncKeyword
46
+ type AwaitExpression = ast.AwaitExpression
47
+ type AwaitExpressionNode = ast.AwaitExpressionNode
48
+ type AwaitKeyword = ast.AwaitKeyword
49
+ type BigIntLiteral = ast.BigIntLiteral
50
+ type BigIntLiteralNode = ast.BigIntLiteralNode
51
+ type BinaryExpression = ast.BinaryExpression
52
+ type BinaryExpressionNode = ast.BinaryExpressionNode
53
+ type BinaryOperator = ast.BinaryOperator
54
+ type BinaryOperatorToken = ast.BinaryOperatorToken
55
+ type BindingElement = ast.BindingElement
56
+ type BindingElementList = ast.BindingElementList
57
+ type BindingElementNode = ast.BindingElementNode
58
+ type BindingName = ast.BindingName
59
+ type BindingPattern = ast.BindingPattern
60
+ type BindingPatternNode = ast.BindingPatternNode
61
+ type BitwiseOperator = ast.BitwiseOperator
62
+ type BitwiseOperatorOrHigher = ast.BitwiseOperatorOrHigher
63
+ type Block = ast.Block
64
+ type BlockNode = ast.BlockNode
65
+ type BlockOrExpression = ast.BlockOrExpression
66
+ type BodyBase = ast.BodyBase
67
+ type BooleanLiteral = ast.BooleanLiteral
68
+ type BreakOrContinueStatement = ast.BreakOrContinueStatement
69
+ type BreakStatement = ast.BreakStatement
70
+ type BreakStatementNode = ast.BreakStatementNode
71
+ type CallExpression = ast.CallExpression
72
+ type CallExpressionNode = ast.CallExpressionNode
73
+ type CallLikeExpression = ast.CallLikeExpression
74
+ type CallOrNewExpression = ast.CallOrNewExpression
75
+ type CallSignatureDeclaration = ast.CallSignatureDeclaration
76
+ type CallSignatureDeclarationNode = ast.CallSignatureDeclarationNode
77
+ //go:linkname CanHaveDecorators github.com/microsoft/typescript-go/internal/ast.CanHaveDecorators
78
+ func CanHaveDecorators(node *ast.Node) bool
79
+ //go:linkname CanHaveIllegalDecorators github.com/microsoft/typescript-go/internal/ast.CanHaveIllegalDecorators
80
+ func CanHaveIllegalDecorators(node *ast.Node) bool
81
+ //go:linkname CanHaveIllegalModifiers github.com/microsoft/typescript-go/internal/ast.CanHaveIllegalModifiers
82
+ func CanHaveIllegalModifiers(node *ast.Node) bool
83
+ //go:linkname CanHaveModifiers github.com/microsoft/typescript-go/internal/ast.CanHaveModifiers
84
+ func CanHaveModifiers(node *ast.Node) bool
85
+ //go:linkname CanHaveSymbol github.com/microsoft/typescript-go/internal/ast.CanHaveSymbol
86
+ func CanHaveSymbol(node *ast.Node) bool
87
+ type CaseBlock = ast.CaseBlock
88
+ type CaseBlockNode = ast.CaseBlockNode
89
+ type CaseClausesList = ast.CaseClausesList
90
+ type CaseKeyword = ast.CaseKeyword
91
+ type CaseOrDefaultClause = ast.CaseOrDefaultClause
92
+ type CaseOrDefaultClauseNode = ast.CaseOrDefaultClauseNode
93
+ type CatchClause = ast.CatchClause
94
+ type CatchClauseNode = ast.CatchClauseNode
95
+ type CheckFlags = ast.CheckFlags
96
+ const CheckFlagsContainsPrivate = ast.CheckFlagsContainsPrivate
97
+ const CheckFlagsContainsProtected = ast.CheckFlagsContainsProtected
98
+ const CheckFlagsContainsPublic = ast.CheckFlagsContainsPublic
99
+ const CheckFlagsContainsStatic = ast.CheckFlagsContainsStatic
100
+ const CheckFlagsDeferredType = ast.CheckFlagsDeferredType
101
+ const CheckFlagsHasLiteralType = ast.CheckFlagsHasLiteralType
102
+ const CheckFlagsHasNeverType = ast.CheckFlagsHasNeverType
103
+ const CheckFlagsHasNonUniformType = ast.CheckFlagsHasNonUniformType
104
+ const CheckFlagsIndexSymbol = ast.CheckFlagsIndexSymbol
105
+ const CheckFlagsInstantiated = ast.CheckFlagsInstantiated
106
+ const CheckFlagsIsDiscriminant = ast.CheckFlagsIsDiscriminant
107
+ const CheckFlagsIsDiscriminantComputed = ast.CheckFlagsIsDiscriminantComputed
108
+ const CheckFlagsLate = ast.CheckFlagsLate
109
+ const CheckFlagsMapped = ast.CheckFlagsMapped
110
+ const CheckFlagsNonUniformAndLiteral = ast.CheckFlagsNonUniformAndLiteral
111
+ const CheckFlagsNone = ast.CheckFlagsNone
112
+ const CheckFlagsOptionalParameter = ast.CheckFlagsOptionalParameter
113
+ const CheckFlagsPartial = ast.CheckFlagsPartial
114
+ const CheckFlagsReadPartial = ast.CheckFlagsReadPartial
115
+ const CheckFlagsReadonly = ast.CheckFlagsReadonly
116
+ const CheckFlagsRestParameter = ast.CheckFlagsRestParameter
117
+ const CheckFlagsReverseMapped = ast.CheckFlagsReverseMapped
118
+ const CheckFlagsStripOptional = ast.CheckFlagsStripOptional
119
+ const CheckFlagsSynthetic = ast.CheckFlagsSynthetic
120
+ const CheckFlagsSyntheticMethod = ast.CheckFlagsSyntheticMethod
121
+ const CheckFlagsSyntheticProperty = ast.CheckFlagsSyntheticProperty
122
+ const CheckFlagsUnresolved = ast.CheckFlagsUnresolved
123
+ const CheckFlagsWritePartial = ast.CheckFlagsWritePartial
124
+ type CheckJsDirective = ast.CheckJsDirective
125
+ //go:linkname ChildIsDecorated github.com/microsoft/typescript-go/internal/ast.ChildIsDecorated
126
+ func ChildIsDecorated(useLegacyDecorators bool, node *ast.Node, parent *ast.Node) bool
127
+ type ClassDeclaration = ast.ClassDeclaration
128
+ type ClassDeclarationNode = ast.ClassDeclarationNode
129
+ type ClassElement = ast.ClassElement
130
+ type ClassElementBase = ast.ClassElementBase
131
+ type ClassElementList = ast.ClassElementList
132
+ //go:linkname ClassElementOrClassElementParameterIsDecorated github.com/microsoft/typescript-go/internal/ast.ClassElementOrClassElementParameterIsDecorated
133
+ func ClassElementOrClassElementParameterIsDecorated(useLegacyDecorators bool, node *ast.Node, parent *ast.Node) bool
134
+ type ClassExpression = ast.ClassExpression
135
+ type ClassExpressionNode = ast.ClassExpressionNode
136
+ type ClassLikeBase = ast.ClassLikeBase
137
+ type ClassLikeDeclaration = ast.ClassLikeDeclaration
138
+ //go:linkname ClassOrConstructorParameterIsDecorated github.com/microsoft/typescript-go/internal/ast.ClassOrConstructorParameterIsDecorated
139
+ func ClassOrConstructorParameterIsDecorated(useLegacyDecorators bool, node *ast.Node) bool
140
+ type ClassStaticBlockDeclaration = ast.ClassStaticBlockDeclaration
141
+ type ClassStaticBlockDeclarationNode = ast.ClassStaticBlockDeclarationNode
142
+ //go:linkname ClimbPastPropertyAccess github.com/microsoft/typescript-go/internal/ast.ClimbPastPropertyAccess
143
+ func ClimbPastPropertyAccess(node *ast.Node) *ast.Node
144
+ type ColonToken = ast.ColonToken
145
+ type CommentDirective = ast.CommentDirective
146
+ type CommentDirectiveKind = ast.CommentDirectiveKind
147
+ const CommentDirectiveKindExpectError = ast.CommentDirectiveKindExpectError
148
+ const CommentDirectiveKindIgnore = ast.CommentDirectiveKindIgnore
149
+ const CommentDirectiveKindUnknown = ast.CommentDirectiveKindUnknown
150
+ type CommentRange = ast.CommentRange
151
+ //go:linkname CompareDiagnostics github.com/microsoft/typescript-go/internal/ast.CompareDiagnostics
152
+ func CompareDiagnostics(d1 *ast.Diagnostic, d2 *ast.Diagnostic) int
153
+ //go:linkname CompareNodePositions github.com/microsoft/typescript-go/internal/ast.CompareNodePositions
154
+ func CompareNodePositions(n1 *ast.Node, n2 *ast.Node) int
155
+ type CompositeBase = ast.CompositeBase
156
+ type CompoundAssignmentOperator = ast.CompoundAssignmentOperator
157
+ //go:linkname ComputePositionMap github.com/microsoft/typescript-go/internal/ast.ComputePositionMap
158
+ func ComputePositionMap(text string) *ast.PositionMap
159
+ type ComputedPropertyName = ast.ComputedPropertyName
160
+ type ComputedPropertyNameNode = ast.ComputedPropertyNameNode
161
+ type ConciseBody = ast.ConciseBody
162
+ type ConditionalExpression = ast.ConditionalExpression
163
+ type ConditionalExpressionNode = ast.ConditionalExpressionNode
164
+ type ConditionalTypeNode = ast.ConditionalTypeNode
165
+ type ConditionalTypeNodeNode = ast.ConditionalTypeNodeNode
166
+ type ConstKeyword = ast.ConstKeyword
167
+ type ConstructSignatureDeclaration = ast.ConstructSignatureDeclaration
168
+ type ConstructSignatureDeclarationNode = ast.ConstructSignatureDeclarationNode
169
+ type ConstructorDeclaration = ast.ConstructorDeclaration
170
+ type ConstructorDeclarationNode = ast.ConstructorDeclarationNode
171
+ type ConstructorTypeNode = ast.ConstructorTypeNode
172
+ type ConstructorTypeNodeNode = ast.ConstructorTypeNodeNode
173
+ //go:linkname ContainsObjectRestOrSpread github.com/microsoft/typescript-go/internal/ast.ContainsObjectRestOrSpread
174
+ func ContainsObjectRestOrSpread(node *ast.Node) bool
175
+ type ContinueStatement = ast.ContinueStatement
176
+ type ContinueStatementNode = ast.ContinueStatementNode
177
+ //go:linkname CreateModifiersFromModifierFlags github.com/microsoft/typescript-go/internal/ast.CreateModifiersFromModifierFlags
178
+ func CreateModifiersFromModifierFlags(flags ast.ModifierFlags, createModifier func(kind ast.Kind) *ast.Node) []*ast.Node
179
+ type DebuggerStatement = ast.DebuggerStatement
180
+ type DebuggerStatementNode = ast.DebuggerStatementNode
181
+ type Declaration = ast.Declaration
182
+ type DeclarationBase = ast.DeclarationBase
183
+ type DeclarationName = ast.DeclarationName
184
+ type DeclareKeyword = ast.DeclareKeyword
185
+ type Decorator = ast.Decorator
186
+ type DecoratorNode = ast.DecoratorNode
187
+ type DefaultKeyword = ast.DefaultKeyword
188
+ type DeleteExpression = ast.DeleteExpression
189
+ type DeleteExpressionNode = ast.DeleteExpressionNode
190
+ type DestructuringAssignment = ast.DestructuringAssignment
191
+ type Diagnostic = ast.Diagnostic
192
+ type DiagnosticsCollection = ast.DiagnosticsCollection
193
+ type DoStatement = ast.DoStatement
194
+ type DoStatementNode = ast.DoStatementNode
195
+ type DotDotDotToken = ast.DotDotDotToken
196
+ type DotToken = ast.DotToken
197
+ type ElementAccessExpression = ast.ElementAccessExpression
198
+ type ElementAccessExpressionNode = ast.ElementAccessExpressionNode
199
+ type ElementList = ast.ElementList
200
+ type EmptyStatement = ast.EmptyStatement
201
+ type EmptyStatementNode = ast.EmptyStatementNode
202
+ type EndOfFile = ast.EndOfFile
203
+ type EntityName = ast.EntityName
204
+ //go:linkname EntityNameToString github.com/microsoft/typescript-go/internal/ast.EntityNameToString
205
+ func EntityNameToString(name *ast.Node, getTextOfNode func(*ast.Node) string) string
206
+ type EnumDeclaration = ast.EnumDeclaration
207
+ type EnumDeclarationNode = ast.EnumDeclarationNode
208
+ type EnumMember = ast.EnumMember
209
+ type EnumMemberList = ast.EnumMemberList
210
+ type EnumMemberNode = ast.EnumMemberNode
211
+ //go:linkname EqualDiagnostics github.com/microsoft/typescript-go/internal/ast.EqualDiagnostics
212
+ func EqualDiagnostics(d1 *ast.Diagnostic, d2 *ast.Diagnostic) bool
213
+ //go:linkname EqualDiagnosticsNoRelatedInfo github.com/microsoft/typescript-go/internal/ast.EqualDiagnosticsNoRelatedInfo
214
+ func EqualDiagnosticsNoRelatedInfo(d1 *ast.Diagnostic, d2 *ast.Diagnostic) bool
215
+ type EqualityOperator = ast.EqualityOperator
216
+ type EqualityOperatorOrHigher = ast.EqualityOperatorOrHigher
217
+ type EqualsGreaterThanToken = ast.EqualsGreaterThanToken
218
+ type EqualsToken = ast.EqualsToken
219
+ //go:linkname EscapeAllInternalSymbolNames github.com/microsoft/typescript-go/internal/ast.EscapeAllInternalSymbolNames
220
+ func EscapeAllInternalSymbolNames(name string) string
221
+ type ExclamationToken = ast.ExclamationToken
222
+ type ExponentiationOperator = ast.ExponentiationOperator
223
+ type ExportAssignment = ast.ExportAssignment
224
+ type ExportAssignmentNode = ast.ExportAssignmentNode
225
+ type ExportDeclaration = ast.ExportDeclaration
226
+ type ExportDeclarationNode = ast.ExportDeclarationNode
227
+ type ExportKeyword = ast.ExportKeyword
228
+ type ExportSpecifier = ast.ExportSpecifier
229
+ type ExportSpecifierList = ast.ExportSpecifierList
230
+ type ExportSpecifierNode = ast.ExportSpecifierNode
231
+ type ExportableBase = ast.ExportableBase
232
+ type Expression = ast.Expression
233
+ type ExpressionBase = ast.ExpressionBase
234
+ //go:linkname ExpressionIsAlias github.com/microsoft/typescript-go/internal/ast.ExpressionIsAlias
235
+ func ExpressionIsAlias(node *ast.Node) bool
236
+ type ExpressionStatement = ast.ExpressionStatement
237
+ type ExpressionStatementNode = ast.ExpressionStatementNode
238
+ type ExpressionWithTypeArguments = ast.ExpressionWithTypeArguments
239
+ type ExpressionWithTypeArgumentsList = ast.ExpressionWithTypeArgumentsList
240
+ type ExpressionWithTypeArgumentsNode = ast.ExpressionWithTypeArgumentsNode
241
+ type ExternalModuleIndicatorOptions = ast.ExternalModuleIndicatorOptions
242
+ type ExternalModuleReference = ast.ExternalModuleReference
243
+ type ExternalModuleReferenceNode = ast.ExternalModuleReferenceNode
244
+ type FalseLiteral = ast.FalseLiteral
245
+ type FileReference = ast.FileReference
246
+ //go:linkname FindAncestor github.com/microsoft/typescript-go/internal/ast.FindAncestor
247
+ func FindAncestor(node *ast.Node, callback func(*ast.Node) bool) *ast.Node
248
+ const FindAncestorFalse = ast.FindAncestorFalse
249
+ //go:linkname FindAncestorKind github.com/microsoft/typescript-go/internal/ast.FindAncestorKind
250
+ func FindAncestorKind(node *ast.Node, kind ast.Kind) *ast.Node
251
+ //go:linkname FindAncestorOrQuit github.com/microsoft/typescript-go/internal/ast.FindAncestorOrQuit
252
+ func FindAncestorOrQuit(node *ast.Node, callback func(*ast.Node) ast.FindAncestorResult) *ast.Node
253
+ const FindAncestorQuit = ast.FindAncestorQuit
254
+ type FindAncestorResult = ast.FindAncestorResult
255
+ const FindAncestorTrue = ast.FindAncestorTrue
256
+ //go:linkname FindConstructorDeclaration github.com/microsoft/typescript-go/internal/ast.FindConstructorDeclaration
257
+ func FindConstructorDeclaration(node *ast.ClassLikeDeclaration) *ast.Node
258
+ //go:linkname FindLastVisibleNode github.com/microsoft/typescript-go/internal/ast.FindLastVisibleNode
259
+ func FindLastVisibleNode(nodes []*ast.Node) *ast.Node
260
+ type FlowFlags = ast.FlowFlags
261
+ const FlowFlagsArrayMutation = ast.FlowFlagsArrayMutation
262
+ const FlowFlagsAssignment = ast.FlowFlagsAssignment
263
+ const FlowFlagsBranchLabel = ast.FlowFlagsBranchLabel
264
+ const FlowFlagsCall = ast.FlowFlagsCall
265
+ const FlowFlagsCondition = ast.FlowFlagsCondition
266
+ const FlowFlagsFalseCondition = ast.FlowFlagsFalseCondition
267
+ const FlowFlagsLabel = ast.FlowFlagsLabel
268
+ const FlowFlagsLoopLabel = ast.FlowFlagsLoopLabel
269
+ const FlowFlagsReduceLabel = ast.FlowFlagsReduceLabel
270
+ const FlowFlagsReferenced = ast.FlowFlagsReferenced
271
+ const FlowFlagsShared = ast.FlowFlagsShared
272
+ const FlowFlagsStart = ast.FlowFlagsStart
273
+ const FlowFlagsSwitchClause = ast.FlowFlagsSwitchClause
274
+ const FlowFlagsTrueCondition = ast.FlowFlagsTrueCondition
275
+ const FlowFlagsUnreachable = ast.FlowFlagsUnreachable
276
+ type FlowLabel = ast.FlowLabel
277
+ type FlowList = ast.FlowList
278
+ type FlowNode = ast.FlowNode
279
+ type FlowNodeBase = ast.FlowNodeBase
280
+ type FlowReduceLabelData = ast.FlowReduceLabelData
281
+ type FlowSwitchClauseData = ast.FlowSwitchClauseData
282
+ //go:linkname ForEachChildAndJSDoc github.com/microsoft/typescript-go/internal/ast.ForEachChildAndJSDoc
283
+ func ForEachChildAndJSDoc(node *ast.Node, sourceFile *ast.SourceFile, v ast.Visitor) bool
284
+ //go:linkname ForEachDynamicImportOrRequireCall github.com/microsoft/typescript-go/internal/ast.ForEachDynamicImportOrRequireCall
285
+ func ForEachDynamicImportOrRequireCall(file *ast.SourceFile, includeTypeSpaceImports bool, requireStringLiteralLikeArgument bool, cb func(node *ast.Node, argument *ast.Expression) bool) bool
286
+ //go:linkname ForEachReturnStatement github.com/microsoft/typescript-go/internal/ast.ForEachReturnStatement
287
+ func ForEachReturnStatement(body *ast.Node, visitor func(stmt *ast.Node) bool) bool
288
+ type ForInOrOfStatement = ast.ForInOrOfStatement
289
+ type ForInOrOfStatementNode = ast.ForInOrOfStatementNode
290
+ type ForInitializer = ast.ForInitializer
291
+ type ForStatement = ast.ForStatement
292
+ type ForStatementNode = ast.ForStatementNode
293
+ type FunctionBody = ast.FunctionBody
294
+ type FunctionDeclaration = ast.FunctionDeclaration
295
+ type FunctionDeclarationNode = ast.FunctionDeclarationNode
296
+ type FunctionExpression = ast.FunctionExpression
297
+ type FunctionExpressionNode = ast.FunctionExpressionNode
298
+ type FunctionFlags = ast.FunctionFlags
299
+ const FunctionFlagsAsync = ast.FunctionFlagsAsync
300
+ const FunctionFlagsAsyncGenerator = ast.FunctionFlagsAsyncGenerator
301
+ const FunctionFlagsGenerator = ast.FunctionFlagsGenerator
302
+ const FunctionFlagsInvalid = ast.FunctionFlagsInvalid
303
+ const FunctionFlagsNormal = ast.FunctionFlagsNormal
304
+ type FunctionLikeBase = ast.FunctionLikeBase
305
+ type FunctionLikeDeclaration = ast.FunctionLikeDeclaration
306
+ type FunctionLikeWithBodyBase = ast.FunctionLikeWithBodyBase
307
+ type FunctionOrConstructorTypeNodeBase = ast.FunctionOrConstructorTypeNodeBase
308
+ type FunctionTypeNode = ast.FunctionTypeNode
309
+ type FunctionTypeNodeNode = ast.FunctionTypeNodeNode
310
+ type GetAccessorDeclaration = ast.GetAccessorDeclaration
311
+ type GetAccessorDeclarationNode = ast.GetAccessorDeclarationNode
312
+ //go:linkname GetAllAccessorDeclarations github.com/microsoft/typescript-go/internal/ast.GetAllAccessorDeclarations
313
+ func GetAllAccessorDeclarations(parentDeclarations []*ast.Node, accessor *ast.AccessorDeclaration) ast.AllAccessorDeclarations
314
+ //go:linkname GetAllAccessorDeclarationsForDeclaration github.com/microsoft/typescript-go/internal/ast.GetAllAccessorDeclarationsForDeclaration
315
+ func GetAllAccessorDeclarationsForDeclaration(accessor *ast.AccessorDeclaration, declarationsOfSymbol []*ast.Node) ast.AllAccessorDeclarations
316
+ //go:linkname GetAssignedName github.com/microsoft/typescript-go/internal/ast.GetAssignedName
317
+ func GetAssignedName(node *ast.Node) *ast.Node
318
+ //go:linkname GetAssignmentDeclarationKind github.com/microsoft/typescript-go/internal/ast.GetAssignmentDeclarationKind
319
+ func GetAssignmentDeclarationKind(node *ast.Node) ast.JSDeclarationKind
320
+ //go:linkname GetAssignmentTarget github.com/microsoft/typescript-go/internal/ast.GetAssignmentTarget
321
+ func GetAssignmentTarget(node *ast.Node) *ast.Node
322
+ //go:linkname GetBinaryOperatorPrecedence github.com/microsoft/typescript-go/internal/ast.GetBinaryOperatorPrecedence
323
+ func GetBinaryOperatorPrecedence(operatorKind ast.Kind) ast.OperatorPrecedence
324
+ //go:linkname GetClassExtendsHeritageElement github.com/microsoft/typescript-go/internal/ast.GetClassExtendsHeritageElement
325
+ func GetClassExtendsHeritageElement(node *ast.Node) *ast.ExpressionWithTypeArgumentsNode
326
+ //go:linkname GetClassLikeDeclarationOfSymbol github.com/microsoft/typescript-go/internal/ast.GetClassLikeDeclarationOfSymbol
327
+ func GetClassLikeDeclarationOfSymbol(symbol *ast.Symbol) *ast.Node
328
+ //go:linkname GetCombinedModifierFlags github.com/microsoft/typescript-go/internal/ast.GetCombinedModifierFlags
329
+ func GetCombinedModifierFlags(node *ast.Node) ast.ModifierFlags
330
+ //go:linkname GetCombinedNodeFlags github.com/microsoft/typescript-go/internal/ast.GetCombinedNodeFlags
331
+ func GetCombinedNodeFlags(node *ast.Node) ast.NodeFlags
332
+ //go:linkname GetContainingClass github.com/microsoft/typescript-go/internal/ast.GetContainingClass
333
+ func GetContainingClass(node *ast.Node) *ast.Node
334
+ //go:linkname GetContainingFunction github.com/microsoft/typescript-go/internal/ast.GetContainingFunction
335
+ func GetContainingFunction(node *ast.Node) *ast.Node
336
+ //go:linkname GetDeclarationContainer github.com/microsoft/typescript-go/internal/ast.GetDeclarationContainer
337
+ func GetDeclarationContainer(node *ast.Node) *ast.Node
338
+ //go:linkname GetDeclarationFromName github.com/microsoft/typescript-go/internal/ast.GetDeclarationFromName
339
+ func GetDeclarationFromName(name *ast.Node) *ast.Declaration
340
+ //go:linkname GetDeclarationName github.com/microsoft/typescript-go/internal/ast.GetDeclarationName
341
+ func GetDeclarationName(declaration *ast.Node) string
342
+ //go:linkname GetDeclarationOfKind github.com/microsoft/typescript-go/internal/ast.GetDeclarationOfKind
343
+ func GetDeclarationOfKind(symbol *ast.Symbol, kind ast.Kind) *ast.Node
344
+ //go:linkname GetElementOrPropertyAccessName github.com/microsoft/typescript-go/internal/ast.GetElementOrPropertyAccessName
345
+ func GetElementOrPropertyAccessName(node *ast.Node) *ast.Node
346
+ //go:linkname GetElementsOfBindingOrAssignmentPattern github.com/microsoft/typescript-go/internal/ast.GetElementsOfBindingOrAssignmentPattern
347
+ func GetElementsOfBindingOrAssignmentPattern(name *ast.Node) []*ast.Node
348
+ //go:linkname GetEmitModuleFormatOfFileWorker github.com/microsoft/typescript-go/internal/ast.GetEmitModuleFormatOfFileWorker
349
+ func GetEmitModuleFormatOfFileWorker(fileName string, options *core.CompilerOptions, sourceFileMetaData ast.SourceFileMetaData) core.ModuleKind
350
+ //go:linkname GetEnclosingBlockScopeContainer github.com/microsoft/typescript-go/internal/ast.GetEnclosingBlockScopeContainer
351
+ func GetEnclosingBlockScopeContainer(node *ast.Node) *ast.Node
352
+ //go:linkname GetExports github.com/microsoft/typescript-go/internal/ast.GetExports
353
+ func GetExports(symbol *ast.Symbol) ast.SymbolTable
354
+ //go:linkname GetExpressionPrecedence github.com/microsoft/typescript-go/internal/ast.GetExpressionPrecedence
355
+ func GetExpressionPrecedence(expression *ast.Expression) ast.OperatorPrecedence
356
+ //go:linkname GetExtendsHeritageClauseElement github.com/microsoft/typescript-go/internal/ast.GetExtendsHeritageClauseElement
357
+ func GetExtendsHeritageClauseElement(node *ast.Node) *ast.ExpressionWithTypeArgumentsNode
358
+ //go:linkname GetExtendsHeritageClauseElements github.com/microsoft/typescript-go/internal/ast.GetExtendsHeritageClauseElements
359
+ func GetExtendsHeritageClauseElements(node *ast.Node) []*ast.ExpressionWithTypeArgumentsNode
360
+ //go:linkname GetExternalModuleImportEqualsDeclarationExpression github.com/microsoft/typescript-go/internal/ast.GetExternalModuleImportEqualsDeclarationExpression
361
+ func GetExternalModuleImportEqualsDeclarationExpression(node *ast.Node) *ast.Node
362
+ //go:linkname GetExternalModuleIndicatorOptions github.com/microsoft/typescript-go/internal/ast.GetExternalModuleIndicatorOptions
363
+ func GetExternalModuleIndicatorOptions(fileName string, options *core.CompilerOptions, metadata ast.SourceFileMetaData) ast.ExternalModuleIndicatorOptions
364
+ //go:linkname GetExternalModuleName github.com/microsoft/typescript-go/internal/ast.GetExternalModuleName
365
+ func GetExternalModuleName(node *ast.Node) *ast.Expression
366
+ //go:linkname GetFirstConstructorWithBody github.com/microsoft/typescript-go/internal/ast.GetFirstConstructorWithBody
367
+ func GetFirstConstructorWithBody(node *ast.Node) *ast.Node
368
+ //go:linkname GetFirstIdentifier github.com/microsoft/typescript-go/internal/ast.GetFirstIdentifier
369
+ func GetFirstIdentifier(node *ast.Node) *ast.Node
370
+ //go:linkname GetFunctionFlags github.com/microsoft/typescript-go/internal/ast.GetFunctionFlags
371
+ func GetFunctionFlags(node *ast.Node) ast.FunctionFlags
372
+ //go:linkname GetHeritageClause github.com/microsoft/typescript-go/internal/ast.GetHeritageClause
373
+ func GetHeritageClause(node *ast.Node, kind ast.Kind) *ast.Node
374
+ //go:linkname GetHeritageElements github.com/microsoft/typescript-go/internal/ast.GetHeritageElements
375
+ func GetHeritageElements(node *ast.Node, kind ast.Kind) []*ast.Node
376
+ //go:linkname GetHostSignatureFromJSDoc github.com/microsoft/typescript-go/internal/ast.GetHostSignatureFromJSDoc
377
+ func GetHostSignatureFromJSDoc(node *ast.Node) *ast.Node
378
+ //go:linkname GetImmediatelyInvokedFunctionExpression github.com/microsoft/typescript-go/internal/ast.GetImmediatelyInvokedFunctionExpression
379
+ func GetImmediatelyInvokedFunctionExpression(fn *ast.Node) *ast.Node
380
+ //go:linkname GetImplementsHeritageClauseElements github.com/microsoft/typescript-go/internal/ast.GetImplementsHeritageClauseElements
381
+ func GetImplementsHeritageClauseElements(node *ast.Node) []*ast.ExpressionWithTypeArgumentsNode
382
+ //go:linkname GetImplementsTypeNodes github.com/microsoft/typescript-go/internal/ast.GetImplementsTypeNodes
383
+ func GetImplementsTypeNodes(node *ast.Node) []*ast.ExpressionWithTypeArgumentsNode
384
+ //go:linkname GetImpliedNodeFormatForEmitWorker github.com/microsoft/typescript-go/internal/ast.GetImpliedNodeFormatForEmitWorker
385
+ func GetImpliedNodeFormatForEmitWorker(fileName string, emitModuleKind core.ModuleKind, sourceFileMetaData ast.SourceFileMetaData) core.ResolutionMode
386
+ //go:linkname GetImpliedNodeFormatForFile github.com/microsoft/typescript-go/internal/ast.GetImpliedNodeFormatForFile
387
+ func GetImpliedNodeFormatForFile(path string, packageJsonType string) core.ModuleKind
388
+ //go:linkname GetImportAttributes github.com/microsoft/typescript-go/internal/ast.GetImportAttributes
389
+ func GetImportAttributes(node *ast.Node) *ast.Node
390
+ //go:linkname GetInitializerOfBinaryExpression github.com/microsoft/typescript-go/internal/ast.GetInitializerOfBinaryExpression
391
+ func GetInitializerOfBinaryExpression(expr *ast.BinaryExpression) *ast.Expression
392
+ //go:linkname GetInvokedExpression github.com/microsoft/typescript-go/internal/ast.GetInvokedExpression
393
+ func GetInvokedExpression(node *ast.Node) *ast.Node
394
+ //go:linkname GetJSDocDeprecatedTag github.com/microsoft/typescript-go/internal/ast.GetJSDocDeprecatedTag
395
+ func GetJSDocDeprecatedTag(node *ast.Node) *ast.Node
396
+ //go:linkname GetJSDocHost github.com/microsoft/typescript-go/internal/ast.GetJSDocHost
397
+ func GetJSDocHost(node *ast.Node) *ast.Node
398
+ //go:linkname GetJSDocRoot github.com/microsoft/typescript-go/internal/ast.GetJSDocRoot
399
+ func GetJSDocRoot(node *ast.Node) *ast.Node
400
+ //go:linkname GetJSXImplicitImportBase github.com/microsoft/typescript-go/internal/ast.GetJSXImplicitImportBase
401
+ func GetJSXImplicitImportBase(compilerOptions *core.CompilerOptions, file *ast.SourceFile) string
402
+ //go:linkname GetJSXRuntimeImport github.com/microsoft/typescript-go/internal/ast.GetJSXRuntimeImport
403
+ func GetJSXRuntimeImport(base string, options *core.CompilerOptions) string
404
+ //go:linkname GetLeftmostAccessExpression github.com/microsoft/typescript-go/internal/ast.GetLeftmostAccessExpression
405
+ func GetLeftmostAccessExpression(expr *ast.Node) *ast.Node
406
+ //go:linkname GetLeftmostExpression github.com/microsoft/typescript-go/internal/ast.GetLeftmostExpression
407
+ func GetLeftmostExpression(node *ast.Expression, stopAtCallExpressions bool) *ast.Expression
408
+ //go:linkname GetLocals github.com/microsoft/typescript-go/internal/ast.GetLocals
409
+ func GetLocals(container *ast.Node) ast.SymbolTable
410
+ //go:linkname GetMeaningFromDeclaration github.com/microsoft/typescript-go/internal/ast.GetMeaningFromDeclaration
411
+ func GetMeaningFromDeclaration(node *ast.Node) ast.SemanticMeaning
412
+ //go:linkname GetMembers github.com/microsoft/typescript-go/internal/ast.GetMembers
413
+ func GetMembers(symbol *ast.Symbol) ast.SymbolTable
414
+ //go:linkname GetModuleInstanceState github.com/microsoft/typescript-go/internal/ast.GetModuleInstanceState
415
+ func GetModuleInstanceState(node *ast.Node) ast.ModuleInstanceState
416
+ //go:linkname GetModuleSpecifierOfBareOrAccessedRequire github.com/microsoft/typescript-go/internal/ast.GetModuleSpecifierOfBareOrAccessedRequire
417
+ func GetModuleSpecifierOfBareOrAccessedRequire(node *ast.Node) *ast.Node
418
+ //go:linkname GetNameOfDeclaration github.com/microsoft/typescript-go/internal/ast.GetNameOfDeclaration
419
+ func GetNameOfDeclaration(declaration *ast.Node) *ast.Node
420
+ //go:linkname GetNamespaceDeclarationNode github.com/microsoft/typescript-go/internal/ast.GetNamespaceDeclarationNode
421
+ func GetNamespaceDeclarationNode(node *ast.Node) *ast.Node
422
+ //go:linkname GetNewTargetContainer github.com/microsoft/typescript-go/internal/ast.GetNewTargetContainer
423
+ func GetNewTargetContainer(node *ast.Node) *ast.Node
424
+ //go:linkname GetNextJSDocCommentLocation github.com/microsoft/typescript-go/internal/ast.GetNextJSDocCommentLocation
425
+ func GetNextJSDocCommentLocation(node *ast.Node) *ast.Node
426
+ //go:linkname GetNodeAtPosition github.com/microsoft/typescript-go/internal/ast.GetNodeAtPosition
427
+ func GetNodeAtPosition(file *ast.SourceFile, position int, includeJSDoc bool) *ast.Node
428
+ //go:linkname GetNodeId github.com/microsoft/typescript-go/internal/ast.GetNodeId
429
+ func GetNodeId(node *ast.Node) ast.NodeId
430
+ //go:linkname GetNonAssignedNameOfDeclaration github.com/microsoft/typescript-go/internal/ast.GetNonAssignedNameOfDeclaration
431
+ func GetNonAssignedNameOfDeclaration(declaration *ast.Node) *ast.Node
432
+ //go:linkname GetNonAugmentationDeclaration github.com/microsoft/typescript-go/internal/ast.GetNonAugmentationDeclaration
433
+ func GetNonAugmentationDeclaration(symbol *ast.Symbol) *ast.Node
434
+ //go:linkname GetOperatorPrecedence github.com/microsoft/typescript-go/internal/ast.GetOperatorPrecedence
435
+ func GetOperatorPrecedence(nodeKind ast.Kind, operatorKind ast.Kind, flags ast.OperatorPrecedenceFlags) ast.OperatorPrecedence
436
+ //go:linkname GetPragmaArgument github.com/microsoft/typescript-go/internal/ast.GetPragmaArgument
437
+ func GetPragmaArgument(pragma *ast.Pragma, name string) string
438
+ //go:linkname GetPragmaFromSourceFile github.com/microsoft/typescript-go/internal/ast.GetPragmaFromSourceFile
439
+ func GetPragmaFromSourceFile(file *ast.SourceFile, name string) *ast.Pragma
440
+ //go:linkname GetPropertyNameForPropertyNameNode github.com/microsoft/typescript-go/internal/ast.GetPropertyNameForPropertyNameNode
441
+ func GetPropertyNameForPropertyNameNode(name *ast.Node) string
442
+ //go:linkname GetReparsedNodeForNode github.com/microsoft/typescript-go/internal/ast.GetReparsedNodeForNode
443
+ func GetReparsedNodeForNode(node *ast.Node) *ast.Node
444
+ //go:linkname GetRestIndicatorOfBindingOrAssignmentElement github.com/microsoft/typescript-go/internal/ast.GetRestIndicatorOfBindingOrAssignmentElement
445
+ func GetRestIndicatorOfBindingOrAssignmentElement(bindingElement *ast.Node) *ast.Node
446
+ //go:linkname GetRestParameterElementType github.com/microsoft/typescript-go/internal/ast.GetRestParameterElementType
447
+ func GetRestParameterElementType(node *ast.ParameterDeclarationNode) *ast.Node
448
+ //go:linkname GetRightMostAssignedExpression github.com/microsoft/typescript-go/internal/ast.GetRightMostAssignedExpression
449
+ func GetRightMostAssignedExpression(node *ast.Node) *ast.Node
450
+ //go:linkname GetRootDeclaration github.com/microsoft/typescript-go/internal/ast.GetRootDeclaration
451
+ func GetRootDeclaration(node *ast.Node) *ast.Node
452
+ //go:linkname GetSemanticJsxChildren github.com/microsoft/typescript-go/internal/ast.GetSemanticJsxChildren
453
+ func GetSemanticJsxChildren(children []*ast.JsxChild) []*ast.JsxChild
454
+ //go:linkname GetSourceFileOfModule github.com/microsoft/typescript-go/internal/ast.GetSourceFileOfModule
455
+ func GetSourceFileOfModule(module *ast.Symbol) *ast.SourceFile
456
+ //go:linkname GetSourceFileOfNode github.com/microsoft/typescript-go/internal/ast.GetSourceFileOfNode
457
+ func GetSourceFileOfNode(node *ast.Node) *ast.SourceFile
458
+ //go:linkname GetSuperContainer github.com/microsoft/typescript-go/internal/ast.GetSuperContainer
459
+ func GetSuperContainer(node *ast.Node, stopOnFunctions bool) *ast.Node
460
+ //go:linkname GetSymbolId github.com/microsoft/typescript-go/internal/ast.GetSymbolId
461
+ func GetSymbolId(symbol *ast.Symbol) ast.SymbolId
462
+ //go:linkname GetSymbolTable github.com/microsoft/typescript-go/internal/ast.GetSymbolTable
463
+ func GetSymbolTable(data *ast.SymbolTable) ast.SymbolTable
464
+ //go:linkname GetTargetOfBindingOrAssignmentElement github.com/microsoft/typescript-go/internal/ast.GetTargetOfBindingOrAssignmentElement
465
+ func GetTargetOfBindingOrAssignmentElement(bindingElement *ast.Node) *ast.Node
466
+ //go:linkname GetTextOfPropertyName github.com/microsoft/typescript-go/internal/ast.GetTextOfPropertyName
467
+ func GetTextOfPropertyName(name *ast.Node) string
468
+ //go:linkname GetThisContainer github.com/microsoft/typescript-go/internal/ast.GetThisContainer
469
+ func GetThisContainer(node *ast.Node, includeArrowFunctions bool, includeClassComputedPropertyName bool) *ast.Node
470
+ //go:linkname GetThisParameter github.com/microsoft/typescript-go/internal/ast.GetThisParameter
471
+ func GetThisParameter(signature *ast.Node) *ast.Node
472
+ //go:linkname GetTypeAnnotationNode github.com/microsoft/typescript-go/internal/ast.GetTypeAnnotationNode
473
+ func GetTypeAnnotationNode(node *ast.Node) *ast.TypeNode
474
+ //go:linkname GetTypeNodePrecedence github.com/microsoft/typescript-go/internal/ast.GetTypeNodePrecedence
475
+ func GetTypeNodePrecedence(n *ast.TypeNode) ast.TypePrecedence
476
+ //go:linkname HasAbstractModifier github.com/microsoft/typescript-go/internal/ast.HasAbstractModifier
477
+ func HasAbstractModifier(node *ast.Node) bool
478
+ //go:linkname HasAccessorModifier github.com/microsoft/typescript-go/internal/ast.HasAccessorModifier
479
+ func HasAccessorModifier(node *ast.Node) bool
480
+ //go:linkname HasAmbientModifier github.com/microsoft/typescript-go/internal/ast.HasAmbientModifier
481
+ func HasAmbientModifier(node *ast.Node) bool
482
+ //go:linkname HasContextSensitiveParameters github.com/microsoft/typescript-go/internal/ast.HasContextSensitiveParameters
483
+ func HasContextSensitiveParameters(node *ast.Node) bool
484
+ //go:linkname HasDecorators github.com/microsoft/typescript-go/internal/ast.HasDecorators
485
+ func HasDecorators(node *ast.Node) bool
486
+ //go:linkname HasDynamicName github.com/microsoft/typescript-go/internal/ast.HasDynamicName
487
+ func HasDynamicName(declaration *ast.Node) bool
488
+ type HasFileName = ast.HasFileName
489
+ //go:linkname HasInferredType github.com/microsoft/typescript-go/internal/ast.HasInferredType
490
+ func HasInferredType(node *ast.Node) bool
491
+ //go:linkname HasInitializer github.com/microsoft/typescript-go/internal/ast.HasInitializer
492
+ func HasInitializer(node *ast.Node) bool
493
+ //go:linkname HasModifier github.com/microsoft/typescript-go/internal/ast.HasModifier
494
+ func HasModifier(node *ast.Node, flags ast.ModifierFlags) bool
495
+ //go:linkname HasQuestionToken github.com/microsoft/typescript-go/internal/ast.HasQuestionToken
496
+ func HasQuestionToken(node *ast.Node) bool
497
+ //go:linkname HasResolutionModeOverride github.com/microsoft/typescript-go/internal/ast.HasResolutionModeOverride
498
+ func HasResolutionModeOverride(node *ast.Node) bool
499
+ //go:linkname HasSamePropertyAccessName github.com/microsoft/typescript-go/internal/ast.HasSamePropertyAccessName
500
+ func HasSamePropertyAccessName(node1 *ast.Node, node2 *ast.Node) bool
501
+ //go:linkname HasStaticModifier github.com/microsoft/typescript-go/internal/ast.HasStaticModifier
502
+ func HasStaticModifier(node *ast.Node) bool
503
+ //go:linkname HasSyntacticModifier github.com/microsoft/typescript-go/internal/ast.HasSyntacticModifier
504
+ func HasSyntacticModifier(node *ast.Node, flags ast.ModifierFlags) bool
505
+ //go:linkname HasTypeArguments github.com/microsoft/typescript-go/internal/ast.HasTypeArguments
506
+ func HasTypeArguments(node *ast.Node) bool
507
+ type HeritageClause = ast.HeritageClause
508
+ type HeritageClauseList = ast.HeritageClauseList
509
+ type HeritageClauseNode = ast.HeritageClauseNode
510
+ type Identifier = ast.Identifier
511
+ type IdentifierNode = ast.IdentifierNode
512
+ type IfStatement = ast.IfStatement
513
+ type IfStatementNode = ast.IfStatementNode
514
+ type ImportAttribute = ast.ImportAttribute
515
+ type ImportAttributeList = ast.ImportAttributeList
516
+ type ImportAttributeName = ast.ImportAttributeName
517
+ type ImportAttributeNode = ast.ImportAttributeNode
518
+ type ImportAttributes = ast.ImportAttributes
519
+ type ImportAttributesNode = ast.ImportAttributesNode
520
+ type ImportClause = ast.ImportClause
521
+ type ImportClauseNode = ast.ImportClauseNode
522
+ type ImportClauseOrBindingPattern = ast.ImportClauseOrBindingPattern
523
+ type ImportDeclaration = ast.ImportDeclaration
524
+ type ImportDeclarationNode = ast.ImportDeclarationNode
525
+ type ImportEqualsDeclaration = ast.ImportEqualsDeclaration
526
+ type ImportEqualsDeclarationNode = ast.ImportEqualsDeclarationNode
527
+ type ImportExpression = ast.ImportExpression
528
+ //go:linkname ImportFromModuleSpecifier github.com/microsoft/typescript-go/internal/ast.ImportFromModuleSpecifier
529
+ func ImportFromModuleSpecifier(node *ast.Node) *ast.Node
530
+ type ImportPhaseModifierSyntaxKind = ast.ImportPhaseModifierSyntaxKind
531
+ type ImportSpecifier = ast.ImportSpecifier
532
+ type ImportSpecifierList = ast.ImportSpecifierList
533
+ type ImportSpecifierNode = ast.ImportSpecifierNode
534
+ type ImportTypeNode = ast.ImportTypeNode
535
+ type ImportTypeNodeNode = ast.ImportTypeNodeNode
536
+ type InKeyword = ast.InKeyword
537
+ type IncrementExpression = ast.IncrementExpression
538
+ //go:linkname IndexOfNode github.com/microsoft/typescript-go/internal/ast.IndexOfNode
539
+ func IndexOfNode(nodes []*ast.Node, node *ast.Node) int
540
+ type IndexSignatureDeclaration = ast.IndexSignatureDeclaration
541
+ type IndexSignatureDeclarationNode = ast.IndexSignatureDeclarationNode
542
+ type IndexedAccessTypeNode = ast.IndexedAccessTypeNode
543
+ type IndexedAccessTypeNodeNode = ast.IndexedAccessTypeNodeNode
544
+ type InferTypeNode = ast.InferTypeNode
545
+ type InferTypeNodeNode = ast.InferTypeNodeNode
546
+ type InterfaceDeclaration = ast.InterfaceDeclaration
547
+ type InterfaceDeclarationNode = ast.InterfaceDeclarationNode
548
+ const InternalSymbolNameAssignmentDeclaration = ast.InternalSymbolNameAssignmentDeclaration
549
+ const InternalSymbolNameCall = ast.InternalSymbolNameCall
550
+ const InternalSymbolNameClass = ast.InternalSymbolNameClass
551
+ const InternalSymbolNameComputed = ast.InternalSymbolNameComputed
552
+ const InternalSymbolNameConstructor = ast.InternalSymbolNameConstructor
553
+ const InternalSymbolNameDefault = ast.InternalSymbolNameDefault
554
+ const InternalSymbolNameExportEquals = ast.InternalSymbolNameExportEquals
555
+ const InternalSymbolNameExportStar = ast.InternalSymbolNameExportStar
556
+ const InternalSymbolNameFunction = ast.InternalSymbolNameFunction
557
+ const InternalSymbolNameGlobal = ast.InternalSymbolNameGlobal
558
+ const InternalSymbolNameImportAttributes = ast.InternalSymbolNameImportAttributes
559
+ const InternalSymbolNameIndex = ast.InternalSymbolNameIndex
560
+ const InternalSymbolNameInstantiationExpression = ast.InternalSymbolNameInstantiationExpression
561
+ const InternalSymbolNameJSXAttributes = ast.InternalSymbolNameJSXAttributes
562
+ const InternalSymbolNameMissing = ast.InternalSymbolNameMissing
563
+ const InternalSymbolNameModuleExports = ast.InternalSymbolNameModuleExports
564
+ const InternalSymbolNameNew = ast.InternalSymbolNameNew
565
+ const InternalSymbolNameObject = ast.InternalSymbolNameObject
566
+ const InternalSymbolNamePrefix = ast.InternalSymbolNamePrefix
567
+ const InternalSymbolNameThis = ast.InternalSymbolNameThis
568
+ const InternalSymbolNameType = ast.InternalSymbolNameType
569
+ type IntersectionTypeNode = ast.IntersectionTypeNode
570
+ type IntersectionTypeNodeNode = ast.IntersectionTypeNodeNode
571
+ //go:linkname IsAccessExpression github.com/microsoft/typescript-go/internal/ast.IsAccessExpression
572
+ func IsAccessExpression(node *ast.Node) bool
573
+ //go:linkname IsAccessor github.com/microsoft/typescript-go/internal/ast.IsAccessor
574
+ func IsAccessor(node *ast.Node) bool
575
+ //go:linkname IsAdditiveOperator github.com/microsoft/typescript-go/internal/ast.IsAdditiveOperator
576
+ func IsAdditiveOperator(kind ast.Kind) bool
577
+ //go:linkname IsAdditiveOperatorOrHigher github.com/microsoft/typescript-go/internal/ast.IsAdditiveOperatorOrHigher
578
+ func IsAdditiveOperatorOrHigher(kind ast.Kind) bool
579
+ //go:linkname IsAliasSymbolDeclaration github.com/microsoft/typescript-go/internal/ast.IsAliasSymbolDeclaration
580
+ func IsAliasSymbolDeclaration(node *ast.Node) bool
581
+ //go:linkname IsAmbientModule github.com/microsoft/typescript-go/internal/ast.IsAmbientModule
582
+ func IsAmbientModule(node *ast.Node) bool
583
+ //go:linkname IsAmbientModuleSymbolName github.com/microsoft/typescript-go/internal/ast.IsAmbientModuleSymbolName
584
+ func IsAmbientModuleSymbolName(s string) bool
585
+ //go:linkname IsAnyExportAssignment github.com/microsoft/typescript-go/internal/ast.IsAnyExportAssignment
586
+ func IsAnyExportAssignment(node *ast.Node) bool
587
+ //go:linkname IsAnyImportOrReExport github.com/microsoft/typescript-go/internal/ast.IsAnyImportOrReExport
588
+ func IsAnyImportOrReExport(node *ast.Node) bool
589
+ //go:linkname IsAnyImportSyntax github.com/microsoft/typescript-go/internal/ast.IsAnyImportSyntax
590
+ func IsAnyImportSyntax(node *ast.Node) bool
591
+ //go:linkname IsArgumentExpressionOfElementAccess github.com/microsoft/typescript-go/internal/ast.IsArgumentExpressionOfElementAccess
592
+ func IsArgumentExpressionOfElementAccess(node *ast.Node) bool
593
+ //go:linkname IsArrayBindingOrAssignmentElement github.com/microsoft/typescript-go/internal/ast.IsArrayBindingOrAssignmentElement
594
+ func IsArrayBindingOrAssignmentElement(node *ast.Node) bool
595
+ //go:linkname IsArrayBindingPattern github.com/microsoft/typescript-go/internal/ast.IsArrayBindingPattern
596
+ func IsArrayBindingPattern(node *ast.Node) bool
597
+ //go:linkname IsArrayLiteralExpression github.com/microsoft/typescript-go/internal/ast.IsArrayLiteralExpression
598
+ func IsArrayLiteralExpression(node *ast.Node) bool
599
+ //go:linkname IsArrayLiteralOrObjectLiteralDestructuringPattern github.com/microsoft/typescript-go/internal/ast.IsArrayLiteralOrObjectLiteralDestructuringPattern
600
+ func IsArrayLiteralOrObjectLiteralDestructuringPattern(node *ast.Node) bool
601
+ //go:linkname IsArrayTypeNode github.com/microsoft/typescript-go/internal/ast.IsArrayTypeNode
602
+ func IsArrayTypeNode(node *ast.Node) bool
603
+ //go:linkname IsArrowFunction github.com/microsoft/typescript-go/internal/ast.IsArrowFunction
604
+ func IsArrowFunction(node *ast.Node) bool
605
+ //go:linkname IsAsExpression github.com/microsoft/typescript-go/internal/ast.IsAsExpression
606
+ func IsAsExpression(node *ast.Node) bool
607
+ //go:linkname IsAssertionExpression github.com/microsoft/typescript-go/internal/ast.IsAssertionExpression
608
+ func IsAssertionExpression(node *ast.Node) bool
609
+ //go:linkname IsAssignmentExpression github.com/microsoft/typescript-go/internal/ast.IsAssignmentExpression
610
+ func IsAssignmentExpression(node *ast.Node, excludeCompoundAssignment bool) bool
611
+ //go:linkname IsAssignmentOperator github.com/microsoft/typescript-go/internal/ast.IsAssignmentOperator
612
+ func IsAssignmentOperator(kind ast.Kind) bool
613
+ //go:linkname IsAssignmentOperatorOrHigher github.com/microsoft/typescript-go/internal/ast.IsAssignmentOperatorOrHigher
614
+ func IsAssignmentOperatorOrHigher(kind ast.Kind) bool
615
+ //go:linkname IsAssignmentPattern github.com/microsoft/typescript-go/internal/ast.IsAssignmentPattern
616
+ func IsAssignmentPattern(node *ast.Node) bool
617
+ //go:linkname IsAssignmentTarget github.com/microsoft/typescript-go/internal/ast.IsAssignmentTarget
618
+ func IsAssignmentTarget(node *ast.Node) bool
619
+ //go:linkname IsAsyncFunction github.com/microsoft/typescript-go/internal/ast.IsAsyncFunction
620
+ func IsAsyncFunction(node *ast.Node) bool
621
+ //go:linkname IsAutoAccessorPropertyDeclaration github.com/microsoft/typescript-go/internal/ast.IsAutoAccessorPropertyDeclaration
622
+ func IsAutoAccessorPropertyDeclaration(node *ast.Node) bool
623
+ //go:linkname IsAwaitExpression github.com/microsoft/typescript-go/internal/ast.IsAwaitExpression
624
+ func IsAwaitExpression(node *ast.Node) bool
625
+ //go:linkname IsBigIntLiteral github.com/microsoft/typescript-go/internal/ast.IsBigIntLiteral
626
+ func IsBigIntLiteral(node *ast.Node) bool
627
+ //go:linkname IsBinaryExpression github.com/microsoft/typescript-go/internal/ast.IsBinaryExpression
628
+ func IsBinaryExpression(node *ast.Node) bool
629
+ //go:linkname IsBinaryOperator github.com/microsoft/typescript-go/internal/ast.IsBinaryOperator
630
+ func IsBinaryOperator(kind ast.Kind) bool
631
+ //go:linkname IsBindableObjectDefinePropertyCall github.com/microsoft/typescript-go/internal/ast.IsBindableObjectDefinePropertyCall
632
+ func IsBindableObjectDefinePropertyCall(node *ast.Node) bool
633
+ //go:linkname IsBindableStaticAccessExpression github.com/microsoft/typescript-go/internal/ast.IsBindableStaticAccessExpression
634
+ func IsBindableStaticAccessExpression(node *ast.Node, excludeThisKeyword bool) bool
635
+ //go:linkname IsBindableStaticElementAccessExpression github.com/microsoft/typescript-go/internal/ast.IsBindableStaticElementAccessExpression
636
+ func IsBindableStaticElementAccessExpression(node *ast.Node, excludeThisKeyword bool) bool
637
+ //go:linkname IsBindableStaticNameExpression github.com/microsoft/typescript-go/internal/ast.IsBindableStaticNameExpression
638
+ func IsBindableStaticNameExpression(node *ast.Node, excludeThisKeyword bool) bool
639
+ //go:linkname IsBindingElement github.com/microsoft/typescript-go/internal/ast.IsBindingElement
640
+ func IsBindingElement(node *ast.Node) bool
641
+ //go:linkname IsBindingPattern github.com/microsoft/typescript-go/internal/ast.IsBindingPattern
642
+ func IsBindingPattern(node *ast.Node) bool
643
+ //go:linkname IsBitwiseOperator github.com/microsoft/typescript-go/internal/ast.IsBitwiseOperator
644
+ func IsBitwiseOperator(kind ast.Kind) bool
645
+ //go:linkname IsBitwiseOperatorOrHigher github.com/microsoft/typescript-go/internal/ast.IsBitwiseOperatorOrHigher
646
+ func IsBitwiseOperatorOrHigher(kind ast.Kind) bool
647
+ //go:linkname IsBlock github.com/microsoft/typescript-go/internal/ast.IsBlock
648
+ func IsBlock(node *ast.Node) bool
649
+ //go:linkname IsBlockOrCatchScoped github.com/microsoft/typescript-go/internal/ast.IsBlockOrCatchScoped
650
+ func IsBlockOrCatchScoped(declaration *ast.Node) bool
651
+ //go:linkname IsBlockScope github.com/microsoft/typescript-go/internal/ast.IsBlockScope
652
+ func IsBlockScope(node *ast.Node, parentNode *ast.Node) bool
653
+ //go:linkname IsBooleanLiteral github.com/microsoft/typescript-go/internal/ast.IsBooleanLiteral
654
+ func IsBooleanLiteral(node *ast.Node) bool
655
+ //go:linkname IsBreakOrContinueStatement github.com/microsoft/typescript-go/internal/ast.IsBreakOrContinueStatement
656
+ func IsBreakOrContinueStatement(node *ast.Node) bool
657
+ //go:linkname IsBreakStatement github.com/microsoft/typescript-go/internal/ast.IsBreakStatement
658
+ func IsBreakStatement(node *ast.Node) bool
659
+ //go:linkname IsCallExpression github.com/microsoft/typescript-go/internal/ast.IsCallExpression
660
+ func IsCallExpression(node *ast.Node) bool
661
+ //go:linkname IsCallExpressionTarget github.com/microsoft/typescript-go/internal/ast.IsCallExpressionTarget
662
+ func IsCallExpressionTarget(node *ast.Node, includeElementAccess bool, skipPastOuterExpressions bool) bool
663
+ //go:linkname IsCallLikeExpression github.com/microsoft/typescript-go/internal/ast.IsCallLikeExpression
664
+ func IsCallLikeExpression(node *ast.Node) bool
665
+ //go:linkname IsCallLikeOrFunctionLikeExpression github.com/microsoft/typescript-go/internal/ast.IsCallLikeOrFunctionLikeExpression
666
+ func IsCallLikeOrFunctionLikeExpression(node *ast.Node) bool
667
+ //go:linkname IsCallOrNewExpression github.com/microsoft/typescript-go/internal/ast.IsCallOrNewExpression
668
+ func IsCallOrNewExpression(node *ast.Node) bool
669
+ //go:linkname IsCallOrNewExpressionTarget github.com/microsoft/typescript-go/internal/ast.IsCallOrNewExpressionTarget
670
+ func IsCallOrNewExpressionTarget(node *ast.Node, includeElementAccess bool, skipPastOuterExpressions bool) bool
671
+ //go:linkname IsCallSignatureDeclaration github.com/microsoft/typescript-go/internal/ast.IsCallSignatureDeclaration
672
+ func IsCallSignatureDeclaration(node *ast.Node) bool
673
+ //go:linkname IsCaseBlock github.com/microsoft/typescript-go/internal/ast.IsCaseBlock
674
+ func IsCaseBlock(node *ast.Node) bool
675
+ //go:linkname IsCaseClause github.com/microsoft/typescript-go/internal/ast.IsCaseClause
676
+ func IsCaseClause(node *ast.Node) bool
677
+ //go:linkname IsCatchClause github.com/microsoft/typescript-go/internal/ast.IsCatchClause
678
+ func IsCatchClause(node *ast.Node) bool
679
+ //go:linkname IsCatchClauseVariableDeclarationOrBindingElement github.com/microsoft/typescript-go/internal/ast.IsCatchClauseVariableDeclarationOrBindingElement
680
+ func IsCatchClauseVariableDeclarationOrBindingElement(declaration *ast.Node) bool
681
+ //go:linkname IsCheckJSEnabledForFile github.com/microsoft/typescript-go/internal/ast.IsCheckJSEnabledForFile
682
+ func IsCheckJSEnabledForFile(sourceFile *ast.SourceFile, compilerOptions *core.CompilerOptions) bool
683
+ //go:linkname IsClassDeclaration github.com/microsoft/typescript-go/internal/ast.IsClassDeclaration
684
+ func IsClassDeclaration(node *ast.Node) bool
685
+ //go:linkname IsClassElement github.com/microsoft/typescript-go/internal/ast.IsClassElement
686
+ func IsClassElement(node *ast.Node) bool
687
+ //go:linkname IsClassExpression github.com/microsoft/typescript-go/internal/ast.IsClassExpression
688
+ func IsClassExpression(node *ast.Node) bool
689
+ //go:linkname IsClassLike github.com/microsoft/typescript-go/internal/ast.IsClassLike
690
+ func IsClassLike(node *ast.Node) bool
691
+ //go:linkname IsClassMemberModifier github.com/microsoft/typescript-go/internal/ast.IsClassMemberModifier
692
+ func IsClassMemberModifier(token ast.Kind) bool
693
+ //go:linkname IsClassOrInterfaceLike github.com/microsoft/typescript-go/internal/ast.IsClassOrInterfaceLike
694
+ func IsClassOrInterfaceLike(node *ast.Node) bool
695
+ //go:linkname IsClassOrTypeElement github.com/microsoft/typescript-go/internal/ast.IsClassOrTypeElement
696
+ func IsClassOrTypeElement(node *ast.Node) bool
697
+ //go:linkname IsClassStaticBlockDeclaration github.com/microsoft/typescript-go/internal/ast.IsClassStaticBlockDeclaration
698
+ func IsClassStaticBlockDeclaration(node *ast.Node) bool
699
+ //go:linkname IsCommaExpression github.com/microsoft/typescript-go/internal/ast.IsCommaExpression
700
+ func IsCommaExpression(node *ast.Node) bool
701
+ //go:linkname IsCommaSequence github.com/microsoft/typescript-go/internal/ast.IsCommaSequence
702
+ func IsCommaSequence(node *ast.Node) bool
703
+ //go:linkname IsCompoundAssignment github.com/microsoft/typescript-go/internal/ast.IsCompoundAssignment
704
+ func IsCompoundAssignment(token ast.Kind) bool
705
+ //go:linkname IsCompoundAssignmentOperator github.com/microsoft/typescript-go/internal/ast.IsCompoundAssignmentOperator
706
+ func IsCompoundAssignmentOperator(kind ast.Kind) bool
707
+ //go:linkname IsComputedNonLiteralName github.com/microsoft/typescript-go/internal/ast.IsComputedNonLiteralName
708
+ func IsComputedNonLiteralName(name *ast.Node) bool
709
+ //go:linkname IsComputedPropertyName github.com/microsoft/typescript-go/internal/ast.IsComputedPropertyName
710
+ func IsComputedPropertyName(node *ast.Node) bool
711
+ //go:linkname IsConditionalExpression github.com/microsoft/typescript-go/internal/ast.IsConditionalExpression
712
+ func IsConditionalExpression(node *ast.Node) bool
713
+ //go:linkname IsConditionalTypeNode github.com/microsoft/typescript-go/internal/ast.IsConditionalTypeNode
714
+ func IsConditionalTypeNode(node *ast.Node) bool
715
+ //go:linkname IsConstAssertion github.com/microsoft/typescript-go/internal/ast.IsConstAssertion
716
+ func IsConstAssertion(node *ast.Node) bool
717
+ //go:linkname IsConstTypeReference github.com/microsoft/typescript-go/internal/ast.IsConstTypeReference
718
+ func IsConstTypeReference(node *ast.Node) bool
719
+ //go:linkname IsConstructSignatureDeclaration github.com/microsoft/typescript-go/internal/ast.IsConstructSignatureDeclaration
720
+ func IsConstructSignatureDeclaration(node *ast.Node) bool
721
+ //go:linkname IsConstructorDeclaration github.com/microsoft/typescript-go/internal/ast.IsConstructorDeclaration
722
+ func IsConstructorDeclaration(node *ast.Node) bool
723
+ //go:linkname IsConstructorTypeNode github.com/microsoft/typescript-go/internal/ast.IsConstructorTypeNode
724
+ func IsConstructorTypeNode(node *ast.Node) bool
725
+ //go:linkname IsContextualKeyword github.com/microsoft/typescript-go/internal/ast.IsContextualKeyword
726
+ func IsContextualKeyword(token ast.Kind) bool
727
+ //go:linkname IsContinueStatement github.com/microsoft/typescript-go/internal/ast.IsContinueStatement
728
+ func IsContinueStatement(node *ast.Node) bool
729
+ //go:linkname IsDebuggerStatement github.com/microsoft/typescript-go/internal/ast.IsDebuggerStatement
730
+ func IsDebuggerStatement(node *ast.Node) bool
731
+ //go:linkname IsDeclaration github.com/microsoft/typescript-go/internal/ast.IsDeclaration
732
+ func IsDeclaration(node *ast.Node) bool
733
+ //go:linkname IsDeclarationBindingElement github.com/microsoft/typescript-go/internal/ast.IsDeclarationBindingElement
734
+ func IsDeclarationBindingElement(bindingElement *ast.Node) bool
735
+ //go:linkname IsDeclarationName github.com/microsoft/typescript-go/internal/ast.IsDeclarationName
736
+ func IsDeclarationName(name *ast.Node) bool
737
+ //go:linkname IsDeclarationNameOrImportPropertyName github.com/microsoft/typescript-go/internal/ast.IsDeclarationNameOrImportPropertyName
738
+ func IsDeclarationNameOrImportPropertyName(name *ast.Node) bool
739
+ //go:linkname IsDeclarationNode github.com/microsoft/typescript-go/internal/ast.IsDeclarationNode
740
+ func IsDeclarationNode(node *ast.Node) bool
741
+ //go:linkname IsDeclarationStatement github.com/microsoft/typescript-go/internal/ast.IsDeclarationStatement
742
+ func IsDeclarationStatement(node *ast.Node) bool
743
+ //go:linkname IsDecorator github.com/microsoft/typescript-go/internal/ast.IsDecorator
744
+ func IsDecorator(node *ast.Node) bool
745
+ //go:linkname IsDecoratorTarget github.com/microsoft/typescript-go/internal/ast.IsDecoratorTarget
746
+ func IsDecoratorTarget(node *ast.Node, includeElementAccess bool, skipPastOuterExpressions bool) bool
747
+ //go:linkname IsDefaultClause github.com/microsoft/typescript-go/internal/ast.IsDefaultClause
748
+ func IsDefaultClause(node *ast.Node) bool
749
+ //go:linkname IsDefaultImport github.com/microsoft/typescript-go/internal/ast.IsDefaultImport
750
+ func IsDefaultImport(node *ast.Node) bool
751
+ //go:linkname IsDeleteExpression github.com/microsoft/typescript-go/internal/ast.IsDeleteExpression
752
+ func IsDeleteExpression(node *ast.Node) bool
753
+ //go:linkname IsDeprecatedDeclaration github.com/microsoft/typescript-go/internal/ast.IsDeprecatedDeclaration
754
+ func IsDeprecatedDeclaration(declaration *ast.Node) bool
755
+ //go:linkname IsDeprecatedDeclarationWithCachedFlags github.com/microsoft/typescript-go/internal/ast.IsDeprecatedDeclarationWithCachedFlags
756
+ func IsDeprecatedDeclarationWithCachedFlags(declaration *ast.Node, combinedFlags ast.NodeFlags) bool
757
+ //go:linkname IsDestructuringAssignment github.com/microsoft/typescript-go/internal/ast.IsDestructuringAssignment
758
+ func IsDestructuringAssignment(node *ast.Node) bool
759
+ //go:linkname IsDoStatement github.com/microsoft/typescript-go/internal/ast.IsDoStatement
760
+ func IsDoStatement(node *ast.Node) bool
761
+ //go:linkname IsDottedName github.com/microsoft/typescript-go/internal/ast.IsDottedName
762
+ func IsDottedName(node *ast.Node) bool
763
+ //go:linkname IsDynamicName github.com/microsoft/typescript-go/internal/ast.IsDynamicName
764
+ func IsDynamicName(name *ast.Node) bool
765
+ //go:linkname IsEffectiveExternalModule github.com/microsoft/typescript-go/internal/ast.IsEffectiveExternalModule
766
+ func IsEffectiveExternalModule(node *ast.SourceFile, compilerOptions *core.CompilerOptions) bool
767
+ //go:linkname IsElementAccessExpression github.com/microsoft/typescript-go/internal/ast.IsElementAccessExpression
768
+ func IsElementAccessExpression(node *ast.Node) bool
769
+ //go:linkname IsEmittableImport github.com/microsoft/typescript-go/internal/ast.IsEmittableImport
770
+ func IsEmittableImport(node *ast.Node) bool
771
+ //go:linkname IsEmptyArrayLiteral github.com/microsoft/typescript-go/internal/ast.IsEmptyArrayLiteral
772
+ func IsEmptyArrayLiteral(expression *ast.Node) bool
773
+ //go:linkname IsEmptyObjectLiteral github.com/microsoft/typescript-go/internal/ast.IsEmptyObjectLiteral
774
+ func IsEmptyObjectLiteral(expression *ast.Node) bool
775
+ //go:linkname IsEmptyStatement github.com/microsoft/typescript-go/internal/ast.IsEmptyStatement
776
+ func IsEmptyStatement(node *ast.Node) bool
777
+ //go:linkname IsEntityName github.com/microsoft/typescript-go/internal/ast.IsEntityName
778
+ func IsEntityName(node *ast.Node) bool
779
+ //go:linkname IsEntityNameExpression github.com/microsoft/typescript-go/internal/ast.IsEntityNameExpression
780
+ func IsEntityNameExpression(node *ast.Node) bool
781
+ //go:linkname IsEntityNameExpressionEx github.com/microsoft/typescript-go/internal/ast.IsEntityNameExpressionEx
782
+ func IsEntityNameExpressionEx(node *ast.Node, allowJS bool) bool
783
+ //go:linkname IsEnumConst github.com/microsoft/typescript-go/internal/ast.IsEnumConst
784
+ func IsEnumConst(node *ast.Node) bool
785
+ //go:linkname IsEnumDeclaration github.com/microsoft/typescript-go/internal/ast.IsEnumDeclaration
786
+ func IsEnumDeclaration(node *ast.Node) bool
787
+ //go:linkname IsEnumMember github.com/microsoft/typescript-go/internal/ast.IsEnumMember
788
+ func IsEnumMember(node *ast.Node) bool
789
+ //go:linkname IsEqualityOperator github.com/microsoft/typescript-go/internal/ast.IsEqualityOperator
790
+ func IsEqualityOperator(kind ast.Kind) bool
791
+ //go:linkname IsEqualityOperatorOrHigher github.com/microsoft/typescript-go/internal/ast.IsEqualityOperatorOrHigher
792
+ func IsEqualityOperatorOrHigher(kind ast.Kind) bool
793
+ //go:linkname IsExclusivelyTypeOnlyImportOrExport github.com/microsoft/typescript-go/internal/ast.IsExclusivelyTypeOnlyImportOrExport
794
+ func IsExclusivelyTypeOnlyImportOrExport(node *ast.Node) bool
795
+ //go:linkname IsExpandoInitializer github.com/microsoft/typescript-go/internal/ast.IsExpandoInitializer
796
+ func IsExpandoInitializer(declaration *ast.Node, initializer *ast.Node) bool
797
+ //go:linkname IsExpandoPropertyDeclaration github.com/microsoft/typescript-go/internal/ast.IsExpandoPropertyDeclaration
798
+ func IsExpandoPropertyDeclaration(node *ast.Node) bool
799
+ //go:linkname IsExponentiationOperator github.com/microsoft/typescript-go/internal/ast.IsExponentiationOperator
800
+ func IsExponentiationOperator(kind ast.Kind) bool
801
+ //go:linkname IsExportAssignment github.com/microsoft/typescript-go/internal/ast.IsExportAssignment
802
+ func IsExportAssignment(node *ast.Node) bool
803
+ //go:linkname IsExportDeclaration github.com/microsoft/typescript-go/internal/ast.IsExportDeclaration
804
+ func IsExportDeclaration(node *ast.Node) bool
805
+ //go:linkname IsExportNamespaceAsDefaultDeclaration github.com/microsoft/typescript-go/internal/ast.IsExportNamespaceAsDefaultDeclaration
806
+ func IsExportNamespaceAsDefaultDeclaration(node *ast.Node) bool
807
+ //go:linkname IsExportSpecifier github.com/microsoft/typescript-go/internal/ast.IsExportSpecifier
808
+ func IsExportSpecifier(node *ast.Node) bool
809
+ //go:linkname IsExportsIdentifier github.com/microsoft/typescript-go/internal/ast.IsExportsIdentifier
810
+ func IsExportsIdentifier(node *ast.Node) bool
811
+ //go:linkname IsExpression github.com/microsoft/typescript-go/internal/ast.IsExpression
812
+ func IsExpression(node *ast.Node) bool
813
+ //go:linkname IsExpressionNode github.com/microsoft/typescript-go/internal/ast.IsExpressionNode
814
+ func IsExpressionNode(node *ast.Node) bool
815
+ //go:linkname IsExpressionOfOptionalChainRoot github.com/microsoft/typescript-go/internal/ast.IsExpressionOfOptionalChainRoot
816
+ func IsExpressionOfOptionalChainRoot(node *ast.Node) bool
817
+ //go:linkname IsExpressionStatement github.com/microsoft/typescript-go/internal/ast.IsExpressionStatement
818
+ func IsExpressionStatement(node *ast.Node) bool
819
+ //go:linkname IsExpressionWithTypeArguments github.com/microsoft/typescript-go/internal/ast.IsExpressionWithTypeArguments
820
+ func IsExpressionWithTypeArguments(node *ast.Node) bool
821
+ //go:linkname IsExpressionWithTypeArgumentsInClassExtendsClause github.com/microsoft/typescript-go/internal/ast.IsExpressionWithTypeArgumentsInClassExtendsClause
822
+ func IsExpressionWithTypeArgumentsInClassExtendsClause(node *ast.Node) bool
823
+ //go:linkname IsExternalModule github.com/microsoft/typescript-go/internal/ast.IsExternalModule
824
+ func IsExternalModule(file *ast.SourceFile) bool
825
+ //go:linkname IsExternalModuleAugmentation github.com/microsoft/typescript-go/internal/ast.IsExternalModuleAugmentation
826
+ func IsExternalModuleAugmentation(node *ast.Node) bool
827
+ //go:linkname IsExternalModuleImportEqualsDeclaration github.com/microsoft/typescript-go/internal/ast.IsExternalModuleImportEqualsDeclaration
828
+ func IsExternalModuleImportEqualsDeclaration(node *ast.Node) bool
829
+ //go:linkname IsExternalModuleIndicator github.com/microsoft/typescript-go/internal/ast.IsExternalModuleIndicator
830
+ func IsExternalModuleIndicator(node *ast.Statement) bool
831
+ //go:linkname IsExternalModuleReference github.com/microsoft/typescript-go/internal/ast.IsExternalModuleReference
832
+ func IsExternalModuleReference(node *ast.Node) bool
833
+ //go:linkname IsExternalOrCommonJSModule github.com/microsoft/typescript-go/internal/ast.IsExternalOrCommonJSModule
834
+ func IsExternalOrCommonJSModule(file *ast.SourceFile) bool
835
+ //go:linkname IsForInOrOfStatement github.com/microsoft/typescript-go/internal/ast.IsForInOrOfStatement
836
+ func IsForInOrOfStatement(node *ast.Node) bool
837
+ //go:linkname IsForInStatement github.com/microsoft/typescript-go/internal/ast.IsForInStatement
838
+ func IsForInStatement(node *ast.Node) bool
839
+ //go:linkname IsForOfStatement github.com/microsoft/typescript-go/internal/ast.IsForOfStatement
840
+ func IsForOfStatement(node *ast.Node) bool
841
+ //go:linkname IsForStatement github.com/microsoft/typescript-go/internal/ast.IsForStatement
842
+ func IsForStatement(node *ast.Node) bool
843
+ //go:linkname IsFunctionBlock github.com/microsoft/typescript-go/internal/ast.IsFunctionBlock
844
+ func IsFunctionBlock(node *ast.Node) bool
845
+ //go:linkname IsFunctionDeclaration github.com/microsoft/typescript-go/internal/ast.IsFunctionDeclaration
846
+ func IsFunctionDeclaration(node *ast.Node) bool
847
+ //go:linkname IsFunctionExpression github.com/microsoft/typescript-go/internal/ast.IsFunctionExpression
848
+ func IsFunctionExpression(node *ast.Node) bool
849
+ //go:linkname IsFunctionExpressionOrArrowFunction github.com/microsoft/typescript-go/internal/ast.IsFunctionExpressionOrArrowFunction
850
+ func IsFunctionExpressionOrArrowFunction(node *ast.Node) bool
851
+ //go:linkname IsFunctionLike github.com/microsoft/typescript-go/internal/ast.IsFunctionLike
852
+ func IsFunctionLike(node *ast.Node) bool
853
+ //go:linkname IsFunctionLikeDeclaration github.com/microsoft/typescript-go/internal/ast.IsFunctionLikeDeclaration
854
+ func IsFunctionLikeDeclaration(node *ast.Node) bool
855
+ //go:linkname IsFunctionLikeKind github.com/microsoft/typescript-go/internal/ast.IsFunctionLikeKind
856
+ func IsFunctionLikeKind(kind ast.Kind) bool
857
+ //go:linkname IsFunctionLikeOrClassStaticBlockDeclaration github.com/microsoft/typescript-go/internal/ast.IsFunctionLikeOrClassStaticBlockDeclaration
858
+ func IsFunctionLikeOrClassStaticBlockDeclaration(node *ast.Node) bool
859
+ //go:linkname IsFunctionOrModuleBlock github.com/microsoft/typescript-go/internal/ast.IsFunctionOrModuleBlock
860
+ func IsFunctionOrModuleBlock(node *ast.Node) bool
861
+ //go:linkname IsFunctionOrSourceFile github.com/microsoft/typescript-go/internal/ast.IsFunctionOrSourceFile
862
+ func IsFunctionOrSourceFile(node *ast.Node) bool
863
+ //go:linkname IsFunctionTypeNode github.com/microsoft/typescript-go/internal/ast.IsFunctionTypeNode
864
+ func IsFunctionTypeNode(node *ast.Node) bool
865
+ //go:linkname IsGetAccessorDeclaration github.com/microsoft/typescript-go/internal/ast.IsGetAccessorDeclaration
866
+ func IsGetAccessorDeclaration(node *ast.Node) bool
867
+ //go:linkname IsGlobalScopeAugmentation github.com/microsoft/typescript-go/internal/ast.IsGlobalScopeAugmentation
868
+ func IsGlobalScopeAugmentation(node *ast.Node) bool
869
+ //go:linkname IsGlobalSourceFile github.com/microsoft/typescript-go/internal/ast.IsGlobalSourceFile
870
+ func IsGlobalSourceFile(node *ast.Node) bool
871
+ //go:linkname IsHeritageClause github.com/microsoft/typescript-go/internal/ast.IsHeritageClause
872
+ func IsHeritageClause(node *ast.Node) bool
873
+ //go:linkname IsIdentifier github.com/microsoft/typescript-go/internal/ast.IsIdentifier
874
+ func IsIdentifier(node *ast.Node) bool
875
+ //go:linkname IsIdentifierName github.com/microsoft/typescript-go/internal/ast.IsIdentifierName
876
+ func IsIdentifierName(node *ast.Node) bool
877
+ //go:linkname IsIfStatement github.com/microsoft/typescript-go/internal/ast.IsIfStatement
878
+ func IsIfStatement(node *ast.Node) bool
879
+ //go:linkname IsImplicitlyExportedJSDocDeclaration github.com/microsoft/typescript-go/internal/ast.IsImplicitlyExportedJSDocDeclaration
880
+ func IsImplicitlyExportedJSDocDeclaration(node *ast.Node) bool
881
+ //go:linkname IsImportAttribute github.com/microsoft/typescript-go/internal/ast.IsImportAttribute
882
+ func IsImportAttribute(node *ast.Node) bool
883
+ //go:linkname IsImportAttributes github.com/microsoft/typescript-go/internal/ast.IsImportAttributes
884
+ func IsImportAttributes(node *ast.Node) bool
885
+ //go:linkname IsImportCall github.com/microsoft/typescript-go/internal/ast.IsImportCall
886
+ func IsImportCall(node *ast.Node) bool
887
+ //go:linkname IsImportClause github.com/microsoft/typescript-go/internal/ast.IsImportClause
888
+ func IsImportClause(node *ast.Node) bool
889
+ //go:linkname IsImportDeclaration github.com/microsoft/typescript-go/internal/ast.IsImportDeclaration
890
+ func IsImportDeclaration(node *ast.Node) bool
891
+ //go:linkname IsImportDeclarationOrJSImportDeclaration github.com/microsoft/typescript-go/internal/ast.IsImportDeclarationOrJSImportDeclaration
892
+ func IsImportDeclarationOrJSImportDeclaration(node *ast.Node) bool
893
+ //go:linkname IsImportEqualsDeclaration github.com/microsoft/typescript-go/internal/ast.IsImportEqualsDeclaration
894
+ func IsImportEqualsDeclaration(node *ast.Node) bool
895
+ //go:linkname IsImportMeta github.com/microsoft/typescript-go/internal/ast.IsImportMeta
896
+ func IsImportMeta(node *ast.Node) bool
897
+ //go:linkname IsImportNode github.com/microsoft/typescript-go/internal/ast.IsImportNode
898
+ func IsImportNode(node *ast.Node) bool
899
+ //go:linkname IsImportOrExportSpecifier github.com/microsoft/typescript-go/internal/ast.IsImportOrExportSpecifier
900
+ func IsImportOrExportSpecifier(node *ast.Node) bool
901
+ //go:linkname IsImportOrImportEqualsDeclaration github.com/microsoft/typescript-go/internal/ast.IsImportOrImportEqualsDeclaration
902
+ func IsImportOrImportEqualsDeclaration(node *ast.Node) bool
903
+ //go:linkname IsImportPhaseModifierKind github.com/microsoft/typescript-go/internal/ast.IsImportPhaseModifierKind
904
+ func IsImportPhaseModifierKind(kind ast.Kind) bool
905
+ //go:linkname IsImportSpecifier github.com/microsoft/typescript-go/internal/ast.IsImportSpecifier
906
+ func IsImportSpecifier(node *ast.Node) bool
907
+ //go:linkname IsImportTypeNode github.com/microsoft/typescript-go/internal/ast.IsImportTypeNode
908
+ func IsImportTypeNode(node *ast.Node) bool
909
+ //go:linkname IsInExpressionContext github.com/microsoft/typescript-go/internal/ast.IsInExpressionContext
910
+ func IsInExpressionContext(node *ast.Node) bool
911
+ //go:linkname IsInJSFile github.com/microsoft/typescript-go/internal/ast.IsInJSFile
912
+ func IsInJSFile(node *ast.Node) bool
913
+ //go:linkname IsInJsonFile github.com/microsoft/typescript-go/internal/ast.IsInJsonFile
914
+ func IsInJsonFile(node *ast.Node) bool
915
+ //go:linkname IsInTopLevelContext github.com/microsoft/typescript-go/internal/ast.IsInTopLevelContext
916
+ func IsInTopLevelContext(node *ast.Node) bool
917
+ //go:linkname IsIndexSignatureDeclaration github.com/microsoft/typescript-go/internal/ast.IsIndexSignatureDeclaration
918
+ func IsIndexSignatureDeclaration(node *ast.Node) bool
919
+ //go:linkname IsIndexedAccessTypeNode github.com/microsoft/typescript-go/internal/ast.IsIndexedAccessTypeNode
920
+ func IsIndexedAccessTypeNode(node *ast.Node) bool
921
+ //go:linkname IsInferTypeNode github.com/microsoft/typescript-go/internal/ast.IsInferTypeNode
922
+ func IsInferTypeNode(node *ast.Node) bool
923
+ //go:linkname IsInfinityOrNaNString github.com/microsoft/typescript-go/internal/ast.IsInfinityOrNaNString
924
+ func IsInfinityOrNaNString(name string) bool
925
+ //go:linkname IsInitializedProperty github.com/microsoft/typescript-go/internal/ast.IsInitializedProperty
926
+ func IsInitializedProperty(member *ast.ClassElement) bool
927
+ //go:linkname IsInstanceOfExpression github.com/microsoft/typescript-go/internal/ast.IsInstanceOfExpression
928
+ func IsInstanceOfExpression(node *ast.Node) bool
929
+ //go:linkname IsInstantiatedModule github.com/microsoft/typescript-go/internal/ast.IsInstantiatedModule
930
+ func IsInstantiatedModule(node *ast.Node, preserveConstEnums bool) bool
931
+ //go:linkname IsInterfaceDeclaration github.com/microsoft/typescript-go/internal/ast.IsInterfaceDeclaration
932
+ func IsInterfaceDeclaration(node *ast.Node) bool
933
+ //go:linkname IsInternalModuleImportEqualsDeclaration github.com/microsoft/typescript-go/internal/ast.IsInternalModuleImportEqualsDeclaration
934
+ func IsInternalModuleImportEqualsDeclaration(node *ast.Node) bool
935
+ //go:linkname IsIntersectionTypeNode github.com/microsoft/typescript-go/internal/ast.IsIntersectionTypeNode
936
+ func IsIntersectionTypeNode(node *ast.Node) bool
937
+ //go:linkname IsIterationStatement github.com/microsoft/typescript-go/internal/ast.IsIterationStatement
938
+ func IsIterationStatement(node *ast.Node, lookInLabeledStatements bool) bool
939
+ //go:linkname IsJSDoc github.com/microsoft/typescript-go/internal/ast.IsJSDoc
940
+ func IsJSDoc(node *ast.Node) bool
941
+ //go:linkname IsJSDocAllType github.com/microsoft/typescript-go/internal/ast.IsJSDocAllType
942
+ func IsJSDocAllType(node *ast.Node) bool
943
+ //go:linkname IsJSDocAugmentsTag github.com/microsoft/typescript-go/internal/ast.IsJSDocAugmentsTag
944
+ func IsJSDocAugmentsTag(node *ast.Node) bool
945
+ //go:linkname IsJSDocCallbackTag github.com/microsoft/typescript-go/internal/ast.IsJSDocCallbackTag
946
+ func IsJSDocCallbackTag(node *ast.Node) bool
947
+ //go:linkname IsJSDocDeprecatedTag github.com/microsoft/typescript-go/internal/ast.IsJSDocDeprecatedTag
948
+ func IsJSDocDeprecatedTag(node *ast.Node) bool
949
+ //go:linkname IsJSDocImplementsTag github.com/microsoft/typescript-go/internal/ast.IsJSDocImplementsTag
950
+ func IsJSDocImplementsTag(node *ast.Node) bool
951
+ //go:linkname IsJSDocImportTag github.com/microsoft/typescript-go/internal/ast.IsJSDocImportTag
952
+ func IsJSDocImportTag(node *ast.Node) bool
953
+ //go:linkname IsJSDocKind github.com/microsoft/typescript-go/internal/ast.IsJSDocKind
954
+ func IsJSDocKind(kind ast.Kind) bool
955
+ //go:linkname IsJSDocLink github.com/microsoft/typescript-go/internal/ast.IsJSDocLink
956
+ func IsJSDocLink(node *ast.Node) bool
957
+ //go:linkname IsJSDocLinkCode github.com/microsoft/typescript-go/internal/ast.IsJSDocLinkCode
958
+ func IsJSDocLinkCode(node *ast.Node) bool
959
+ //go:linkname IsJSDocLinkLike github.com/microsoft/typescript-go/internal/ast.IsJSDocLinkLike
960
+ func IsJSDocLinkLike(node *ast.Node) bool
961
+ //go:linkname IsJSDocLinkPlain github.com/microsoft/typescript-go/internal/ast.IsJSDocLinkPlain
962
+ func IsJSDocLinkPlain(node *ast.Node) bool
963
+ //go:linkname IsJSDocNameReference github.com/microsoft/typescript-go/internal/ast.IsJSDocNameReference
964
+ func IsJSDocNameReference(node *ast.Node) bool
965
+ //go:linkname IsJSDocNameReferenceContext github.com/microsoft/typescript-go/internal/ast.IsJSDocNameReferenceContext
966
+ func IsJSDocNameReferenceContext(node *ast.Node) bool
967
+ //go:linkname IsJSDocNode github.com/microsoft/typescript-go/internal/ast.IsJSDocNode
968
+ func IsJSDocNode(node *ast.Node) bool
969
+ //go:linkname IsJSDocNodeKind github.com/microsoft/typescript-go/internal/ast.IsJSDocNodeKind
970
+ func IsJSDocNodeKind(kind ast.Kind) bool
971
+ //go:linkname IsJSDocNonNullableType github.com/microsoft/typescript-go/internal/ast.IsJSDocNonNullableType
972
+ func IsJSDocNonNullableType(node *ast.Node) bool
973
+ //go:linkname IsJSDocNullableType github.com/microsoft/typescript-go/internal/ast.IsJSDocNullableType
974
+ func IsJSDocNullableType(node *ast.Node) bool
975
+ //go:linkname IsJSDocOptionalType github.com/microsoft/typescript-go/internal/ast.IsJSDocOptionalType
976
+ func IsJSDocOptionalType(node *ast.Node) bool
977
+ //go:linkname IsJSDocOverloadTag github.com/microsoft/typescript-go/internal/ast.IsJSDocOverloadTag
978
+ func IsJSDocOverloadTag(node *ast.Node) bool
979
+ //go:linkname IsJSDocOverrideTag github.com/microsoft/typescript-go/internal/ast.IsJSDocOverrideTag
980
+ func IsJSDocOverrideTag(node *ast.Node) bool
981
+ //go:linkname IsJSDocParameterTag github.com/microsoft/typescript-go/internal/ast.IsJSDocParameterTag
982
+ func IsJSDocParameterTag(node *ast.Node) bool
983
+ //go:linkname IsJSDocPrivateTag github.com/microsoft/typescript-go/internal/ast.IsJSDocPrivateTag
984
+ func IsJSDocPrivateTag(node *ast.Node) bool
985
+ //go:linkname IsJSDocPropertyTag github.com/microsoft/typescript-go/internal/ast.IsJSDocPropertyTag
986
+ func IsJSDocPropertyTag(node *ast.Node) bool
987
+ //go:linkname IsJSDocProtectedTag github.com/microsoft/typescript-go/internal/ast.IsJSDocProtectedTag
988
+ func IsJSDocProtectedTag(node *ast.Node) bool
989
+ //go:linkname IsJSDocPublicTag github.com/microsoft/typescript-go/internal/ast.IsJSDocPublicTag
990
+ func IsJSDocPublicTag(node *ast.Node) bool
991
+ //go:linkname IsJSDocReadonlyTag github.com/microsoft/typescript-go/internal/ast.IsJSDocReadonlyTag
992
+ func IsJSDocReadonlyTag(node *ast.Node) bool
993
+ //go:linkname IsJSDocReturnTag github.com/microsoft/typescript-go/internal/ast.IsJSDocReturnTag
994
+ func IsJSDocReturnTag(node *ast.Node) bool
995
+ //go:linkname IsJSDocSatisfiesTag github.com/microsoft/typescript-go/internal/ast.IsJSDocSatisfiesTag
996
+ func IsJSDocSatisfiesTag(node *ast.Node) bool
997
+ //go:linkname IsJSDocSeeTag github.com/microsoft/typescript-go/internal/ast.IsJSDocSeeTag
998
+ func IsJSDocSeeTag(node *ast.Node) bool
999
+ //go:linkname IsJSDocSignature github.com/microsoft/typescript-go/internal/ast.IsJSDocSignature
1000
+ func IsJSDocSignature(node *ast.Node) bool
1001
+ //go:linkname IsJSDocSingleCommentNode github.com/microsoft/typescript-go/internal/ast.IsJSDocSingleCommentNode
1002
+ func IsJSDocSingleCommentNode(node *ast.Node) bool
1003
+ //go:linkname IsJSDocSingleCommentNodeComment github.com/microsoft/typescript-go/internal/ast.IsJSDocSingleCommentNodeComment
1004
+ func IsJSDocSingleCommentNodeComment(node *ast.Node) bool
1005
+ //go:linkname IsJSDocSingleCommentNodeList github.com/microsoft/typescript-go/internal/ast.IsJSDocSingleCommentNodeList
1006
+ func IsJSDocSingleCommentNodeList(nodeList *ast.NodeList) bool
1007
+ //go:linkname IsJSDocTag github.com/microsoft/typescript-go/internal/ast.IsJSDocTag
1008
+ func IsJSDocTag(node *ast.Node) bool
1009
+ //go:linkname IsJSDocTemplateTag github.com/microsoft/typescript-go/internal/ast.IsJSDocTemplateTag
1010
+ func IsJSDocTemplateTag(node *ast.Node) bool
1011
+ //go:linkname IsJSDocText github.com/microsoft/typescript-go/internal/ast.IsJSDocText
1012
+ func IsJSDocText(node *ast.Node) bool
1013
+ //go:linkname IsJSDocThisTag github.com/microsoft/typescript-go/internal/ast.IsJSDocThisTag
1014
+ func IsJSDocThisTag(node *ast.Node) bool
1015
+ //go:linkname IsJSDocThrowsTag github.com/microsoft/typescript-go/internal/ast.IsJSDocThrowsTag
1016
+ func IsJSDocThrowsTag(node *ast.Node) bool
1017
+ //go:linkname IsJSDocTypeAssertion github.com/microsoft/typescript-go/internal/ast.IsJSDocTypeAssertion
1018
+ func IsJSDocTypeAssertion(node *ast.Node) bool
1019
+ //go:linkname IsJSDocTypeExpression github.com/microsoft/typescript-go/internal/ast.IsJSDocTypeExpression
1020
+ func IsJSDocTypeExpression(node *ast.Node) bool
1021
+ //go:linkname IsJSDocTypeLiteral github.com/microsoft/typescript-go/internal/ast.IsJSDocTypeLiteral
1022
+ func IsJSDocTypeLiteral(node *ast.Node) bool
1023
+ //go:linkname IsJSDocTypeTag github.com/microsoft/typescript-go/internal/ast.IsJSDocTypeTag
1024
+ func IsJSDocTypeTag(node *ast.Node) bool
1025
+ //go:linkname IsJSDocTypedefTag github.com/microsoft/typescript-go/internal/ast.IsJSDocTypedefTag
1026
+ func IsJSDocTypedefTag(node *ast.Node) bool
1027
+ //go:linkname IsJSDocUnknownTag github.com/microsoft/typescript-go/internal/ast.IsJSDocUnknownTag
1028
+ func IsJSDocUnknownTag(node *ast.Node) bool
1029
+ //go:linkname IsJSDocVariadicType github.com/microsoft/typescript-go/internal/ast.IsJSDocVariadicType
1030
+ func IsJSDocVariadicType(node *ast.Node) bool
1031
+ //go:linkname IsJSImportDeclaration github.com/microsoft/typescript-go/internal/ast.IsJSImportDeclaration
1032
+ func IsJSImportDeclaration(node *ast.Node) bool
1033
+ //go:linkname IsJSTypeAliasDeclaration github.com/microsoft/typescript-go/internal/ast.IsJSTypeAliasDeclaration
1034
+ func IsJSTypeAliasDeclaration(node *ast.Node) bool
1035
+ //go:linkname IsJsonSourceFile github.com/microsoft/typescript-go/internal/ast.IsJsonSourceFile
1036
+ func IsJsonSourceFile(file *ast.SourceFile) bool
1037
+ //go:linkname IsJsxAttribute github.com/microsoft/typescript-go/internal/ast.IsJsxAttribute
1038
+ func IsJsxAttribute(node *ast.Node) bool
1039
+ //go:linkname IsJsxAttributeLike github.com/microsoft/typescript-go/internal/ast.IsJsxAttributeLike
1040
+ func IsJsxAttributeLike(node *ast.Node) bool
1041
+ //go:linkname IsJsxAttributes github.com/microsoft/typescript-go/internal/ast.IsJsxAttributes
1042
+ func IsJsxAttributes(node *ast.Node) bool
1043
+ //go:linkname IsJsxCallLike github.com/microsoft/typescript-go/internal/ast.IsJsxCallLike
1044
+ func IsJsxCallLike(node *ast.Node) bool
1045
+ //go:linkname IsJsxChild github.com/microsoft/typescript-go/internal/ast.IsJsxChild
1046
+ func IsJsxChild(node *ast.Node) bool
1047
+ //go:linkname IsJsxClosingElement github.com/microsoft/typescript-go/internal/ast.IsJsxClosingElement
1048
+ func IsJsxClosingElement(node *ast.Node) bool
1049
+ //go:linkname IsJsxClosingFragment github.com/microsoft/typescript-go/internal/ast.IsJsxClosingFragment
1050
+ func IsJsxClosingFragment(node *ast.Node) bool
1051
+ //go:linkname IsJsxElement github.com/microsoft/typescript-go/internal/ast.IsJsxElement
1052
+ func IsJsxElement(node *ast.Node) bool
1053
+ //go:linkname IsJsxExpression github.com/microsoft/typescript-go/internal/ast.IsJsxExpression
1054
+ func IsJsxExpression(node *ast.Node) bool
1055
+ //go:linkname IsJsxFragment github.com/microsoft/typescript-go/internal/ast.IsJsxFragment
1056
+ func IsJsxFragment(node *ast.Node) bool
1057
+ //go:linkname IsJsxNamespacedName github.com/microsoft/typescript-go/internal/ast.IsJsxNamespacedName
1058
+ func IsJsxNamespacedName(node *ast.Node) bool
1059
+ //go:linkname IsJsxOpeningElement github.com/microsoft/typescript-go/internal/ast.IsJsxOpeningElement
1060
+ func IsJsxOpeningElement(node *ast.Node) bool
1061
+ //go:linkname IsJsxOpeningFragment github.com/microsoft/typescript-go/internal/ast.IsJsxOpeningFragment
1062
+ func IsJsxOpeningFragment(node *ast.Node) bool
1063
+ //go:linkname IsJsxOpeningLikeElement github.com/microsoft/typescript-go/internal/ast.IsJsxOpeningLikeElement
1064
+ func IsJsxOpeningLikeElement(node *ast.Node) bool
1065
+ //go:linkname IsJsxOpeningLikeElementTagName github.com/microsoft/typescript-go/internal/ast.IsJsxOpeningLikeElementTagName
1066
+ func IsJsxOpeningLikeElementTagName(node *ast.Node, includeElementAccess bool, skipPastOuterExpressions bool) bool
1067
+ //go:linkname IsJsxSelfClosingElement github.com/microsoft/typescript-go/internal/ast.IsJsxSelfClosingElement
1068
+ func IsJsxSelfClosingElement(node *ast.Node) bool
1069
+ //go:linkname IsJsxSpreadAttribute github.com/microsoft/typescript-go/internal/ast.IsJsxSpreadAttribute
1070
+ func IsJsxSpreadAttribute(node *ast.Node) bool
1071
+ //go:linkname IsJsxTagName github.com/microsoft/typescript-go/internal/ast.IsJsxTagName
1072
+ func IsJsxTagName(node *ast.Node) bool
1073
+ //go:linkname IsJsxText github.com/microsoft/typescript-go/internal/ast.IsJsxText
1074
+ func IsJsxText(node *ast.Node) bool
1075
+ //go:linkname IsJsxTokenKind github.com/microsoft/typescript-go/internal/ast.IsJsxTokenKind
1076
+ func IsJsxTokenKind(kind ast.Kind) bool
1077
+ //go:linkname IsJumpStatementTarget github.com/microsoft/typescript-go/internal/ast.IsJumpStatementTarget
1078
+ func IsJumpStatementTarget(node *ast.Node) bool
1079
+ //go:linkname IsKeyword github.com/microsoft/typescript-go/internal/ast.IsKeyword
1080
+ func IsKeyword(token ast.Kind) bool
1081
+ //go:linkname IsKeywordExpression github.com/microsoft/typescript-go/internal/ast.IsKeywordExpression
1082
+ func IsKeywordExpression(node *ast.Node) bool
1083
+ //go:linkname IsKeywordExpressionKind github.com/microsoft/typescript-go/internal/ast.IsKeywordExpressionKind
1084
+ func IsKeywordExpressionKind(kind ast.Kind) bool
1085
+ //go:linkname IsKeywordKind github.com/microsoft/typescript-go/internal/ast.IsKeywordKind
1086
+ func IsKeywordKind(kind ast.Kind) bool
1087
+ //go:linkname IsKeywordTypeKind github.com/microsoft/typescript-go/internal/ast.IsKeywordTypeKind
1088
+ func IsKeywordTypeKind(kind ast.Kind) bool
1089
+ //go:linkname IsKeywordTypeNode github.com/microsoft/typescript-go/internal/ast.IsKeywordTypeNode
1090
+ func IsKeywordTypeNode(node *ast.Node) bool
1091
+ //go:linkname IsLabelName github.com/microsoft/typescript-go/internal/ast.IsLabelName
1092
+ func IsLabelName(node *ast.Node) bool
1093
+ //go:linkname IsLabelOfLabeledStatement github.com/microsoft/typescript-go/internal/ast.IsLabelOfLabeledStatement
1094
+ func IsLabelOfLabeledStatement(node *ast.Node) bool
1095
+ //go:linkname IsLabeledStatement github.com/microsoft/typescript-go/internal/ast.IsLabeledStatement
1096
+ func IsLabeledStatement(node *ast.Node) bool
1097
+ //go:linkname IsLateVisibilityPaintedStatement github.com/microsoft/typescript-go/internal/ast.IsLateVisibilityPaintedStatement
1098
+ func IsLateVisibilityPaintedStatement(node *ast.Node) bool
1099
+ //go:linkname IsLeftHandSideExpression github.com/microsoft/typescript-go/internal/ast.IsLeftHandSideExpression
1100
+ func IsLeftHandSideExpression(node *ast.Node) bool
1101
+ //go:linkname IsLet github.com/microsoft/typescript-go/internal/ast.IsLet
1102
+ func IsLet(node *ast.Node) bool
1103
+ //go:linkname IsLiteralComputedPropertyDeclarationName github.com/microsoft/typescript-go/internal/ast.IsLiteralComputedPropertyDeclarationName
1104
+ func IsLiteralComputedPropertyDeclarationName(node *ast.Node) bool
1105
+ //go:linkname IsLiteralExpression github.com/microsoft/typescript-go/internal/ast.IsLiteralExpression
1106
+ func IsLiteralExpression(node *ast.Node) bool
1107
+ //go:linkname IsLiteralImportTypeNode github.com/microsoft/typescript-go/internal/ast.IsLiteralImportTypeNode
1108
+ func IsLiteralImportTypeNode(node *ast.Node) bool
1109
+ //go:linkname IsLiteralKind github.com/microsoft/typescript-go/internal/ast.IsLiteralKind
1110
+ func IsLiteralKind(kind ast.Kind) bool
1111
+ //go:linkname IsLiteralLikeElementAccess github.com/microsoft/typescript-go/internal/ast.IsLiteralLikeElementAccess
1112
+ func IsLiteralLikeElementAccess(node *ast.Node) bool
1113
+ //go:linkname IsLiteralTypeNode github.com/microsoft/typescript-go/internal/ast.IsLiteralTypeNode
1114
+ func IsLiteralTypeNode(node *ast.Node) bool
1115
+ //go:linkname IsLocalsContainer github.com/microsoft/typescript-go/internal/ast.IsLocalsContainer
1116
+ func IsLocalsContainer(node *ast.Node) bool
1117
+ //go:linkname IsLogicalBinaryOperator github.com/microsoft/typescript-go/internal/ast.IsLogicalBinaryOperator
1118
+ func IsLogicalBinaryOperator(token ast.Kind) bool
1119
+ //go:linkname IsLogicalExpression github.com/microsoft/typescript-go/internal/ast.IsLogicalExpression
1120
+ func IsLogicalExpression(node *ast.Node) bool
1121
+ //go:linkname IsLogicalOperator github.com/microsoft/typescript-go/internal/ast.IsLogicalOperator
1122
+ func IsLogicalOperator(kind ast.Kind) bool
1123
+ //go:linkname IsLogicalOperatorOrHigher github.com/microsoft/typescript-go/internal/ast.IsLogicalOperatorOrHigher
1124
+ func IsLogicalOperatorOrHigher(kind ast.Kind) bool
1125
+ //go:linkname IsLogicalOrCoalescingAssignmentExpression github.com/microsoft/typescript-go/internal/ast.IsLogicalOrCoalescingAssignmentExpression
1126
+ func IsLogicalOrCoalescingAssignmentExpression(expr *ast.Node) bool
1127
+ //go:linkname IsLogicalOrCoalescingAssignmentOperator github.com/microsoft/typescript-go/internal/ast.IsLogicalOrCoalescingAssignmentOperator
1128
+ func IsLogicalOrCoalescingAssignmentOperator(kind ast.Kind) bool
1129
+ //go:linkname IsLogicalOrCoalescingBinaryExpression github.com/microsoft/typescript-go/internal/ast.IsLogicalOrCoalescingBinaryExpression
1130
+ func IsLogicalOrCoalescingBinaryExpression(expr *ast.Node) bool
1131
+ //go:linkname IsLogicalOrCoalescingBinaryOperator github.com/microsoft/typescript-go/internal/ast.IsLogicalOrCoalescingBinaryOperator
1132
+ func IsLogicalOrCoalescingBinaryOperator(token ast.Kind) bool
1133
+ //go:linkname IsMappedTypeNode github.com/microsoft/typescript-go/internal/ast.IsMappedTypeNode
1134
+ func IsMappedTypeNode(node *ast.Node) bool
1135
+ //go:linkname IsMemberName github.com/microsoft/typescript-go/internal/ast.IsMemberName
1136
+ func IsMemberName(node *ast.Node) bool
1137
+ //go:linkname IsMetaProperty github.com/microsoft/typescript-go/internal/ast.IsMetaProperty
1138
+ func IsMetaProperty(node *ast.Node) bool
1139
+ //go:linkname IsMethodDeclaration github.com/microsoft/typescript-go/internal/ast.IsMethodDeclaration
1140
+ func IsMethodDeclaration(node *ast.Node) bool
1141
+ //go:linkname IsMethodOrAccessor github.com/microsoft/typescript-go/internal/ast.IsMethodOrAccessor
1142
+ func IsMethodOrAccessor(node *ast.Node) bool
1143
+ //go:linkname IsMethodSignatureDeclaration github.com/microsoft/typescript-go/internal/ast.IsMethodSignatureDeclaration
1144
+ func IsMethodSignatureDeclaration(node *ast.Node) bool
1145
+ //go:linkname IsMissingDeclaration github.com/microsoft/typescript-go/internal/ast.IsMissingDeclaration
1146
+ func IsMissingDeclaration(node *ast.Node) bool
1147
+ //go:linkname IsModifier github.com/microsoft/typescript-go/internal/ast.IsModifier
1148
+ func IsModifier(node *ast.Node) bool
1149
+ //go:linkname IsModifierKind github.com/microsoft/typescript-go/internal/ast.IsModifierKind
1150
+ func IsModifierKind(kind ast.Kind) bool
1151
+ //go:linkname IsModifierLike github.com/microsoft/typescript-go/internal/ast.IsModifierLike
1152
+ func IsModifierLike(node *ast.Node) bool
1153
+ //go:linkname IsModuleAugmentationExternal github.com/microsoft/typescript-go/internal/ast.IsModuleAugmentationExternal
1154
+ func IsModuleAugmentationExternal(node *ast.Node) bool
1155
+ //go:linkname IsModuleBlock github.com/microsoft/typescript-go/internal/ast.IsModuleBlock
1156
+ func IsModuleBlock(node *ast.Node) bool
1157
+ //go:linkname IsModuleDeclaration github.com/microsoft/typescript-go/internal/ast.IsModuleDeclaration
1158
+ func IsModuleDeclaration(node *ast.Node) bool
1159
+ //go:linkname IsModuleExportsAccessExpression github.com/microsoft/typescript-go/internal/ast.IsModuleExportsAccessExpression
1160
+ func IsModuleExportsAccessExpression(node *ast.Node) bool
1161
+ //go:linkname IsModuleExportsQualifiedName github.com/microsoft/typescript-go/internal/ast.IsModuleExportsQualifiedName
1162
+ func IsModuleExportsQualifiedName(node *ast.Node) bool
1163
+ //go:linkname IsModuleIdentifier github.com/microsoft/typescript-go/internal/ast.IsModuleIdentifier
1164
+ func IsModuleIdentifier(node *ast.Node) bool
1165
+ //go:linkname IsModuleOrEnumDeclaration github.com/microsoft/typescript-go/internal/ast.IsModuleOrEnumDeclaration
1166
+ func IsModuleOrEnumDeclaration(node *ast.Node) bool
1167
+ //go:linkname IsModuleWithStringLiteralName github.com/microsoft/typescript-go/internal/ast.IsModuleWithStringLiteralName
1168
+ func IsModuleWithStringLiteralName(node *ast.Node) bool
1169
+ //go:linkname IsMultiplicativeOperator github.com/microsoft/typescript-go/internal/ast.IsMultiplicativeOperator
1170
+ func IsMultiplicativeOperator(kind ast.Kind) bool
1171
+ //go:linkname IsMultiplicativeOperatorOrHigher github.com/microsoft/typescript-go/internal/ast.IsMultiplicativeOperatorOrHigher
1172
+ func IsMultiplicativeOperatorOrHigher(kind ast.Kind) bool
1173
+ //go:linkname IsNamedEvaluationSource github.com/microsoft/typescript-go/internal/ast.IsNamedEvaluationSource
1174
+ func IsNamedEvaluationSource(node *ast.Node) bool
1175
+ //go:linkname IsNamedExports github.com/microsoft/typescript-go/internal/ast.IsNamedExports
1176
+ func IsNamedExports(node *ast.Node) bool
1177
+ //go:linkname IsNamedImports github.com/microsoft/typescript-go/internal/ast.IsNamedImports
1178
+ func IsNamedImports(node *ast.Node) bool
1179
+ //go:linkname IsNamedTupleMember github.com/microsoft/typescript-go/internal/ast.IsNamedTupleMember
1180
+ func IsNamedTupleMember(node *ast.Node) bool
1181
+ //go:linkname IsNamespaceExport github.com/microsoft/typescript-go/internal/ast.IsNamespaceExport
1182
+ func IsNamespaceExport(node *ast.Node) bool
1183
+ //go:linkname IsNamespaceExportDeclaration github.com/microsoft/typescript-go/internal/ast.IsNamespaceExportDeclaration
1184
+ func IsNamespaceExportDeclaration(node *ast.Node) bool
1185
+ //go:linkname IsNamespaceImport github.com/microsoft/typescript-go/internal/ast.IsNamespaceImport
1186
+ func IsNamespaceImport(node *ast.Node) bool
1187
+ //go:linkname IsNewExpression github.com/microsoft/typescript-go/internal/ast.IsNewExpression
1188
+ func IsNewExpression(node *ast.Node) bool
1189
+ //go:linkname IsNewExpressionTarget github.com/microsoft/typescript-go/internal/ast.IsNewExpressionTarget
1190
+ func IsNewExpressionTarget(node *ast.Node, includeElementAccess bool, skipPastOuterExpressions bool) bool
1191
+ //go:linkname IsNoSubstitutionTemplateLiteral github.com/microsoft/typescript-go/internal/ast.IsNoSubstitutionTemplateLiteral
1192
+ func IsNoSubstitutionTemplateLiteral(node *ast.Node) bool
1193
+ //go:linkname IsNodeDescendantOf github.com/microsoft/typescript-go/internal/ast.IsNodeDescendantOf
1194
+ func IsNodeDescendantOf(node *ast.Node, ancestor *ast.Node) bool
1195
+ //go:linkname IsNonContextualKeyword github.com/microsoft/typescript-go/internal/ast.IsNonContextualKeyword
1196
+ func IsNonContextualKeyword(token ast.Kind) bool
1197
+ //go:linkname IsNonLocalAlias github.com/microsoft/typescript-go/internal/ast.IsNonLocalAlias
1198
+ func IsNonLocalAlias(symbol *ast.Symbol, excludes ast.SymbolFlags) bool
1199
+ //go:linkname IsNonNullExpression github.com/microsoft/typescript-go/internal/ast.IsNonNullExpression
1200
+ func IsNonNullExpression(node *ast.Node) bool
1201
+ //go:linkname IsNonWhitespaceToken github.com/microsoft/typescript-go/internal/ast.IsNonWhitespaceToken
1202
+ func IsNonWhitespaceToken(node *ast.Node) bool
1203
+ //go:linkname IsNotEmittedStatement github.com/microsoft/typescript-go/internal/ast.IsNotEmittedStatement
1204
+ func IsNotEmittedStatement(node *ast.Node) bool
1205
+ //go:linkname IsNotEmittedTypeElement github.com/microsoft/typescript-go/internal/ast.IsNotEmittedTypeElement
1206
+ func IsNotEmittedTypeElement(node *ast.Node) bool
1207
+ //go:linkname IsNullishCoalesce github.com/microsoft/typescript-go/internal/ast.IsNullishCoalesce
1208
+ func IsNullishCoalesce(node *ast.Node) bool
1209
+ //go:linkname IsNumericLiteral github.com/microsoft/typescript-go/internal/ast.IsNumericLiteral
1210
+ func IsNumericLiteral(node *ast.Node) bool
1211
+ //go:linkname IsObjectBindingOrAssignmentElement github.com/microsoft/typescript-go/internal/ast.IsObjectBindingOrAssignmentElement
1212
+ func IsObjectBindingOrAssignmentElement(node *ast.Node) bool
1213
+ //go:linkname IsObjectBindingPattern github.com/microsoft/typescript-go/internal/ast.IsObjectBindingPattern
1214
+ func IsObjectBindingPattern(node *ast.Node) bool
1215
+ //go:linkname IsObjectLiteralElement github.com/microsoft/typescript-go/internal/ast.IsObjectLiteralElement
1216
+ func IsObjectLiteralElement(node *ast.Node) bool
1217
+ //go:linkname IsObjectLiteralExpression github.com/microsoft/typescript-go/internal/ast.IsObjectLiteralExpression
1218
+ func IsObjectLiteralExpression(node *ast.Node) bool
1219
+ //go:linkname IsObjectLiteralMethod github.com/microsoft/typescript-go/internal/ast.IsObjectLiteralMethod
1220
+ func IsObjectLiteralMethod(node *ast.Node) bool
1221
+ //go:linkname IsObjectLiteralOrClassExpressionMethodOrAccessor github.com/microsoft/typescript-go/internal/ast.IsObjectLiteralOrClassExpressionMethodOrAccessor
1222
+ func IsObjectLiteralOrClassExpressionMethodOrAccessor(node *ast.Node) bool
1223
+ //go:linkname IsObjectTypeDeclaration github.com/microsoft/typescript-go/internal/ast.IsObjectTypeDeclaration
1224
+ func IsObjectTypeDeclaration(node *ast.Node) bool
1225
+ //go:linkname IsOmittedExpression github.com/microsoft/typescript-go/internal/ast.IsOmittedExpression
1226
+ func IsOmittedExpression(node *ast.Node) bool
1227
+ //go:linkname IsOptionalChain github.com/microsoft/typescript-go/internal/ast.IsOptionalChain
1228
+ func IsOptionalChain(node *ast.Node) bool
1229
+ //go:linkname IsOptionalChainRoot github.com/microsoft/typescript-go/internal/ast.IsOptionalChainRoot
1230
+ func IsOptionalChainRoot(node *ast.Expression) bool
1231
+ //go:linkname IsOptionalTypeNode github.com/microsoft/typescript-go/internal/ast.IsOptionalTypeNode
1232
+ func IsOptionalTypeNode(node *ast.Node) bool
1233
+ //go:linkname IsOuterExpression github.com/microsoft/typescript-go/internal/ast.IsOuterExpression
1234
+ func IsOuterExpression(node *ast.Expression, kinds ast.OuterExpressionKinds) bool
1235
+ //go:linkname IsOutermostOptionalChain github.com/microsoft/typescript-go/internal/ast.IsOutermostOptionalChain
1236
+ func IsOutermostOptionalChain(node *ast.Expression) bool
1237
+ //go:linkname IsParameterDeclaration github.com/microsoft/typescript-go/internal/ast.IsParameterDeclaration
1238
+ func IsParameterDeclaration(node *ast.Node) bool
1239
+ //go:linkname IsParameterLike github.com/microsoft/typescript-go/internal/ast.IsParameterLike
1240
+ func IsParameterLike(node *ast.Node) bool
1241
+ //go:linkname IsParameterPropertyDeclaration github.com/microsoft/typescript-go/internal/ast.IsParameterPropertyDeclaration
1242
+ func IsParameterPropertyDeclaration(node *ast.Node, parent *ast.Node) bool
1243
+ //go:linkname IsParameterPropertyModifier github.com/microsoft/typescript-go/internal/ast.IsParameterPropertyModifier
1244
+ func IsParameterPropertyModifier(kind ast.Kind) bool
1245
+ //go:linkname IsParenthesizedExpression github.com/microsoft/typescript-go/internal/ast.IsParenthesizedExpression
1246
+ func IsParenthesizedExpression(node *ast.Node) bool
1247
+ //go:linkname IsParenthesizedTypeNode github.com/microsoft/typescript-go/internal/ast.IsParenthesizedTypeNode
1248
+ func IsParenthesizedTypeNode(node *ast.Node) bool
1249
+ //go:linkname IsParseTreeNode github.com/microsoft/typescript-go/internal/ast.IsParseTreeNode
1250
+ func IsParseTreeNode(node *ast.Node) bool
1251
+ //go:linkname IsPartOfExclusivelyTypeOnlyImportOrExportDeclaration github.com/microsoft/typescript-go/internal/ast.IsPartOfExclusivelyTypeOnlyImportOrExportDeclaration
1252
+ func IsPartOfExclusivelyTypeOnlyImportOrExportDeclaration(node *ast.Node) bool
1253
+ //go:linkname IsPartOfParameterDeclaration github.com/microsoft/typescript-go/internal/ast.IsPartOfParameterDeclaration
1254
+ func IsPartOfParameterDeclaration(node *ast.Node) bool
1255
+ //go:linkname IsPartOfTypeNode github.com/microsoft/typescript-go/internal/ast.IsPartOfTypeNode
1256
+ func IsPartOfTypeNode(node *ast.Node) bool
1257
+ //go:linkname IsPartOfTypeOnlyImportOrExportDeclaration github.com/microsoft/typescript-go/internal/ast.IsPartOfTypeOnlyImportOrExportDeclaration
1258
+ func IsPartOfTypeOnlyImportOrExportDeclaration(node *ast.Node) bool
1259
+ //go:linkname IsPartOfTypeQuery github.com/microsoft/typescript-go/internal/ast.IsPartOfTypeQuery
1260
+ func IsPartOfTypeQuery(node *ast.Node) bool
1261
+ //go:linkname IsPartiallyEmittedExpression github.com/microsoft/typescript-go/internal/ast.IsPartiallyEmittedExpression
1262
+ func IsPartiallyEmittedExpression(node *ast.Node) bool
1263
+ //go:linkname IsPlainJSFile github.com/microsoft/typescript-go/internal/ast.IsPlainJSFile
1264
+ func IsPlainJSFile(file *ast.SourceFile, checkJs core.Tristate) bool
1265
+ //go:linkname IsPostfixUnaryExpression github.com/microsoft/typescript-go/internal/ast.IsPostfixUnaryExpression
1266
+ func IsPostfixUnaryExpression(node *ast.Node) bool
1267
+ //go:linkname IsPostfixUnaryOperator github.com/microsoft/typescript-go/internal/ast.IsPostfixUnaryOperator
1268
+ func IsPostfixUnaryOperator(kind ast.Kind) bool
1269
+ //go:linkname IsPotentiallyExecutableNode github.com/microsoft/typescript-go/internal/ast.IsPotentiallyExecutableNode
1270
+ func IsPotentiallyExecutableNode(node *ast.Node) bool
1271
+ //go:linkname IsPrefixUnaryExpression github.com/microsoft/typescript-go/internal/ast.IsPrefixUnaryExpression
1272
+ func IsPrefixUnaryExpression(node *ast.Node) bool
1273
+ //go:linkname IsPrefixUnaryOperator github.com/microsoft/typescript-go/internal/ast.IsPrefixUnaryOperator
1274
+ func IsPrefixUnaryOperator(kind ast.Kind) bool
1275
+ //go:linkname IsPrimitiveLiteralValue github.com/microsoft/typescript-go/internal/ast.IsPrimitiveLiteralValue
1276
+ func IsPrimitiveLiteralValue(node *ast.Node, includeBigInt bool) bool
1277
+ //go:linkname IsPrivateIdentifier github.com/microsoft/typescript-go/internal/ast.IsPrivateIdentifier
1278
+ func IsPrivateIdentifier(node *ast.Node) bool
1279
+ //go:linkname IsPrivateIdentifierClassElementDeclaration github.com/microsoft/typescript-go/internal/ast.IsPrivateIdentifierClassElementDeclaration
1280
+ func IsPrivateIdentifierClassElementDeclaration(node *ast.Node) bool
1281
+ //go:linkname IsPrologueDirective github.com/microsoft/typescript-go/internal/ast.IsPrologueDirective
1282
+ func IsPrologueDirective(node *ast.Node) bool
1283
+ //go:linkname IsPropertyAccessEntityNameExpression github.com/microsoft/typescript-go/internal/ast.IsPropertyAccessEntityNameExpression
1284
+ func IsPropertyAccessEntityNameExpression(node *ast.Node, allowJS bool) bool
1285
+ //go:linkname IsPropertyAccessExpression github.com/microsoft/typescript-go/internal/ast.IsPropertyAccessExpression
1286
+ func IsPropertyAccessExpression(node *ast.Node) bool
1287
+ //go:linkname IsPropertyAccessOrQualifiedName github.com/microsoft/typescript-go/internal/ast.IsPropertyAccessOrQualifiedName
1288
+ func IsPropertyAccessOrQualifiedName(node *ast.Node) bool
1289
+ //go:linkname IsPropertyAssignment github.com/microsoft/typescript-go/internal/ast.IsPropertyAssignment
1290
+ func IsPropertyAssignment(node *ast.Node) bool
1291
+ //go:linkname IsPropertyDeclaration github.com/microsoft/typescript-go/internal/ast.IsPropertyDeclaration
1292
+ func IsPropertyDeclaration(node *ast.Node) bool
1293
+ //go:linkname IsPropertyName github.com/microsoft/typescript-go/internal/ast.IsPropertyName
1294
+ func IsPropertyName(node *ast.Node) bool
1295
+ //go:linkname IsPropertyNameLiteral github.com/microsoft/typescript-go/internal/ast.IsPropertyNameLiteral
1296
+ func IsPropertyNameLiteral(node *ast.Node) bool
1297
+ //go:linkname IsPropertySignatureDeclaration github.com/microsoft/typescript-go/internal/ast.IsPropertySignatureDeclaration
1298
+ func IsPropertySignatureDeclaration(node *ast.Node) bool
1299
+ //go:linkname IsProtoSetter github.com/microsoft/typescript-go/internal/ast.IsProtoSetter
1300
+ func IsProtoSetter(node *ast.Node) bool
1301
+ //go:linkname IsPrototypeAccess github.com/microsoft/typescript-go/internal/ast.IsPrototypeAccess
1302
+ func IsPrototypeAccess(node *ast.Node) bool
1303
+ //go:linkname IsPseudoLiteralKind github.com/microsoft/typescript-go/internal/ast.IsPseudoLiteralKind
1304
+ func IsPseudoLiteralKind(kind ast.Kind) bool
1305
+ //go:linkname IsPunctuationKind github.com/microsoft/typescript-go/internal/ast.IsPunctuationKind
1306
+ func IsPunctuationKind(kind ast.Kind) bool
1307
+ //go:linkname IsPushOrUnshiftIdentifier github.com/microsoft/typescript-go/internal/ast.IsPushOrUnshiftIdentifier
1308
+ func IsPushOrUnshiftIdentifier(node *ast.Node) bool
1309
+ //go:linkname IsQualifiedName github.com/microsoft/typescript-go/internal/ast.IsQualifiedName
1310
+ func IsQualifiedName(node *ast.Node) bool
1311
+ //go:linkname IsQuestionToken github.com/microsoft/typescript-go/internal/ast.IsQuestionToken
1312
+ func IsQuestionToken(node *ast.Node) bool
1313
+ //go:linkname IsRegularExpressionLiteral github.com/microsoft/typescript-go/internal/ast.IsRegularExpressionLiteral
1314
+ func IsRegularExpressionLiteral(node *ast.Node) bool
1315
+ //go:linkname IsRelationalOperator github.com/microsoft/typescript-go/internal/ast.IsRelationalOperator
1316
+ func IsRelationalOperator(kind ast.Kind) bool
1317
+ //go:linkname IsRelationalOperatorOrHigher github.com/microsoft/typescript-go/internal/ast.IsRelationalOperatorOrHigher
1318
+ func IsRelationalOperatorOrHigher(kind ast.Kind) bool
1319
+ //go:linkname IsRequireCall github.com/microsoft/typescript-go/internal/ast.IsRequireCall
1320
+ func IsRequireCall(node *ast.Node, requireStringLiteralLikeArgument bool) bool
1321
+ //go:linkname IsRequireVariableStatement github.com/microsoft/typescript-go/internal/ast.IsRequireVariableStatement
1322
+ func IsRequireVariableStatement(node *ast.Node) bool
1323
+ //go:linkname IsResolutionModeOverrideHost github.com/microsoft/typescript-go/internal/ast.IsResolutionModeOverrideHost
1324
+ func IsResolutionModeOverrideHost(node *ast.Node) bool
1325
+ //go:linkname IsRestTypeNode github.com/microsoft/typescript-go/internal/ast.IsRestTypeNode
1326
+ func IsRestTypeNode(node *ast.Node) bool
1327
+ //go:linkname IsReturnStatement github.com/microsoft/typescript-go/internal/ast.IsReturnStatement
1328
+ func IsReturnStatement(node *ast.Node) bool
1329
+ //go:linkname IsRightSideOfPropertyAccess github.com/microsoft/typescript-go/internal/ast.IsRightSideOfPropertyAccess
1330
+ func IsRightSideOfPropertyAccess(node *ast.Node) bool
1331
+ //go:linkname IsRightSideOfQualifiedNameOrPropertyAccess github.com/microsoft/typescript-go/internal/ast.IsRightSideOfQualifiedNameOrPropertyAccess
1332
+ func IsRightSideOfQualifiedNameOrPropertyAccess(node *ast.Node) bool
1333
+ //go:linkname IsSatisfiesExpression github.com/microsoft/typescript-go/internal/ast.IsSatisfiesExpression
1334
+ func IsSatisfiesExpression(node *ast.Node) bool
1335
+ //go:linkname IsSemicolonClassElement github.com/microsoft/typescript-go/internal/ast.IsSemicolonClassElement
1336
+ func IsSemicolonClassElement(node *ast.Node) bool
1337
+ //go:linkname IsSetAccessorDeclaration github.com/microsoft/typescript-go/internal/ast.IsSetAccessorDeclaration
1338
+ func IsSetAccessorDeclaration(node *ast.Node) bool
1339
+ //go:linkname IsShiftOperator github.com/microsoft/typescript-go/internal/ast.IsShiftOperator
1340
+ func IsShiftOperator(kind ast.Kind) bool
1341
+ //go:linkname IsShiftOperatorOrHigher github.com/microsoft/typescript-go/internal/ast.IsShiftOperatorOrHigher
1342
+ func IsShiftOperatorOrHigher(kind ast.Kind) bool
1343
+ //go:linkname IsShorthandPropertyAssignment github.com/microsoft/typescript-go/internal/ast.IsShorthandPropertyAssignment
1344
+ func IsShorthandPropertyAssignment(node *ast.Node) bool
1345
+ //go:linkname IsSignedNumericLiteral github.com/microsoft/typescript-go/internal/ast.IsSignedNumericLiteral
1346
+ func IsSignedNumericLiteral(node *ast.Node) bool
1347
+ //go:linkname IsSourceFile github.com/microsoft/typescript-go/internal/ast.IsSourceFile
1348
+ func IsSourceFile(node *ast.Node) bool
1349
+ //go:linkname IsSourceFileJS github.com/microsoft/typescript-go/internal/ast.IsSourceFileJS
1350
+ func IsSourceFileJS(file *ast.SourceFile) bool
1351
+ //go:linkname IsSpreadAssignment github.com/microsoft/typescript-go/internal/ast.IsSpreadAssignment
1352
+ func IsSpreadAssignment(node *ast.Node) bool
1353
+ //go:linkname IsSpreadElement github.com/microsoft/typescript-go/internal/ast.IsSpreadElement
1354
+ func IsSpreadElement(node *ast.Node) bool
1355
+ //go:linkname IsStatement github.com/microsoft/typescript-go/internal/ast.IsStatement
1356
+ func IsStatement(node *ast.Node) bool
1357
+ //go:linkname IsStatementButNotDeclaration github.com/microsoft/typescript-go/internal/ast.IsStatementButNotDeclaration
1358
+ func IsStatementButNotDeclaration(node *ast.Node) bool
1359
+ //go:linkname IsStatic github.com/microsoft/typescript-go/internal/ast.IsStatic
1360
+ func IsStatic(node *ast.Node) bool
1361
+ //go:linkname IsStringLiteral github.com/microsoft/typescript-go/internal/ast.IsStringLiteral
1362
+ func IsStringLiteral(node *ast.Node) bool
1363
+ //go:linkname IsStringLiteralLike github.com/microsoft/typescript-go/internal/ast.IsStringLiteralLike
1364
+ func IsStringLiteralLike(node *ast.Node) bool
1365
+ //go:linkname IsStringOrNumericLiteralLike github.com/microsoft/typescript-go/internal/ast.IsStringOrNumericLiteralLike
1366
+ func IsStringOrNumericLiteralLike(node *ast.Node) bool
1367
+ //go:linkname IsStringTextContainingNode github.com/microsoft/typescript-go/internal/ast.IsStringTextContainingNode
1368
+ func IsStringTextContainingNode(node *ast.Node) bool
1369
+ //go:linkname IsSuperCall github.com/microsoft/typescript-go/internal/ast.IsSuperCall
1370
+ func IsSuperCall(node *ast.Node) bool
1371
+ //go:linkname IsSuperProperty github.com/microsoft/typescript-go/internal/ast.IsSuperProperty
1372
+ func IsSuperProperty(node *ast.Node) bool
1373
+ //go:linkname IsSwitchStatement github.com/microsoft/typescript-go/internal/ast.IsSwitchStatement
1374
+ func IsSwitchStatement(node *ast.Node) bool
1375
+ //go:linkname IsSyntaxList github.com/microsoft/typescript-go/internal/ast.IsSyntaxList
1376
+ func IsSyntaxList(node *ast.Node) bool
1377
+ //go:linkname IsSyntheticExpression github.com/microsoft/typescript-go/internal/ast.IsSyntheticExpression
1378
+ func IsSyntheticExpression(node *ast.Node) bool
1379
+ //go:linkname IsSyntheticReferenceExpression github.com/microsoft/typescript-go/internal/ast.IsSyntheticReferenceExpression
1380
+ func IsSyntheticReferenceExpression(node *ast.Node) bool
1381
+ //go:linkname IsTagName github.com/microsoft/typescript-go/internal/ast.IsTagName
1382
+ func IsTagName(node *ast.Node) bool
1383
+ //go:linkname IsTaggedTemplateExpression github.com/microsoft/typescript-go/internal/ast.IsTaggedTemplateExpression
1384
+ func IsTaggedTemplateExpression(node *ast.Node) bool
1385
+ //go:linkname IsTaggedTemplateTag github.com/microsoft/typescript-go/internal/ast.IsTaggedTemplateTag
1386
+ func IsTaggedTemplateTag(node *ast.Node, includeElementAccess bool, skipPastOuterExpressions bool) bool
1387
+ //go:linkname IsTemplateExpression github.com/microsoft/typescript-go/internal/ast.IsTemplateExpression
1388
+ func IsTemplateExpression(node *ast.Node) bool
1389
+ //go:linkname IsTemplateHead github.com/microsoft/typescript-go/internal/ast.IsTemplateHead
1390
+ func IsTemplateHead(node *ast.Node) bool
1391
+ //go:linkname IsTemplateLiteralKind github.com/microsoft/typescript-go/internal/ast.IsTemplateLiteralKind
1392
+ func IsTemplateLiteralKind(kind ast.Kind) bool
1393
+ //go:linkname IsTemplateLiteralToken github.com/microsoft/typescript-go/internal/ast.IsTemplateLiteralToken
1394
+ func IsTemplateLiteralToken(node *ast.Node) bool
1395
+ //go:linkname IsTemplateLiteralTypeNode github.com/microsoft/typescript-go/internal/ast.IsTemplateLiteralTypeNode
1396
+ func IsTemplateLiteralTypeNode(node *ast.Node) bool
1397
+ //go:linkname IsTemplateLiteralTypeSpan github.com/microsoft/typescript-go/internal/ast.IsTemplateLiteralTypeSpan
1398
+ func IsTemplateLiteralTypeSpan(node *ast.Node) bool
1399
+ //go:linkname IsTemplateMiddle github.com/microsoft/typescript-go/internal/ast.IsTemplateMiddle
1400
+ func IsTemplateMiddle(node *ast.Node) bool
1401
+ //go:linkname IsTemplateSpan github.com/microsoft/typescript-go/internal/ast.IsTemplateSpan
1402
+ func IsTemplateSpan(node *ast.Node) bool
1403
+ //go:linkname IsTemplateTail github.com/microsoft/typescript-go/internal/ast.IsTemplateTail
1404
+ func IsTemplateTail(node *ast.Node) bool
1405
+ //go:linkname IsThisIdentifier github.com/microsoft/typescript-go/internal/ast.IsThisIdentifier
1406
+ func IsThisIdentifier(node *ast.Node) bool
1407
+ //go:linkname IsThisInTypeQuery github.com/microsoft/typescript-go/internal/ast.IsThisInTypeQuery
1408
+ func IsThisInTypeQuery(node *ast.Node) bool
1409
+ //go:linkname IsThisParameter github.com/microsoft/typescript-go/internal/ast.IsThisParameter
1410
+ func IsThisParameter(node *ast.Node) bool
1411
+ //go:linkname IsThisTypeNode github.com/microsoft/typescript-go/internal/ast.IsThisTypeNode
1412
+ func IsThisTypeNode(node *ast.Node) bool
1413
+ //go:linkname IsThrowStatement github.com/microsoft/typescript-go/internal/ast.IsThrowStatement
1414
+ func IsThrowStatement(node *ast.Node) bool
1415
+ //go:linkname IsToken github.com/microsoft/typescript-go/internal/ast.IsToken
1416
+ func IsToken(node *ast.Node) bool
1417
+ //go:linkname IsTokenKind github.com/microsoft/typescript-go/internal/ast.IsTokenKind
1418
+ func IsTokenKind(kind ast.Kind) bool
1419
+ //go:linkname IsTrivia github.com/microsoft/typescript-go/internal/ast.IsTrivia
1420
+ func IsTrivia(token ast.Kind) bool
1421
+ //go:linkname IsTriviaKind github.com/microsoft/typescript-go/internal/ast.IsTriviaKind
1422
+ func IsTriviaKind(kind ast.Kind) bool
1423
+ //go:linkname IsTryStatement github.com/microsoft/typescript-go/internal/ast.IsTryStatement
1424
+ func IsTryStatement(node *ast.Node) bool
1425
+ //go:linkname IsTupleTypeNode github.com/microsoft/typescript-go/internal/ast.IsTupleTypeNode
1426
+ func IsTupleTypeNode(node *ast.Node) bool
1427
+ //go:linkname IsTypeAliasDeclaration github.com/microsoft/typescript-go/internal/ast.IsTypeAliasDeclaration
1428
+ func IsTypeAliasDeclaration(node *ast.Node) bool
1429
+ //go:linkname IsTypeAssertion github.com/microsoft/typescript-go/internal/ast.IsTypeAssertion
1430
+ func IsTypeAssertion(node *ast.Node) bool
1431
+ //go:linkname IsTypeDeclaration github.com/microsoft/typescript-go/internal/ast.IsTypeDeclaration
1432
+ func IsTypeDeclaration(node *ast.Node) bool
1433
+ //go:linkname IsTypeDeclarationName github.com/microsoft/typescript-go/internal/ast.IsTypeDeclarationName
1434
+ func IsTypeDeclarationName(name *ast.Node) bool
1435
+ //go:linkname IsTypeElement github.com/microsoft/typescript-go/internal/ast.IsTypeElement
1436
+ func IsTypeElement(node *ast.Node) bool
1437
+ //go:linkname IsTypeKeywordToken github.com/microsoft/typescript-go/internal/ast.IsTypeKeywordToken
1438
+ func IsTypeKeywordToken(node *ast.Node) bool
1439
+ //go:linkname IsTypeLiteralNode github.com/microsoft/typescript-go/internal/ast.IsTypeLiteralNode
1440
+ func IsTypeLiteralNode(node *ast.Node) bool
1441
+ //go:linkname IsTypeNode github.com/microsoft/typescript-go/internal/ast.IsTypeNode
1442
+ func IsTypeNode(node *ast.Node) bool
1443
+ //go:linkname IsTypeNodeKind github.com/microsoft/typescript-go/internal/ast.IsTypeNodeKind
1444
+ func IsTypeNodeKind(kind ast.Kind) bool
1445
+ //go:linkname IsTypeOfExpression github.com/microsoft/typescript-go/internal/ast.IsTypeOfExpression
1446
+ func IsTypeOfExpression(node *ast.Node) bool
1447
+ //go:linkname IsTypeOnlyImportDeclaration github.com/microsoft/typescript-go/internal/ast.IsTypeOnlyImportDeclaration
1448
+ func IsTypeOnlyImportDeclaration(node *ast.Node) bool
1449
+ //go:linkname IsTypeOnlyImportOrExportDeclaration github.com/microsoft/typescript-go/internal/ast.IsTypeOnlyImportOrExportDeclaration
1450
+ func IsTypeOnlyImportOrExportDeclaration(node *ast.Node) bool
1451
+ //go:linkname IsTypeOperatorNode github.com/microsoft/typescript-go/internal/ast.IsTypeOperatorNode
1452
+ func IsTypeOperatorNode(node *ast.Node) bool
1453
+ //go:linkname IsTypeOrJSTypeAliasDeclaration github.com/microsoft/typescript-go/internal/ast.IsTypeOrJSTypeAliasDeclaration
1454
+ func IsTypeOrJSTypeAliasDeclaration(node *ast.Node) bool
1455
+ //go:linkname IsTypeParameterDeclaration github.com/microsoft/typescript-go/internal/ast.IsTypeParameterDeclaration
1456
+ func IsTypeParameterDeclaration(node *ast.Node) bool
1457
+ //go:linkname IsTypePredicateNode github.com/microsoft/typescript-go/internal/ast.IsTypePredicateNode
1458
+ func IsTypePredicateNode(node *ast.Node) bool
1459
+ //go:linkname IsTypeQueryNode github.com/microsoft/typescript-go/internal/ast.IsTypeQueryNode
1460
+ func IsTypeQueryNode(node *ast.Node) bool
1461
+ //go:linkname IsTypeReferenceNode github.com/microsoft/typescript-go/internal/ast.IsTypeReferenceNode
1462
+ func IsTypeReferenceNode(node *ast.Node) bool
1463
+ //go:linkname IsTypeReferenceType github.com/microsoft/typescript-go/internal/ast.IsTypeReferenceType
1464
+ func IsTypeReferenceType(node *ast.Node) bool
1465
+ //go:linkname IsUnaryExpression github.com/microsoft/typescript-go/internal/ast.IsUnaryExpression
1466
+ func IsUnaryExpression(node *ast.Node) bool
1467
+ //go:linkname IsUnionTypeNode github.com/microsoft/typescript-go/internal/ast.IsUnionTypeNode
1468
+ func IsUnionTypeNode(node *ast.Node) bool
1469
+ //go:linkname IsUnterminatedLiteral github.com/microsoft/typescript-go/internal/ast.IsUnterminatedLiteral
1470
+ func IsUnterminatedLiteral(node *ast.Node) bool
1471
+ //go:linkname IsValidTypeOnlyAliasUseSite github.com/microsoft/typescript-go/internal/ast.IsValidTypeOnlyAliasUseSite
1472
+ func IsValidTypeOnlyAliasUseSite(useSite *ast.Node) bool
1473
+ //go:linkname IsVarAwaitUsing github.com/microsoft/typescript-go/internal/ast.IsVarAwaitUsing
1474
+ func IsVarAwaitUsing(node *ast.Node) bool
1475
+ //go:linkname IsVarConst github.com/microsoft/typescript-go/internal/ast.IsVarConst
1476
+ func IsVarConst(node *ast.Node) bool
1477
+ //go:linkname IsVarConstLike github.com/microsoft/typescript-go/internal/ast.IsVarConstLike
1478
+ func IsVarConstLike(node *ast.Node) bool
1479
+ //go:linkname IsVarLet github.com/microsoft/typescript-go/internal/ast.IsVarLet
1480
+ func IsVarLet(node *ast.Node) bool
1481
+ //go:linkname IsVarUsing github.com/microsoft/typescript-go/internal/ast.IsVarUsing
1482
+ func IsVarUsing(node *ast.Node) bool
1483
+ //go:linkname IsVariableDeclaration github.com/microsoft/typescript-go/internal/ast.IsVariableDeclaration
1484
+ func IsVariableDeclaration(node *ast.Node) bool
1485
+ //go:linkname IsVariableDeclarationInitializedToBareOrAccessedRequire github.com/microsoft/typescript-go/internal/ast.IsVariableDeclarationInitializedToBareOrAccessedRequire
1486
+ func IsVariableDeclarationInitializedToBareOrAccessedRequire(node *ast.Node) bool
1487
+ //go:linkname IsVariableDeclarationInitializedToRequire github.com/microsoft/typescript-go/internal/ast.IsVariableDeclarationInitializedToRequire
1488
+ func IsVariableDeclarationInitializedToRequire(node *ast.Node) bool
1489
+ //go:linkname IsVariableDeclarationList github.com/microsoft/typescript-go/internal/ast.IsVariableDeclarationList
1490
+ func IsVariableDeclarationList(node *ast.Node) bool
1491
+ //go:linkname IsVariableLike github.com/microsoft/typescript-go/internal/ast.IsVariableLike
1492
+ func IsVariableLike(node *ast.Node) bool
1493
+ //go:linkname IsVariableParameterOrProperty github.com/microsoft/typescript-go/internal/ast.IsVariableParameterOrProperty
1494
+ func IsVariableParameterOrProperty(node *ast.Node) bool
1495
+ //go:linkname IsVariableStatement github.com/microsoft/typescript-go/internal/ast.IsVariableStatement
1496
+ func IsVariableStatement(node *ast.Node) bool
1497
+ //go:linkname IsVoidExpression github.com/microsoft/typescript-go/internal/ast.IsVoidExpression
1498
+ func IsVoidExpression(node *ast.Node) bool
1499
+ //go:linkname IsVoidZero github.com/microsoft/typescript-go/internal/ast.IsVoidZero
1500
+ func IsVoidZero(node *ast.Node) bool
1501
+ //go:linkname IsWhileStatement github.com/microsoft/typescript-go/internal/ast.IsWhileStatement
1502
+ func IsWhileStatement(node *ast.Node) bool
1503
+ //go:linkname IsWhitespaceOnlyJsxText github.com/microsoft/typescript-go/internal/ast.IsWhitespaceOnlyJsxText
1504
+ func IsWhitespaceOnlyJsxText(node *ast.Node) bool
1505
+ //go:linkname IsWithStatement github.com/microsoft/typescript-go/internal/ast.IsWithStatement
1506
+ func IsWithStatement(node *ast.Node) bool
1507
+ //go:linkname IsWriteAccess github.com/microsoft/typescript-go/internal/ast.IsWriteAccess
1508
+ func IsWriteAccess(node *ast.Node) bool
1509
+ //go:linkname IsWriteAccessForReference github.com/microsoft/typescript-go/internal/ast.IsWriteAccessForReference
1510
+ func IsWriteAccessForReference(node *ast.Node) bool
1511
+ //go:linkname IsWriteOnlyAccess github.com/microsoft/typescript-go/internal/ast.IsWriteOnlyAccess
1512
+ func IsWriteOnlyAccess(node *ast.Node) bool
1513
+ //go:linkname IsYieldExpression github.com/microsoft/typescript-go/internal/ast.IsYieldExpression
1514
+ func IsYieldExpression(node *ast.Node) bool
1515
+ type IterationStatementBase = ast.IterationStatementBase
1516
+ type JSDeclarationKind = ast.JSDeclarationKind
1517
+ const JSDeclarationKindExportsProperty = ast.JSDeclarationKindExportsProperty
1518
+ const JSDeclarationKindModuleExports = ast.JSDeclarationKindModuleExports
1519
+ const JSDeclarationKindNone = ast.JSDeclarationKindNone
1520
+ const JSDeclarationKindObjectDefinePropertyExports = ast.JSDeclarationKindObjectDefinePropertyExports
1521
+ const JSDeclarationKindObjectDefinePropertyValue = ast.JSDeclarationKindObjectDefinePropertyValue
1522
+ const JSDeclarationKindProperty = ast.JSDeclarationKindProperty
1523
+ const JSDeclarationKindThisProperty = ast.JSDeclarationKindThisProperty
1524
+ type JSDoc = ast.JSDoc
1525
+ type JSDocAllType = ast.JSDocAllType
1526
+ type JSDocAllTypeNode = ast.JSDocAllTypeNode
1527
+ type JSDocAugmentsTag = ast.JSDocAugmentsTag
1528
+ type JSDocAugmentsTagNode = ast.JSDocAugmentsTagNode
1529
+ type JSDocCallbackTag = ast.JSDocCallbackTag
1530
+ type JSDocCallbackTagNode = ast.JSDocCallbackTagNode
1531
+ type JSDocComment = ast.JSDocComment
1532
+ type JSDocCommentBase = ast.JSDocCommentBase
1533
+ type JSDocDeprecatedTag = ast.JSDocDeprecatedTag
1534
+ type JSDocDeprecatedTagNode = ast.JSDocDeprecatedTagNode
1535
+ type JSDocFullName = ast.JSDocFullName
1536
+ type JSDocImplementsTag = ast.JSDocImplementsTag
1537
+ type JSDocImplementsTagNode = ast.JSDocImplementsTagNode
1538
+ type JSDocImportTag = ast.JSDocImportTag
1539
+ type JSDocImportTagNode = ast.JSDocImportTagNode
1540
+ type JSDocLink = ast.JSDocLink
1541
+ type JSDocLinkCode = ast.JSDocLinkCode
1542
+ type JSDocLinkCodeNode = ast.JSDocLinkCodeNode
1543
+ type JSDocLinkNode = ast.JSDocLinkNode
1544
+ type JSDocLinkPlain = ast.JSDocLinkPlain
1545
+ type JSDocLinkPlainNode = ast.JSDocLinkPlainNode
1546
+ type JSDocNameReference = ast.JSDocNameReference
1547
+ type JSDocNameReferenceNode = ast.JSDocNameReferenceNode
1548
+ type JSDocNode = ast.JSDocNode
1549
+ type JSDocNodeSyntaxKind = ast.JSDocNodeSyntaxKind
1550
+ type JSDocNonNullableType = ast.JSDocNonNullableType
1551
+ type JSDocNonNullableTypeNode = ast.JSDocNonNullableTypeNode
1552
+ type JSDocNullableType = ast.JSDocNullableType
1553
+ type JSDocNullableTypeNode = ast.JSDocNullableTypeNode
1554
+ type JSDocOptionalType = ast.JSDocOptionalType
1555
+ type JSDocOptionalTypeNode = ast.JSDocOptionalTypeNode
1556
+ type JSDocOverloadTag = ast.JSDocOverloadTag
1557
+ type JSDocOverloadTagNode = ast.JSDocOverloadTagNode
1558
+ type JSDocOverrideTag = ast.JSDocOverrideTag
1559
+ type JSDocOverrideTagNode = ast.JSDocOverrideTagNode
1560
+ type JSDocParameterOrPropertyTag = ast.JSDocParameterOrPropertyTag
1561
+ type JSDocParameterOrPropertyTagNode = ast.JSDocParameterOrPropertyTagNode
1562
+ type JSDocPrivateTag = ast.JSDocPrivateTag
1563
+ type JSDocPrivateTagNode = ast.JSDocPrivateTagNode
1564
+ type JSDocProtectedTag = ast.JSDocProtectedTag
1565
+ type JSDocProtectedTagNode = ast.JSDocProtectedTagNode
1566
+ type JSDocPublicTag = ast.JSDocPublicTag
1567
+ type JSDocPublicTagNode = ast.JSDocPublicTagNode
1568
+ type JSDocReadonlyTag = ast.JSDocReadonlyTag
1569
+ type JSDocReadonlyTagNode = ast.JSDocReadonlyTagNode
1570
+ type JSDocReturnTag = ast.JSDocReturnTag
1571
+ type JSDocReturnTagNode = ast.JSDocReturnTagNode
1572
+ type JSDocSatisfiesTag = ast.JSDocSatisfiesTag
1573
+ type JSDocSatisfiesTagNode = ast.JSDocSatisfiesTagNode
1574
+ type JSDocSeeTag = ast.JSDocSeeTag
1575
+ type JSDocSeeTagNode = ast.JSDocSeeTagNode
1576
+ type JSDocSignature = ast.JSDocSignature
1577
+ type JSDocSignatureNode = ast.JSDocSignatureNode
1578
+ type JSDocTag = ast.JSDocTag
1579
+ type JSDocTagBase = ast.JSDocTagBase
1580
+ type JSDocTemplateTag = ast.JSDocTemplateTag
1581
+ type JSDocTemplateTagNode = ast.JSDocTemplateTagNode
1582
+ type JSDocText = ast.JSDocText
1583
+ type JSDocTextNode = ast.JSDocTextNode
1584
+ type JSDocThisTag = ast.JSDocThisTag
1585
+ type JSDocThisTagNode = ast.JSDocThisTagNode
1586
+ type JSDocThrowsTag = ast.JSDocThrowsTag
1587
+ type JSDocThrowsTagNode = ast.JSDocThrowsTagNode
1588
+ type JSDocTypeBase = ast.JSDocTypeBase
1589
+ type JSDocTypeExpression = ast.JSDocTypeExpression
1590
+ type JSDocTypeExpressionNode = ast.JSDocTypeExpressionNode
1591
+ type JSDocTypeLiteral = ast.JSDocTypeLiteral
1592
+ type JSDocTypeLiteralNode = ast.JSDocTypeLiteralNode
1593
+ type JSDocTypeTag = ast.JSDocTypeTag
1594
+ type JSDocTypeTagNode = ast.JSDocTypeTagNode
1595
+ type JSDocTypedefTag = ast.JSDocTypedefTag
1596
+ type JSDocTypedefTagNode = ast.JSDocTypedefTagNode
1597
+ type JSDocUnknownTag = ast.JSDocUnknownTag
1598
+ type JSDocUnknownTagNode = ast.JSDocUnknownTagNode
1599
+ type JSDocVariadicType = ast.JSDocVariadicType
1600
+ type JSDocVariadicTypeNode = ast.JSDocVariadicTypeNode
1601
+ type JsxAttribute = ast.JsxAttribute
1602
+ type JsxAttributeLike = ast.JsxAttributeLike
1603
+ type JsxAttributeList = ast.JsxAttributeList
1604
+ type JsxAttributeName = ast.JsxAttributeName
1605
+ type JsxAttributeNode = ast.JsxAttributeNode
1606
+ type JsxAttributeValue = ast.JsxAttributeValue
1607
+ type JsxAttributes = ast.JsxAttributes
1608
+ type JsxAttributesNode = ast.JsxAttributesNode
1609
+ type JsxChild = ast.JsxChild
1610
+ type JsxChildList = ast.JsxChildList
1611
+ type JsxClosingElement = ast.JsxClosingElement
1612
+ type JsxClosingElementNode = ast.JsxClosingElementNode
1613
+ type JsxClosingFragment = ast.JsxClosingFragment
1614
+ type JsxClosingFragmentNode = ast.JsxClosingFragmentNode
1615
+ type JsxElement = ast.JsxElement
1616
+ type JsxElementNode = ast.JsxElementNode
1617
+ type JsxExpression = ast.JsxExpression
1618
+ type JsxExpressionNode = ast.JsxExpressionNode
1619
+ type JsxFragment = ast.JsxFragment
1620
+ type JsxFragmentNode = ast.JsxFragmentNode
1621
+ type JsxNamespacedName = ast.JsxNamespacedName
1622
+ type JsxNamespacedNameNode = ast.JsxNamespacedNameNode
1623
+ type JsxOpeningElement = ast.JsxOpeningElement
1624
+ type JsxOpeningElementNode = ast.JsxOpeningElementNode
1625
+ type JsxOpeningFragment = ast.JsxOpeningFragment
1626
+ type JsxOpeningFragmentNode = ast.JsxOpeningFragmentNode
1627
+ type JsxOpeningLikeElement = ast.JsxOpeningLikeElement
1628
+ type JsxSelfClosingElement = ast.JsxSelfClosingElement
1629
+ type JsxSelfClosingElementNode = ast.JsxSelfClosingElementNode
1630
+ type JsxSpreadAttribute = ast.JsxSpreadAttribute
1631
+ type JsxSpreadAttributeNode = ast.JsxSpreadAttributeNode
1632
+ type JsxTagNameExpression = ast.JsxTagNameExpression
1633
+ type JsxText = ast.JsxText
1634
+ type JsxTextNode = ast.JsxTextNode
1635
+ type JsxTokenSyntaxKind = ast.JsxTokenSyntaxKind
1636
+ type KeywordExpression = ast.KeywordExpression
1637
+ type KeywordExpressionNode = ast.KeywordExpressionNode
1638
+ type KeywordExpressionSyntaxKind = ast.KeywordExpressionSyntaxKind
1639
+ type KeywordSyntaxKind = ast.KeywordSyntaxKind
1640
+ type KeywordTypeNode = ast.KeywordTypeNode
1641
+ type KeywordTypeNodeNode = ast.KeywordTypeNodeNode
1642
+ type KeywordTypeSyntaxKind = ast.KeywordTypeSyntaxKind
1643
+ type Kind = ast.Kind
1644
+ const KindAbstractKeyword = ast.KindAbstractKeyword
1645
+ const KindAccessorKeyword = ast.KindAccessorKeyword
1646
+ const KindAmpersandAmpersandEqualsToken = ast.KindAmpersandAmpersandEqualsToken
1647
+ const KindAmpersandAmpersandToken = ast.KindAmpersandAmpersandToken
1648
+ const KindAmpersandEqualsToken = ast.KindAmpersandEqualsToken
1649
+ const KindAmpersandToken = ast.KindAmpersandToken
1650
+ const KindAnyKeyword = ast.KindAnyKeyword
1651
+ const KindArrayBindingPattern = ast.KindArrayBindingPattern
1652
+ const KindArrayLiteralExpression = ast.KindArrayLiteralExpression
1653
+ const KindArrayType = ast.KindArrayType
1654
+ const KindArrowFunction = ast.KindArrowFunction
1655
+ const KindAsExpression = ast.KindAsExpression
1656
+ const KindAsKeyword = ast.KindAsKeyword
1657
+ const KindAssertKeyword = ast.KindAssertKeyword
1658
+ const KindAssertsKeyword = ast.KindAssertsKeyword
1659
+ const KindAsteriskAsteriskEqualsToken = ast.KindAsteriskAsteriskEqualsToken
1660
+ const KindAsteriskAsteriskToken = ast.KindAsteriskAsteriskToken
1661
+ const KindAsteriskEqualsToken = ast.KindAsteriskEqualsToken
1662
+ const KindAsteriskToken = ast.KindAsteriskToken
1663
+ const KindAsyncKeyword = ast.KindAsyncKeyword
1664
+ const KindAtToken = ast.KindAtToken
1665
+ const KindAwaitExpression = ast.KindAwaitExpression
1666
+ const KindAwaitKeyword = ast.KindAwaitKeyword
1667
+ const KindBacktickToken = ast.KindBacktickToken
1668
+ const KindBarBarEqualsToken = ast.KindBarBarEqualsToken
1669
+ const KindBarBarToken = ast.KindBarBarToken
1670
+ const KindBarEqualsToken = ast.KindBarEqualsToken
1671
+ const KindBarToken = ast.KindBarToken
1672
+ const KindBigIntKeyword = ast.KindBigIntKeyword
1673
+ const KindBigIntLiteral = ast.KindBigIntLiteral
1674
+ const KindBinaryExpression = ast.KindBinaryExpression
1675
+ const KindBindingElement = ast.KindBindingElement
1676
+ const KindBlock = ast.KindBlock
1677
+ const KindBooleanKeyword = ast.KindBooleanKeyword
1678
+ const KindBreakKeyword = ast.KindBreakKeyword
1679
+ const KindBreakStatement = ast.KindBreakStatement
1680
+ const KindCallExpression = ast.KindCallExpression
1681
+ const KindCallSignature = ast.KindCallSignature
1682
+ const KindCaretEqualsToken = ast.KindCaretEqualsToken
1683
+ const KindCaretToken = ast.KindCaretToken
1684
+ const KindCaseBlock = ast.KindCaseBlock
1685
+ const KindCaseClause = ast.KindCaseClause
1686
+ const KindCaseKeyword = ast.KindCaseKeyword
1687
+ const KindCatchClause = ast.KindCatchClause
1688
+ const KindCatchKeyword = ast.KindCatchKeyword
1689
+ const KindClassDeclaration = ast.KindClassDeclaration
1690
+ const KindClassExpression = ast.KindClassExpression
1691
+ const KindClassKeyword = ast.KindClassKeyword
1692
+ const KindClassStaticBlockDeclaration = ast.KindClassStaticBlockDeclaration
1693
+ const KindCloseBraceToken = ast.KindCloseBraceToken
1694
+ const KindCloseBracketToken = ast.KindCloseBracketToken
1695
+ const KindCloseParenToken = ast.KindCloseParenToken
1696
+ const KindColonToken = ast.KindColonToken
1697
+ const KindCommaToken = ast.KindCommaToken
1698
+ const KindComputedPropertyName = ast.KindComputedPropertyName
1699
+ const KindConditionalExpression = ast.KindConditionalExpression
1700
+ const KindConditionalType = ast.KindConditionalType
1701
+ const KindConflictMarkerTrivia = ast.KindConflictMarkerTrivia
1702
+ const KindConstKeyword = ast.KindConstKeyword
1703
+ const KindConstructSignature = ast.KindConstructSignature
1704
+ const KindConstructor = ast.KindConstructor
1705
+ const KindConstructorKeyword = ast.KindConstructorKeyword
1706
+ const KindConstructorType = ast.KindConstructorType
1707
+ const KindContinueKeyword = ast.KindContinueKeyword
1708
+ const KindContinueStatement = ast.KindContinueStatement
1709
+ const KindCount = ast.KindCount
1710
+ const KindDebuggerKeyword = ast.KindDebuggerKeyword
1711
+ const KindDebuggerStatement = ast.KindDebuggerStatement
1712
+ const KindDeclareKeyword = ast.KindDeclareKeyword
1713
+ const KindDecorator = ast.KindDecorator
1714
+ const KindDefaultClause = ast.KindDefaultClause
1715
+ const KindDefaultKeyword = ast.KindDefaultKeyword
1716
+ const KindDeferKeyword = ast.KindDeferKeyword
1717
+ const KindDeleteExpression = ast.KindDeleteExpression
1718
+ const KindDeleteKeyword = ast.KindDeleteKeyword
1719
+ const KindDoKeyword = ast.KindDoKeyword
1720
+ const KindDoStatement = ast.KindDoStatement
1721
+ const KindDotDotDotToken = ast.KindDotDotDotToken
1722
+ const KindDotToken = ast.KindDotToken
1723
+ const KindElementAccessExpression = ast.KindElementAccessExpression
1724
+ const KindElseKeyword = ast.KindElseKeyword
1725
+ const KindEmptyStatement = ast.KindEmptyStatement
1726
+ const KindEndOfFile = ast.KindEndOfFile
1727
+ const KindEnumDeclaration = ast.KindEnumDeclaration
1728
+ const KindEnumKeyword = ast.KindEnumKeyword
1729
+ const KindEnumMember = ast.KindEnumMember
1730
+ const KindEqualsEqualsEqualsToken = ast.KindEqualsEqualsEqualsToken
1731
+ const KindEqualsEqualsToken = ast.KindEqualsEqualsToken
1732
+ const KindEqualsGreaterThanToken = ast.KindEqualsGreaterThanToken
1733
+ const KindEqualsToken = ast.KindEqualsToken
1734
+ const KindExclamationEqualsEqualsToken = ast.KindExclamationEqualsEqualsToken
1735
+ const KindExclamationEqualsToken = ast.KindExclamationEqualsToken
1736
+ const KindExclamationToken = ast.KindExclamationToken
1737
+ const KindExportAssignment = ast.KindExportAssignment
1738
+ const KindExportDeclaration = ast.KindExportDeclaration
1739
+ const KindExportKeyword = ast.KindExportKeyword
1740
+ const KindExportSpecifier = ast.KindExportSpecifier
1741
+ const KindExpressionStatement = ast.KindExpressionStatement
1742
+ const KindExpressionWithTypeArguments = ast.KindExpressionWithTypeArguments
1743
+ const KindExtendsKeyword = ast.KindExtendsKeyword
1744
+ const KindExternalModuleReference = ast.KindExternalModuleReference
1745
+ const KindFalseKeyword = ast.KindFalseKeyword
1746
+ const KindFinallyKeyword = ast.KindFinallyKeyword
1747
+ const KindFirstAssignment = ast.KindFirstAssignment
1748
+ const KindFirstBinaryOperator = ast.KindFirstBinaryOperator
1749
+ const KindFirstCompoundAssignment = ast.KindFirstCompoundAssignment
1750
+ const KindFirstContextualKeyword = ast.KindFirstContextualKeyword
1751
+ const KindFirstFutureReservedWord = ast.KindFirstFutureReservedWord
1752
+ const KindFirstJSDocNode = ast.KindFirstJSDocNode
1753
+ const KindFirstJSDocTagNode = ast.KindFirstJSDocTagNode
1754
+ const KindFirstKeyword = ast.KindFirstKeyword
1755
+ const KindFirstLiteralToken = ast.KindFirstLiteralToken
1756
+ const KindFirstNode = ast.KindFirstNode
1757
+ const KindFirstPunctuation = ast.KindFirstPunctuation
1758
+ const KindFirstReservedWord = ast.KindFirstReservedWord
1759
+ const KindFirstStatement = ast.KindFirstStatement
1760
+ const KindFirstTemplateToken = ast.KindFirstTemplateToken
1761
+ const KindFirstToken = ast.KindFirstToken
1762
+ const KindFirstTriviaToken = ast.KindFirstTriviaToken
1763
+ const KindFirstTypeNode = ast.KindFirstTypeNode
1764
+ const KindForInStatement = ast.KindForInStatement
1765
+ const KindForKeyword = ast.KindForKeyword
1766
+ const KindForOfStatement = ast.KindForOfStatement
1767
+ const KindForStatement = ast.KindForStatement
1768
+ const KindFromKeyword = ast.KindFromKeyword
1769
+ const KindFunctionDeclaration = ast.KindFunctionDeclaration
1770
+ const KindFunctionExpression = ast.KindFunctionExpression
1771
+ const KindFunctionKeyword = ast.KindFunctionKeyword
1772
+ const KindFunctionType = ast.KindFunctionType
1773
+ const KindGetAccessor = ast.KindGetAccessor
1774
+ const KindGetKeyword = ast.KindGetKeyword
1775
+ const KindGlobalKeyword = ast.KindGlobalKeyword
1776
+ const KindGreaterThanEqualsToken = ast.KindGreaterThanEqualsToken
1777
+ const KindGreaterThanGreaterThanEqualsToken = ast.KindGreaterThanGreaterThanEqualsToken
1778
+ const KindGreaterThanGreaterThanGreaterThanEqualsToken = ast.KindGreaterThanGreaterThanGreaterThanEqualsToken
1779
+ const KindGreaterThanGreaterThanGreaterThanToken = ast.KindGreaterThanGreaterThanGreaterThanToken
1780
+ const KindGreaterThanGreaterThanToken = ast.KindGreaterThanGreaterThanToken
1781
+ const KindGreaterThanToken = ast.KindGreaterThanToken
1782
+ const KindHashToken = ast.KindHashToken
1783
+ const KindHeritageClause = ast.KindHeritageClause
1784
+ const KindIdentifier = ast.KindIdentifier
1785
+ const KindIfKeyword = ast.KindIfKeyword
1786
+ const KindIfStatement = ast.KindIfStatement
1787
+ const KindImmediateKeyword = ast.KindImmediateKeyword
1788
+ const KindImplementsKeyword = ast.KindImplementsKeyword
1789
+ const KindImportAttribute = ast.KindImportAttribute
1790
+ const KindImportAttributes = ast.KindImportAttributes
1791
+ const KindImportClause = ast.KindImportClause
1792
+ const KindImportDeclaration = ast.KindImportDeclaration
1793
+ const KindImportEqualsDeclaration = ast.KindImportEqualsDeclaration
1794
+ const KindImportKeyword = ast.KindImportKeyword
1795
+ const KindImportSpecifier = ast.KindImportSpecifier
1796
+ const KindImportType = ast.KindImportType
1797
+ const KindInKeyword = ast.KindInKeyword
1798
+ const KindIndexSignature = ast.KindIndexSignature
1799
+ const KindIndexedAccessType = ast.KindIndexedAccessType
1800
+ const KindInferKeyword = ast.KindInferKeyword
1801
+ const KindInferType = ast.KindInferType
1802
+ const KindInstanceOfKeyword = ast.KindInstanceOfKeyword
1803
+ const KindInterfaceDeclaration = ast.KindInterfaceDeclaration
1804
+ const KindInterfaceKeyword = ast.KindInterfaceKeyword
1805
+ const KindIntersectionType = ast.KindIntersectionType
1806
+ const KindIntrinsicKeyword = ast.KindIntrinsicKeyword
1807
+ const KindIsKeyword = ast.KindIsKeyword
1808
+ const KindJSDoc = ast.KindJSDoc
1809
+ const KindJSDocAllType = ast.KindJSDocAllType
1810
+ const KindJSDocAugmentsTag = ast.KindJSDocAugmentsTag
1811
+ const KindJSDocCallbackTag = ast.KindJSDocCallbackTag
1812
+ const KindJSDocCommentTextToken = ast.KindJSDocCommentTextToken
1813
+ const KindJSDocDeprecatedTag = ast.KindJSDocDeprecatedTag
1814
+ const KindJSDocImplementsTag = ast.KindJSDocImplementsTag
1815
+ const KindJSDocImportTag = ast.KindJSDocImportTag
1816
+ const KindJSDocLink = ast.KindJSDocLink
1817
+ const KindJSDocLinkCode = ast.KindJSDocLinkCode
1818
+ const KindJSDocLinkPlain = ast.KindJSDocLinkPlain
1819
+ const KindJSDocNameReference = ast.KindJSDocNameReference
1820
+ const KindJSDocNonNullableType = ast.KindJSDocNonNullableType
1821
+ const KindJSDocNullableType = ast.KindJSDocNullableType
1822
+ const KindJSDocOptionalType = ast.KindJSDocOptionalType
1823
+ const KindJSDocOverloadTag = ast.KindJSDocOverloadTag
1824
+ const KindJSDocOverrideTag = ast.KindJSDocOverrideTag
1825
+ const KindJSDocParameterTag = ast.KindJSDocParameterTag
1826
+ const KindJSDocPrivateTag = ast.KindJSDocPrivateTag
1827
+ const KindJSDocPropertyTag = ast.KindJSDocPropertyTag
1828
+ const KindJSDocProtectedTag = ast.KindJSDocProtectedTag
1829
+ const KindJSDocPublicTag = ast.KindJSDocPublicTag
1830
+ const KindJSDocReadonlyTag = ast.KindJSDocReadonlyTag
1831
+ const KindJSDocReturnTag = ast.KindJSDocReturnTag
1832
+ const KindJSDocSatisfiesTag = ast.KindJSDocSatisfiesTag
1833
+ const KindJSDocSeeTag = ast.KindJSDocSeeTag
1834
+ const KindJSDocSignature = ast.KindJSDocSignature
1835
+ const KindJSDocTemplateTag = ast.KindJSDocTemplateTag
1836
+ const KindJSDocText = ast.KindJSDocText
1837
+ const KindJSDocThisTag = ast.KindJSDocThisTag
1838
+ const KindJSDocThrowsTag = ast.KindJSDocThrowsTag
1839
+ const KindJSDocTypeExpression = ast.KindJSDocTypeExpression
1840
+ const KindJSDocTypeLiteral = ast.KindJSDocTypeLiteral
1841
+ const KindJSDocTypeTag = ast.KindJSDocTypeTag
1842
+ const KindJSDocTypedefTag = ast.KindJSDocTypedefTag
1843
+ const KindJSDocUnknownTag = ast.KindJSDocUnknownTag
1844
+ const KindJSDocVariadicType = ast.KindJSDocVariadicType
1845
+ const KindJSImportDeclaration = ast.KindJSImportDeclaration
1846
+ const KindJSTypeAliasDeclaration = ast.KindJSTypeAliasDeclaration
1847
+ const KindJsxAttribute = ast.KindJsxAttribute
1848
+ const KindJsxAttributes = ast.KindJsxAttributes
1849
+ const KindJsxClosingElement = ast.KindJsxClosingElement
1850
+ const KindJsxClosingFragment = ast.KindJsxClosingFragment
1851
+ const KindJsxElement = ast.KindJsxElement
1852
+ const KindJsxExpression = ast.KindJsxExpression
1853
+ const KindJsxFragment = ast.KindJsxFragment
1854
+ const KindJsxNamespacedName = ast.KindJsxNamespacedName
1855
+ const KindJsxOpeningElement = ast.KindJsxOpeningElement
1856
+ const KindJsxOpeningFragment = ast.KindJsxOpeningFragment
1857
+ const KindJsxSelfClosingElement = ast.KindJsxSelfClosingElement
1858
+ const KindJsxSpreadAttribute = ast.KindJsxSpreadAttribute
1859
+ const KindJsxText = ast.KindJsxText
1860
+ const KindJsxTextAllWhiteSpaces = ast.KindJsxTextAllWhiteSpaces
1861
+ const KindKeyOfKeyword = ast.KindKeyOfKeyword
1862
+ const KindLabeledStatement = ast.KindLabeledStatement
1863
+ const KindLastAssignment = ast.KindLastAssignment
1864
+ const KindLastBinaryOperator = ast.KindLastBinaryOperator
1865
+ const KindLastCompoundAssignment = ast.KindLastCompoundAssignment
1866
+ const KindLastContextualKeyword = ast.KindLastContextualKeyword
1867
+ const KindLastFutureReservedWord = ast.KindLastFutureReservedWord
1868
+ const KindLastJSDocNode = ast.KindLastJSDocNode
1869
+ const KindLastJSDocTagNode = ast.KindLastJSDocTagNode
1870
+ const KindLastKeyword = ast.KindLastKeyword
1871
+ const KindLastLiteralToken = ast.KindLastLiteralToken
1872
+ const KindLastPunctuation = ast.KindLastPunctuation
1873
+ const KindLastReservedWord = ast.KindLastReservedWord
1874
+ const KindLastStatement = ast.KindLastStatement
1875
+ const KindLastTemplateToken = ast.KindLastTemplateToken
1876
+ const KindLastToken = ast.KindLastToken
1877
+ const KindLastTriviaToken = ast.KindLastTriviaToken
1878
+ const KindLastTypeNode = ast.KindLastTypeNode
1879
+ const KindLastUnaryOperator = ast.KindLastUnaryOperator
1880
+ const KindLessThanEqualsToken = ast.KindLessThanEqualsToken
1881
+ const KindLessThanLessThanEqualsToken = ast.KindLessThanLessThanEqualsToken
1882
+ const KindLessThanLessThanToken = ast.KindLessThanLessThanToken
1883
+ const KindLessThanSlashToken = ast.KindLessThanSlashToken
1884
+ const KindLessThanToken = ast.KindLessThanToken
1885
+ const KindLetKeyword = ast.KindLetKeyword
1886
+ const KindLiteralType = ast.KindLiteralType
1887
+ const KindMappedType = ast.KindMappedType
1888
+ const KindMetaProperty = ast.KindMetaProperty
1889
+ const KindMethodDeclaration = ast.KindMethodDeclaration
1890
+ const KindMethodSignature = ast.KindMethodSignature
1891
+ const KindMinusEqualsToken = ast.KindMinusEqualsToken
1892
+ const KindMinusMinusToken = ast.KindMinusMinusToken
1893
+ const KindMinusToken = ast.KindMinusToken
1894
+ const KindMissingDeclaration = ast.KindMissingDeclaration
1895
+ const KindModuleBlock = ast.KindModuleBlock
1896
+ const KindModuleDeclaration = ast.KindModuleDeclaration
1897
+ const KindModuleKeyword = ast.KindModuleKeyword
1898
+ const KindMultiLineCommentTrivia = ast.KindMultiLineCommentTrivia
1899
+ const KindNamedExports = ast.KindNamedExports
1900
+ const KindNamedImports = ast.KindNamedImports
1901
+ const KindNamedTupleMember = ast.KindNamedTupleMember
1902
+ const KindNamespaceExport = ast.KindNamespaceExport
1903
+ const KindNamespaceExportDeclaration = ast.KindNamespaceExportDeclaration
1904
+ const KindNamespaceImport = ast.KindNamespaceImport
1905
+ const KindNamespaceKeyword = ast.KindNamespaceKeyword
1906
+ const KindNeverKeyword = ast.KindNeverKeyword
1907
+ const KindNewExpression = ast.KindNewExpression
1908
+ const KindNewKeyword = ast.KindNewKeyword
1909
+ const KindNewLineTrivia = ast.KindNewLineTrivia
1910
+ const KindNoSubstitutionTemplateLiteral = ast.KindNoSubstitutionTemplateLiteral
1911
+ const KindNonNullExpression = ast.KindNonNullExpression
1912
+ const KindNonTextFileMarkerTrivia = ast.KindNonTextFileMarkerTrivia
1913
+ const KindNotEmittedStatement = ast.KindNotEmittedStatement
1914
+ const KindNotEmittedTypeElement = ast.KindNotEmittedTypeElement
1915
+ const KindNullKeyword = ast.KindNullKeyword
1916
+ const KindNumberKeyword = ast.KindNumberKeyword
1917
+ const KindNumericLiteral = ast.KindNumericLiteral
1918
+ const KindObjectBindingPattern = ast.KindObjectBindingPattern
1919
+ const KindObjectKeyword = ast.KindObjectKeyword
1920
+ const KindObjectLiteralExpression = ast.KindObjectLiteralExpression
1921
+ const KindOfKeyword = ast.KindOfKeyword
1922
+ const KindOmittedExpression = ast.KindOmittedExpression
1923
+ const KindOpenBraceToken = ast.KindOpenBraceToken
1924
+ const KindOpenBracketToken = ast.KindOpenBracketToken
1925
+ const KindOpenParenToken = ast.KindOpenParenToken
1926
+ const KindOptionalType = ast.KindOptionalType
1927
+ const KindOutKeyword = ast.KindOutKeyword
1928
+ const KindOverrideKeyword = ast.KindOverrideKeyword
1929
+ const KindPackageKeyword = ast.KindPackageKeyword
1930
+ const KindParameter = ast.KindParameter
1931
+ const KindParenthesizedExpression = ast.KindParenthesizedExpression
1932
+ const KindParenthesizedType = ast.KindParenthesizedType
1933
+ const KindPartiallyEmittedExpression = ast.KindPartiallyEmittedExpression
1934
+ const KindPercentEqualsToken = ast.KindPercentEqualsToken
1935
+ const KindPercentToken = ast.KindPercentToken
1936
+ const KindPlusEqualsToken = ast.KindPlusEqualsToken
1937
+ const KindPlusPlusToken = ast.KindPlusPlusToken
1938
+ const KindPlusToken = ast.KindPlusToken
1939
+ const KindPostfixUnaryExpression = ast.KindPostfixUnaryExpression
1940
+ const KindPrefixUnaryExpression = ast.KindPrefixUnaryExpression
1941
+ const KindPrivateIdentifier = ast.KindPrivateIdentifier
1942
+ const KindPrivateKeyword = ast.KindPrivateKeyword
1943
+ const KindPropertyAccessExpression = ast.KindPropertyAccessExpression
1944
+ const KindPropertyAssignment = ast.KindPropertyAssignment
1945
+ const KindPropertyDeclaration = ast.KindPropertyDeclaration
1946
+ const KindPropertySignature = ast.KindPropertySignature
1947
+ const KindProtectedKeyword = ast.KindProtectedKeyword
1948
+ const KindPublicKeyword = ast.KindPublicKeyword
1949
+ const KindQualifiedName = ast.KindQualifiedName
1950
+ const KindQuestionDotToken = ast.KindQuestionDotToken
1951
+ const KindQuestionQuestionEqualsToken = ast.KindQuestionQuestionEqualsToken
1952
+ const KindQuestionQuestionToken = ast.KindQuestionQuestionToken
1953
+ const KindQuestionToken = ast.KindQuestionToken
1954
+ const KindReadonlyKeyword = ast.KindReadonlyKeyword
1955
+ const KindRegularExpressionLiteral = ast.KindRegularExpressionLiteral
1956
+ const KindRequireKeyword = ast.KindRequireKeyword
1957
+ const KindRestType = ast.KindRestType
1958
+ const KindReturnKeyword = ast.KindReturnKeyword
1959
+ const KindReturnStatement = ast.KindReturnStatement
1960
+ const KindSatisfiesExpression = ast.KindSatisfiesExpression
1961
+ const KindSatisfiesKeyword = ast.KindSatisfiesKeyword
1962
+ const KindSemicolonClassElement = ast.KindSemicolonClassElement
1963
+ const KindSemicolonToken = ast.KindSemicolonToken
1964
+ const KindSetAccessor = ast.KindSetAccessor
1965
+ const KindSetKeyword = ast.KindSetKeyword
1966
+ const KindShorthandPropertyAssignment = ast.KindShorthandPropertyAssignment
1967
+ const KindSingleLineCommentTrivia = ast.KindSingleLineCommentTrivia
1968
+ const KindSlashEqualsToken = ast.KindSlashEqualsToken
1969
+ const KindSlashToken = ast.KindSlashToken
1970
+ const KindSourceFile = ast.KindSourceFile
1971
+ const KindSpreadAssignment = ast.KindSpreadAssignment
1972
+ const KindSpreadElement = ast.KindSpreadElement
1973
+ const KindStaticKeyword = ast.KindStaticKeyword
1974
+ const KindStringKeyword = ast.KindStringKeyword
1975
+ const KindStringLiteral = ast.KindStringLiteral
1976
+ const KindSuperKeyword = ast.KindSuperKeyword
1977
+ const KindSwitchKeyword = ast.KindSwitchKeyword
1978
+ const KindSwitchStatement = ast.KindSwitchStatement
1979
+ const KindSymbolKeyword = ast.KindSymbolKeyword
1980
+ const KindSyntaxList = ast.KindSyntaxList
1981
+ const KindSyntheticExpression = ast.KindSyntheticExpression
1982
+ const KindSyntheticReferenceExpression = ast.KindSyntheticReferenceExpression
1983
+ const KindTaggedTemplateExpression = ast.KindTaggedTemplateExpression
1984
+ const KindTemplateExpression = ast.KindTemplateExpression
1985
+ const KindTemplateHead = ast.KindTemplateHead
1986
+ const KindTemplateLiteralType = ast.KindTemplateLiteralType
1987
+ const KindTemplateLiteralTypeSpan = ast.KindTemplateLiteralTypeSpan
1988
+ const KindTemplateMiddle = ast.KindTemplateMiddle
1989
+ const KindTemplateSpan = ast.KindTemplateSpan
1990
+ const KindTemplateTail = ast.KindTemplateTail
1991
+ const KindThisKeyword = ast.KindThisKeyword
1992
+ const KindThisType = ast.KindThisType
1993
+ const KindThrowKeyword = ast.KindThrowKeyword
1994
+ const KindThrowStatement = ast.KindThrowStatement
1995
+ const KindTildeToken = ast.KindTildeToken
1996
+ const KindTrueKeyword = ast.KindTrueKeyword
1997
+ const KindTryKeyword = ast.KindTryKeyword
1998
+ const KindTryStatement = ast.KindTryStatement
1999
+ const KindTupleType = ast.KindTupleType
2000
+ const KindTypeAliasDeclaration = ast.KindTypeAliasDeclaration
2001
+ const KindTypeAssertionExpression = ast.KindTypeAssertionExpression
2002
+ const KindTypeKeyword = ast.KindTypeKeyword
2003
+ const KindTypeLiteral = ast.KindTypeLiteral
2004
+ const KindTypeOfExpression = ast.KindTypeOfExpression
2005
+ const KindTypeOfKeyword = ast.KindTypeOfKeyword
2006
+ const KindTypeOperator = ast.KindTypeOperator
2007
+ const KindTypeParameter = ast.KindTypeParameter
2008
+ const KindTypePredicate = ast.KindTypePredicate
2009
+ const KindTypeQuery = ast.KindTypeQuery
2010
+ const KindTypeReference = ast.KindTypeReference
2011
+ const KindUndefinedKeyword = ast.KindUndefinedKeyword
2012
+ const KindUnionType = ast.KindUnionType
2013
+ const KindUniqueKeyword = ast.KindUniqueKeyword
2014
+ const KindUnknown = ast.KindUnknown
2015
+ const KindUnknownKeyword = ast.KindUnknownKeyword
2016
+ const KindUsingKeyword = ast.KindUsingKeyword
2017
+ const KindVarKeyword = ast.KindVarKeyword
2018
+ const KindVariableDeclaration = ast.KindVariableDeclaration
2019
+ const KindVariableDeclarationList = ast.KindVariableDeclarationList
2020
+ const KindVariableStatement = ast.KindVariableStatement
2021
+ const KindVoidExpression = ast.KindVoidExpression
2022
+ const KindVoidKeyword = ast.KindVoidKeyword
2023
+ const KindWhileKeyword = ast.KindWhileKeyword
2024
+ const KindWhileStatement = ast.KindWhileStatement
2025
+ const KindWhitespaceTrivia = ast.KindWhitespaceTrivia
2026
+ const KindWithKeyword = ast.KindWithKeyword
2027
+ const KindWithStatement = ast.KindWithStatement
2028
+ const KindYieldExpression = ast.KindYieldExpression
2029
+ const KindYieldKeyword = ast.KindYieldKeyword
2030
+ type LabeledStatement = ast.LabeledStatement
2031
+ type LabeledStatementNode = ast.LabeledStatementNode
2032
+ type LeftHandSideExpression = ast.LeftHandSideExpression
2033
+ type LeftHandSideExpressionBase = ast.LeftHandSideExpressionBase
2034
+ type LiteralExpression = ast.LiteralExpression
2035
+ type LiteralExpressionBase = ast.LiteralExpressionBase
2036
+ type LiteralLikeNode = ast.LiteralLikeNode
2037
+ type LiteralLikeNodeBase = ast.LiteralLikeNodeBase
2038
+ type LiteralSyntaxKind = ast.LiteralSyntaxKind
2039
+ type LiteralToken = ast.LiteralToken
2040
+ type LiteralTypeNode = ast.LiteralTypeNode
2041
+ type LiteralTypeNodeNode = ast.LiteralTypeNodeNode
2042
+ type LocalsContainerBase = ast.LocalsContainerBase
2043
+ type LogicalOperator = ast.LogicalOperator
2044
+ type LogicalOperatorOrHigher = ast.LogicalOperatorOrHigher
2045
+ type LogicalOrCoalescingAssignmentOperator = ast.LogicalOrCoalescingAssignmentOperator
2046
+ type MappedTypeNode = ast.MappedTypeNode
2047
+ type MappedTypeNodeNode = ast.MappedTypeNodeNode
2048
+ type MemberExpressionBase = ast.MemberExpressionBase
2049
+ type MemberName = ast.MemberName
2050
+ type MetaProperty = ast.MetaProperty
2051
+ type MetaPropertyNode = ast.MetaPropertyNode
2052
+ type MethodDeclaration = ast.MethodDeclaration
2053
+ type MethodDeclarationNode = ast.MethodDeclarationNode
2054
+ type MethodSignatureDeclaration = ast.MethodSignatureDeclaration
2055
+ type MethodSignatureDeclarationNode = ast.MethodSignatureDeclarationNode
2056
+ type MinusToken = ast.MinusToken
2057
+ type MissingDeclaration = ast.MissingDeclaration
2058
+ type MissingDeclarationNode = ast.MissingDeclarationNode
2059
+ type Modifier = ast.Modifier
2060
+ type ModifierFlags = ast.ModifierFlags
2061
+ const ModifierFlagsAbstract = ast.ModifierFlagsAbstract
2062
+ const ModifierFlagsAccessibilityModifier = ast.ModifierFlagsAccessibilityModifier
2063
+ const ModifierFlagsAccessor = ast.ModifierFlagsAccessor
2064
+ const ModifierFlagsAll = ast.ModifierFlagsAll
2065
+ const ModifierFlagsAmbient = ast.ModifierFlagsAmbient
2066
+ const ModifierFlagsAsync = ast.ModifierFlagsAsync
2067
+ const ModifierFlagsConst = ast.ModifierFlagsConst
2068
+ const ModifierFlagsDecorator = ast.ModifierFlagsDecorator
2069
+ const ModifierFlagsDefault = ast.ModifierFlagsDefault
2070
+ const ModifierFlagsDeprecated = ast.ModifierFlagsDeprecated
2071
+ const ModifierFlagsExport = ast.ModifierFlagsExport
2072
+ const ModifierFlagsExportDefault = ast.ModifierFlagsExportDefault
2073
+ const ModifierFlagsHasComputedFlags = ast.ModifierFlagsHasComputedFlags
2074
+ const ModifierFlagsHasComputedJSDocModifiers = ast.ModifierFlagsHasComputedJSDocModifiers
2075
+ const ModifierFlagsIn = ast.ModifierFlagsIn
2076
+ const ModifierFlagsJSDocCacheOnlyModifiers = ast.ModifierFlagsJSDocCacheOnlyModifiers
2077
+ const ModifierFlagsJSDocOnlyModifiers = ast.ModifierFlagsJSDocOnlyModifiers
2078
+ const ModifierFlagsJSDocOverride = ast.ModifierFlagsJSDocOverride
2079
+ const ModifierFlagsJSDocPrivate = ast.ModifierFlagsJSDocPrivate
2080
+ const ModifierFlagsJSDocProtected = ast.ModifierFlagsJSDocProtected
2081
+ const ModifierFlagsJSDocPublic = ast.ModifierFlagsJSDocPublic
2082
+ const ModifierFlagsJSDocReadonly = ast.ModifierFlagsJSDocReadonly
2083
+ const ModifierFlagsJavaScript = ast.ModifierFlagsJavaScript
2084
+ const ModifierFlagsModifier = ast.ModifierFlagsModifier
2085
+ const ModifierFlagsNonCacheOnlyModifiers = ast.ModifierFlagsNonCacheOnlyModifiers
2086
+ const ModifierFlagsNonPublicAccessibilityModifier = ast.ModifierFlagsNonPublicAccessibilityModifier
2087
+ const ModifierFlagsNone = ast.ModifierFlagsNone
2088
+ const ModifierFlagsOut = ast.ModifierFlagsOut
2089
+ const ModifierFlagsOverride = ast.ModifierFlagsOverride
2090
+ const ModifierFlagsParameterPropertyModifier = ast.ModifierFlagsParameterPropertyModifier
2091
+ const ModifierFlagsPrivate = ast.ModifierFlagsPrivate
2092
+ const ModifierFlagsProtected = ast.ModifierFlagsProtected
2093
+ const ModifierFlagsPublic = ast.ModifierFlagsPublic
2094
+ const ModifierFlagsReadonly = ast.ModifierFlagsReadonly
2095
+ const ModifierFlagsStatic = ast.ModifierFlagsStatic
2096
+ const ModifierFlagsSyntacticModifiers = ast.ModifierFlagsSyntacticModifiers
2097
+ const ModifierFlagsSyntacticOnlyModifiers = ast.ModifierFlagsSyntacticOnlyModifiers
2098
+ const ModifierFlagsSyntacticOrJSDocModifiers = ast.ModifierFlagsSyntacticOrJSDocModifiers
2099
+ const ModifierFlagsTypeScriptModifier = ast.ModifierFlagsTypeScriptModifier
2100
+ type ModifierLike = ast.ModifierLike
2101
+ type ModifierList = ast.ModifierList
2102
+ type ModifierSyntaxKind = ast.ModifierSyntaxKind
2103
+ //go:linkname ModifierToFlag github.com/microsoft/typescript-go/internal/ast.ModifierToFlag
2104
+ func ModifierToFlag(token ast.Kind) ast.ModifierFlags
2105
+ type ModifiersBase = ast.ModifiersBase
2106
+ //go:linkname ModifiersToFlags github.com/microsoft/typescript-go/internal/ast.ModifiersToFlags
2107
+ func ModifiersToFlags(modifiers []*ast.Node) ast.ModifierFlags
2108
+ type ModuleBlock = ast.ModuleBlock
2109
+ type ModuleBlockNode = ast.ModuleBlockNode
2110
+ type ModuleBody = ast.ModuleBody
2111
+ type ModuleDeclaration = ast.ModuleDeclaration
2112
+ type ModuleDeclarationNode = ast.ModuleDeclarationNode
2113
+ type ModuleExportName = ast.ModuleExportName
2114
+ //go:linkname ModuleExportNameIsDefault github.com/microsoft/typescript-go/internal/ast.ModuleExportNameIsDefault
2115
+ func ModuleExportNameIsDefault(node *ast.Node) bool
2116
+ type ModuleInstanceState = ast.ModuleInstanceState
2117
+ const ModuleInstanceStateConstEnumOnly = ast.ModuleInstanceStateConstEnumOnly
2118
+ const ModuleInstanceStateInstantiated = ast.ModuleInstanceStateInstantiated
2119
+ const ModuleInstanceStateNonInstantiated = ast.ModuleInstanceStateNonInstantiated
2120
+ const ModuleInstanceStateUnknown = ast.ModuleInstanceStateUnknown
2121
+ type ModuleName = ast.ModuleName
2122
+ type ModuleReference = ast.ModuleReference
2123
+ type MultiplicativeOperator = ast.MultiplicativeOperator
2124
+ type MultiplicativeOperatorOrHigher = ast.MultiplicativeOperatorOrHigher
2125
+ type MutableNode = ast.MutableNode
2126
+ type NamedExportBindings = ast.NamedExportBindings
2127
+ type NamedExports = ast.NamedExports
2128
+ type NamedExportsNode = ast.NamedExportsNode
2129
+ type NamedImportBindings = ast.NamedImportBindings
2130
+ type NamedImports = ast.NamedImports
2131
+ type NamedImportsNode = ast.NamedImportsNode
2132
+ type NamedImportsOrExports = ast.NamedImportsOrExports
2133
+ type NamedMember = ast.NamedMember
2134
+ type NamedMemberBase = ast.NamedMemberBase
2135
+ type NamedTupleMember = ast.NamedTupleMember
2136
+ type NamedTupleMemberNode = ast.NamedTupleMemberNode
2137
+ type NamespaceExport = ast.NamespaceExport
2138
+ type NamespaceExportDeclaration = ast.NamespaceExportDeclaration
2139
+ type NamespaceExportDeclarationNode = ast.NamespaceExportDeclarationNode
2140
+ type NamespaceExportNode = ast.NamespaceExportNode
2141
+ type NamespaceImport = ast.NamespaceImport
2142
+ type NamespaceImportNode = ast.NamespaceImportNode
2143
+ //go:linkname NewCompilerDiagnostic github.com/microsoft/typescript-go/internal/ast.NewCompilerDiagnostic
2144
+ func NewCompilerDiagnostic(message *diagnostics.Message, args ...any) *ast.Diagnostic
2145
+ //go:linkname NewDiagnostic github.com/microsoft/typescript-go/internal/ast.NewDiagnostic
2146
+ func NewDiagnostic(file *ast.SourceFile, loc core.TextRange, message *diagnostics.Message, args ...any) *ast.Diagnostic
2147
+ //go:linkname NewDiagnosticChain github.com/microsoft/typescript-go/internal/ast.NewDiagnosticChain
2148
+ func NewDiagnosticChain(chain *ast.Diagnostic, message *diagnostics.Message, args ...any) *ast.Diagnostic
2149
+ //go:linkname NewDiagnosticFromSerialized github.com/microsoft/typescript-go/internal/ast.NewDiagnosticFromSerialized
2150
+ func NewDiagnosticFromSerialized(file *ast.SourceFile, loc core.TextRange, code int32, category diagnostics.Category, messageKey diagnostics.Key, messageArgs []string, messageChain []*ast.Diagnostic, relatedInformation []*ast.Diagnostic, reportsUnnecessary bool, reportsDeprecated bool, skippedOnNoEmit bool) *ast.Diagnostic
2151
+ type NewExpression = ast.NewExpression
2152
+ type NewExpressionNode = ast.NewExpressionNode
2153
+ //go:linkname NewFlowReduceLabelData github.com/microsoft/typescript-go/internal/ast.NewFlowReduceLabelData
2154
+ func NewFlowReduceLabelData(target *ast.FlowLabel, antecedents *ast.FlowList) *ast.Node
2155
+ //go:linkname NewFlowSwitchClauseData github.com/microsoft/typescript-go/internal/ast.NewFlowSwitchClauseData
2156
+ func NewFlowSwitchClauseData(switchStatement *ast.Node, clauseStart int, clauseEnd int) *ast.Node
2157
+ //go:linkname NewHasFileName github.com/microsoft/typescript-go/internal/ast.NewHasFileName
2158
+ func NewHasFileName(fileName string, path tspath.Path) ast.HasFileName
2159
+ //go:linkname NewNodeFactory github.com/microsoft/typescript-go/internal/ast.NewNodeFactory
2160
+ func NewNodeFactory(hooks ast.NodeFactoryHooks) *ast.NodeFactory
2161
+ //go:linkname NewNodeVisitor github.com/microsoft/typescript-go/internal/ast.NewNodeVisitor
2162
+ func NewNodeVisitor(visit func(node *ast.Node) *ast.Node, factory *ast.NodeFactory, hooks ast.NodeVisitorHooks) *ast.NodeVisitor
2163
+ type NoSubstitutionTemplateLiteral = ast.NoSubstitutionTemplateLiteral
2164
+ type NoSubstitutionTemplateLiteralNode = ast.NoSubstitutionTemplateLiteralNode
2165
+ type Node = ast.Node
2166
+ type NodeBase = ast.NodeBase
2167
+ type NodeBody = ast.NodeBody
2168
+ //go:linkname NodeCanBeDecorated github.com/microsoft/typescript-go/internal/ast.NodeCanBeDecorated
2169
+ func NodeCanBeDecorated(useLegacyDecorators bool, node *ast.Node, parent *ast.Node, grandparent *ast.Node) bool
2170
+ type NodeDefault = ast.NodeDefault
2171
+ type NodeFactory = ast.NodeFactory
2172
+ type NodeFactoryCoercible = ast.NodeFactoryCoercible
2173
+ type NodeFactoryHooks = ast.NodeFactoryHooks
2174
+ type NodeFlags = ast.NodeFlags
2175
+ const NodeFlagsAmbient = ast.NodeFlagsAmbient
2176
+ const NodeFlagsAwaitContext = ast.NodeFlagsAwaitContext
2177
+ const NodeFlagsAwaitUsing = ast.NodeFlagsAwaitUsing
2178
+ const NodeFlagsBlockScoped = ast.NodeFlagsBlockScoped
2179
+ const NodeFlagsConst = ast.NodeFlagsConst
2180
+ const NodeFlagsConstant = ast.NodeFlagsConstant
2181
+ const NodeFlagsContainsThis = ast.NodeFlagsContainsThis
2182
+ const NodeFlagsContextFlags = ast.NodeFlagsContextFlags
2183
+ const NodeFlagsDecoratorContext = ast.NodeFlagsDecoratorContext
2184
+ const NodeFlagsDisallowConditionalTypesContext = ast.NodeFlagsDisallowConditionalTypesContext
2185
+ const NodeFlagsDisallowInContext = ast.NodeFlagsDisallowInContext
2186
+ const NodeFlagsExportContext = ast.NodeFlagsExportContext
2187
+ const NodeFlagsHasAsyncFunctions = ast.NodeFlagsHasAsyncFunctions
2188
+ const NodeFlagsHasExplicitReturn = ast.NodeFlagsHasExplicitReturn
2189
+ const NodeFlagsHasImplicitReturn = ast.NodeFlagsHasImplicitReturn
2190
+ const NodeFlagsHasJSDoc = ast.NodeFlagsHasJSDoc
2191
+ const NodeFlagsIdentifierHasExtendedUnicodeEscape = ast.NodeFlagsIdentifierHasExtendedUnicodeEscape
2192
+ const NodeFlagsIdentifierIsInJSDocNamespace = ast.NodeFlagsIdentifierIsInJSDocNamespace
2193
+ const NodeFlagsInWithStatement = ast.NodeFlagsInWithStatement
2194
+ const NodeFlagsJSDoc = ast.NodeFlagsJSDoc
2195
+ const NodeFlagsJavaScriptFile = ast.NodeFlagsJavaScriptFile
2196
+ const NodeFlagsJsonFile = ast.NodeFlagsJsonFile
2197
+ const NodeFlagsLet = ast.NodeFlagsLet
2198
+ const NodeFlagsNestedNamespace = ast.NodeFlagsNestedNamespace
2199
+ const NodeFlagsNone = ast.NodeFlagsNone
2200
+ const NodeFlagsOptionalChain = ast.NodeFlagsOptionalChain
2201
+ const NodeFlagsPermanentlySetIncrementalFlags = ast.NodeFlagsPermanentlySetIncrementalFlags
2202
+ const NodeFlagsPossiblyContainsDeprecatedTag = ast.NodeFlagsPossiblyContainsDeprecatedTag
2203
+ const NodeFlagsPossiblyContainsDynamicImport = ast.NodeFlagsPossiblyContainsDynamicImport
2204
+ const NodeFlagsPossiblyContainsImportMeta = ast.NodeFlagsPossiblyContainsImportMeta
2205
+ const NodeFlagsReachabilityAndEmitFlags = ast.NodeFlagsReachabilityAndEmitFlags
2206
+ const NodeFlagsReachabilityCheckFlags = ast.NodeFlagsReachabilityCheckFlags
2207
+ const NodeFlagsReparsed = ast.NodeFlagsReparsed
2208
+ const NodeFlagsReparserTransformedLiteral = ast.NodeFlagsReparserTransformedLiteral
2209
+ const NodeFlagsSynthesized = ast.NodeFlagsSynthesized
2210
+ const NodeFlagsThisNodeHasError = ast.NodeFlagsThisNodeHasError
2211
+ const NodeFlagsThisNodeOrAnySubNodesHasError = ast.NodeFlagsThisNodeOrAnySubNodesHasError
2212
+ const NodeFlagsTypeExcludesFlags = ast.NodeFlagsTypeExcludesFlags
2213
+ const NodeFlagsUnreachable = ast.NodeFlagsUnreachable
2214
+ const NodeFlagsUsing = ast.NodeFlagsUsing
2215
+ const NodeFlagsYieldContext = ast.NodeFlagsYieldContext
2216
+ //go:linkname NodeHasKind github.com/microsoft/typescript-go/internal/ast.NodeHasKind
2217
+ func NodeHasKind(node *ast.Node, kind ast.Kind) bool
2218
+ //go:linkname NodeHasName github.com/microsoft/typescript-go/internal/ast.NodeHasName
2219
+ func NodeHasName(statement *ast.Node, id *ast.Node) bool
2220
+ type NodeId = ast.NodeId
2221
+ //go:linkname NodeIsDecorated github.com/microsoft/typescript-go/internal/ast.NodeIsDecorated
2222
+ func NodeIsDecorated(useLegacyDecorators bool, node *ast.Node, parent *ast.Node, grandparent *ast.Node) bool
2223
+ //go:linkname NodeIsMissing github.com/microsoft/typescript-go/internal/ast.NodeIsMissing
2224
+ func NodeIsMissing(node *ast.Node) bool
2225
+ //go:linkname NodeIsPresent github.com/microsoft/typescript-go/internal/ast.NodeIsPresent
2226
+ func NodeIsPresent(node *ast.Node) bool
2227
+ //go:linkname NodeIsSynthesized github.com/microsoft/typescript-go/internal/ast.NodeIsSynthesized
2228
+ func NodeIsSynthesized(node *ast.Node) bool
2229
+ //go:linkname NodeKindIs github.com/microsoft/typescript-go/internal/ast.NodeKindIs
2230
+ func NodeKindIs(node *ast.Node, kinds ...ast.Kind) bool
2231
+ type NodeList = ast.NodeList
2232
+ //go:linkname NodeOrChildIsDecorated github.com/microsoft/typescript-go/internal/ast.NodeOrChildIsDecorated
2233
+ func NodeOrChildIsDecorated(useLegacyDecorators bool, node *ast.Node, parent *ast.Node, grandparent *ast.Node) bool
2234
+ type NodeVisitor = ast.NodeVisitor
2235
+ type NodeVisitorHooks = ast.NodeVisitorHooks
2236
+ type NodeWithTypeArgumentsBase = ast.NodeWithTypeArgumentsBase
2237
+ type NonNullExpression = ast.NonNullExpression
2238
+ type NonNullExpressionNode = ast.NonNullExpressionNode
2239
+ type NotEmittedStatement = ast.NotEmittedStatement
2240
+ type NotEmittedStatementNode = ast.NotEmittedStatementNode
2241
+ type NotEmittedTypeElement = ast.NotEmittedTypeElement
2242
+ type NotEmittedTypeElementNode = ast.NotEmittedTypeElementNode
2243
+ type NullLiteral = ast.NullLiteral
2244
+ type NumericLiteral = ast.NumericLiteral
2245
+ type NumericLiteralNode = ast.NumericLiteralNode
2246
+ type NumericOrStringLikeLiteral = ast.NumericOrStringLikeLiteral
2247
+ const OEKAll = ast.OEKAll
2248
+ const OEKAllExceptAssertionsOrExpressionsWithTypeArguments = ast.OEKAllExceptAssertionsOrExpressionsWithTypeArguments
2249
+ const OEKAssertions = ast.OEKAssertions
2250
+ const OEKAssignments = ast.OEKAssignments
2251
+ const OEKComma = ast.OEKComma
2252
+ const OEKExcludeJSDocTypeAssertion = ast.OEKExcludeJSDocTypeAssertion
2253
+ const OEKExpressionTypePassthrough = ast.OEKExpressionTypePassthrough
2254
+ const OEKExpressionsWithTypeArguments = ast.OEKExpressionsWithTypeArguments
2255
+ const OEKNonNullAssertions = ast.OEKNonNullAssertions
2256
+ const OEKParentheses = ast.OEKParentheses
2257
+ const OEKPartiallyEmittedExpressions = ast.OEKPartiallyEmittedExpressions
2258
+ const OEKSatisfies = ast.OEKSatisfies
2259
+ const OEKTypeAssertions = ast.OEKTypeAssertions
2260
+ type ObjectDestructuringAssignment = ast.ObjectDestructuringAssignment
2261
+ type ObjectLiteralElement = ast.ObjectLiteralElement
2262
+ type ObjectLiteralElementBase = ast.ObjectLiteralElementBase
2263
+ type ObjectLiteralElementLike = ast.ObjectLiteralElementLike
2264
+ type ObjectLiteralExpression = ast.ObjectLiteralExpression
2265
+ type ObjectLiteralExpressionNode = ast.ObjectLiteralExpressionNode
2266
+ type ObjectLiteralLike = ast.ObjectLiteralLike
2267
+ type ObjectLiteralLikeNode = ast.ObjectLiteralLikeNode
2268
+ type ObjectTypeDeclaration = ast.ObjectTypeDeclaration
2269
+ type OmittedExpression = ast.OmittedExpression
2270
+ type OmittedExpressionNode = ast.OmittedExpressionNode
2271
+ type OperatorPrecedence = ast.OperatorPrecedence
2272
+ const OperatorPrecedenceAdditive = ast.OperatorPrecedenceAdditive
2273
+ const OperatorPrecedenceAssignment = ast.OperatorPrecedenceAssignment
2274
+ const OperatorPrecedenceBitwiseAND = ast.OperatorPrecedenceBitwiseAND
2275
+ const OperatorPrecedenceBitwiseOR = ast.OperatorPrecedenceBitwiseOR
2276
+ const OperatorPrecedenceBitwiseXOR = ast.OperatorPrecedenceBitwiseXOR
2277
+ const OperatorPrecedenceCoalesce = ast.OperatorPrecedenceCoalesce
2278
+ const OperatorPrecedenceComma = ast.OperatorPrecedenceComma
2279
+ const OperatorPrecedenceConditional = ast.OperatorPrecedenceConditional
2280
+ const OperatorPrecedenceDisallowComma = ast.OperatorPrecedenceDisallowComma
2281
+ const OperatorPrecedenceEquality = ast.OperatorPrecedenceEquality
2282
+ const OperatorPrecedenceExponentiation = ast.OperatorPrecedenceExponentiation
2283
+ type OperatorPrecedenceFlags = ast.OperatorPrecedenceFlags
2284
+ const OperatorPrecedenceFlagsNewWithoutArguments = ast.OperatorPrecedenceFlagsNewWithoutArguments
2285
+ const OperatorPrecedenceFlagsNone = ast.OperatorPrecedenceFlagsNone
2286
+ const OperatorPrecedenceFlagsOptionalChain = ast.OperatorPrecedenceFlagsOptionalChain
2287
+ const OperatorPrecedenceHighest = ast.OperatorPrecedenceHighest
2288
+ const OperatorPrecedenceInvalid = ast.OperatorPrecedenceInvalid
2289
+ const OperatorPrecedenceLeftHandSide = ast.OperatorPrecedenceLeftHandSide
2290
+ const OperatorPrecedenceLogicalAND = ast.OperatorPrecedenceLogicalAND
2291
+ const OperatorPrecedenceLogicalOR = ast.OperatorPrecedenceLogicalOR
2292
+ const OperatorPrecedenceLowest = ast.OperatorPrecedenceLowest
2293
+ const OperatorPrecedenceMember = ast.OperatorPrecedenceMember
2294
+ const OperatorPrecedenceMultiplicative = ast.OperatorPrecedenceMultiplicative
2295
+ const OperatorPrecedenceOptionalChain = ast.OperatorPrecedenceOptionalChain
2296
+ const OperatorPrecedenceParentheses = ast.OperatorPrecedenceParentheses
2297
+ const OperatorPrecedencePrimary = ast.OperatorPrecedencePrimary
2298
+ const OperatorPrecedenceRelational = ast.OperatorPrecedenceRelational
2299
+ const OperatorPrecedenceShift = ast.OperatorPrecedenceShift
2300
+ const OperatorPrecedenceSpread = ast.OperatorPrecedenceSpread
2301
+ const OperatorPrecedenceUnary = ast.OperatorPrecedenceUnary
2302
+ const OperatorPrecedenceUpdate = ast.OperatorPrecedenceUpdate
2303
+ const OperatorPrecedenceYield = ast.OperatorPrecedenceYield
2304
+ type OptionalTypeNode = ast.OptionalTypeNode
2305
+ type OptionalTypeNodeNode = ast.OptionalTypeNodeNode
2306
+ type OutKeyword = ast.OutKeyword
2307
+ type OuterExpressionKinds = ast.OuterExpressionKinds
2308
+ type OverrideKeyword = ast.OverrideKeyword
2309
+ type ParameterDeclaration = ast.ParameterDeclaration
2310
+ type ParameterDeclarationNode = ast.ParameterDeclarationNode
2311
+ type ParameterList = ast.ParameterList
2312
+ type ParenthesizedExpression = ast.ParenthesizedExpression
2313
+ type ParenthesizedExpressionNode = ast.ParenthesizedExpressionNode
2314
+ type ParenthesizedTypeNode = ast.ParenthesizedTypeNode
2315
+ type ParenthesizedTypeNodeNode = ast.ParenthesizedTypeNodeNode
2316
+ type PartiallyEmittedExpression = ast.PartiallyEmittedExpression
2317
+ type PartiallyEmittedExpressionNode = ast.PartiallyEmittedExpressionNode
2318
+ type PatternAmbientModule = ast.PatternAmbientModule
2319
+ type PlusToken = ast.PlusToken
2320
+ //go:linkname PositionIsSynthesized github.com/microsoft/typescript-go/internal/ast.PositionIsSynthesized
2321
+ func PositionIsSynthesized(pos int) bool
2322
+ type PositionMap = ast.PositionMap
2323
+ type PostfixUnaryExpression = ast.PostfixUnaryExpression
2324
+ type PostfixUnaryExpressionNode = ast.PostfixUnaryExpressionNode
2325
+ type PostfixUnaryOperator = ast.PostfixUnaryOperator
2326
+ type Pragma = ast.Pragma
2327
+ type PragmaArgument = ast.PragmaArgument
2328
+ type PragmaArgumentSpecification = ast.PragmaArgumentSpecification
2329
+ const PragmaKindAll = ast.PragmaKindAll
2330
+ const PragmaKindDefault = ast.PragmaKindDefault
2331
+ type PragmaKindFlags = ast.PragmaKindFlags
2332
+ const PragmaKindFlagsNone = ast.PragmaKindFlagsNone
2333
+ const PragmaKindMultiLine = ast.PragmaKindMultiLine
2334
+ const PragmaKindSingleLine = ast.PragmaKindSingleLine
2335
+ const PragmaKindTripleSlashXML = ast.PragmaKindTripleSlashXML
2336
+ type PragmaSpecification = ast.PragmaSpecification
2337
+ type PrefixUnaryExpression = ast.PrefixUnaryExpression
2338
+ type PrefixUnaryExpressionNode = ast.PrefixUnaryExpressionNode
2339
+ type PrefixUnaryOperator = ast.PrefixUnaryOperator
2340
+ type PrimaryExpressionBase = ast.PrimaryExpressionBase
2341
+ type PrivateIdentifier = ast.PrivateIdentifier
2342
+ type PrivateIdentifierNode = ast.PrivateIdentifierNode
2343
+ type PrivateKeyword = ast.PrivateKeyword
2344
+ type PropertyAccessExpression = ast.PropertyAccessExpression
2345
+ type PropertyAccessExpressionNode = ast.PropertyAccessExpressionNode
2346
+ type PropertyAssignment = ast.PropertyAssignment
2347
+ type PropertyAssignmentNode = ast.PropertyAssignmentNode
2348
+ type PropertyDeclaration = ast.PropertyDeclaration
2349
+ type PropertyDeclarationNode = ast.PropertyDeclarationNode
2350
+ type PropertyDefinitionList = ast.PropertyDefinitionList
2351
+ type PropertyName = ast.PropertyName
2352
+ type PropertyNameLiteral = ast.PropertyNameLiteral
2353
+ type PropertySignatureDeclaration = ast.PropertySignatureDeclaration
2354
+ type PropertySignatureDeclarationNode = ast.PropertySignatureDeclarationNode
2355
+ type ProtectedKeyword = ast.ProtectedKeyword
2356
+ type PseudoLiteralSyntaxKind = ast.PseudoLiteralSyntaxKind
2357
+ type PseudoLiteralToken = ast.PseudoLiteralToken
2358
+ type PublicKeyword = ast.PublicKeyword
2359
+ type PunctuationSyntaxKind = ast.PunctuationSyntaxKind
2360
+ type QualifiedName = ast.QualifiedName
2361
+ type QualifiedNameNode = ast.QualifiedNameNode
2362
+ type QuestionDotToken = ast.QuestionDotToken
2363
+ type QuestionToken = ast.QuestionToken
2364
+ //go:linkname RangeIsSynthesized github.com/microsoft/typescript-go/internal/ast.RangeIsSynthesized
2365
+ func RangeIsSynthesized(loc core.TextRange) bool
2366
+ type ReadonlyKeyword = ast.ReadonlyKeyword
2367
+ type RegularExpressionLiteral = ast.RegularExpressionLiteral
2368
+ type RegularExpressionLiteralNode = ast.RegularExpressionLiteralNode
2369
+ type RelationalOperator = ast.RelationalOperator
2370
+ type RelationalOperatorOrHigher = ast.RelationalOperatorOrHigher
2371
+ //go:linkname ReplaceModifiers github.com/microsoft/typescript-go/internal/ast.ReplaceModifiers
2372
+ func ReplaceModifiers(factory *ast.NodeFactory, node *ast.Node, modifierArray *ast.ModifierList) *ast.Node
2373
+ type RepopulateDiagnosticInfo = ast.RepopulateDiagnosticInfo
2374
+ type RepopulateDiagnosticKind = ast.RepopulateDiagnosticKind
2375
+ const RepopulateModeMismatch = ast.RepopulateModeMismatch
2376
+ const RepopulateModuleNotFound = ast.RepopulateModuleNotFound
2377
+ type RestTypeNode = ast.RestTypeNode
2378
+ type RestTypeNodeNode = ast.RestTypeNodeNode
2379
+ type ReturnStatement = ast.ReturnStatement
2380
+ type ReturnStatementNode = ast.ReturnStatementNode
2381
+ type SatisfiesExpression = ast.SatisfiesExpression
2382
+ type SatisfiesExpressionNode = ast.SatisfiesExpressionNode
2383
+ type SemanticMeaning = ast.SemanticMeaning
2384
+ const SemanticMeaningAll = ast.SemanticMeaningAll
2385
+ const SemanticMeaningNamespace = ast.SemanticMeaningNamespace
2386
+ const SemanticMeaningNone = ast.SemanticMeaningNone
2387
+ const SemanticMeaningType = ast.SemanticMeaningType
2388
+ const SemanticMeaningValue = ast.SemanticMeaningValue
2389
+ type SemicolonClassElement = ast.SemicolonClassElement
2390
+ type SemicolonClassElementNode = ast.SemicolonClassElementNode
2391
+ type SetAccessorDeclaration = ast.SetAccessorDeclaration
2392
+ type SetAccessorDeclarationNode = ast.SetAccessorDeclarationNode
2393
+ //go:linkname SetExternalModuleIndicator github.com/microsoft/typescript-go/internal/ast.SetExternalModuleIndicator
2394
+ func SetExternalModuleIndicator(file *ast.SourceFile, opts ast.ExternalModuleIndicatorOptions)
2395
+ //go:linkname SetImportsOfSourceFile github.com/microsoft/typescript-go/internal/ast.SetImportsOfSourceFile
2396
+ func SetImportsOfSourceFile(node *ast.SourceFile, imports []*ast.LiteralLikeNode)
2397
+ //go:linkname SetParentInChildren github.com/microsoft/typescript-go/internal/ast.SetParentInChildren
2398
+ func SetParentInChildren(node *ast.Node)
2399
+ //go:linkname SetParseJSDocForNode github.com/microsoft/typescript-go/internal/ast.SetParseJSDocForNode
2400
+ func SetParseJSDocForNode(fn func(*ast.SourceFile, *ast.Node) []*ast.Node)
2401
+ type ShiftOperator = ast.ShiftOperator
2402
+ type ShiftOperatorOrHigher = ast.ShiftOperatorOrHigher
2403
+ type ShorthandPropertyAssignment = ast.ShorthandPropertyAssignment
2404
+ type ShorthandPropertyAssignmentNode = ast.ShorthandPropertyAssignmentNode
2405
+ //go:linkname ShouldTransformImportCall github.com/microsoft/typescript-go/internal/ast.ShouldTransformImportCall
2406
+ func ShouldTransformImportCall(fileName string, options *core.CompilerOptions, impliedNodeFormatForEmit core.ModuleKind) bool
2407
+ type SignatureDeclaration = ast.SignatureDeclaration
2408
+ //go:linkname SkipOuterExpressions github.com/microsoft/typescript-go/internal/ast.SkipOuterExpressions
2409
+ func SkipOuterExpressions(node *ast.Expression, kinds ast.OuterExpressionKinds) *ast.Expression
2410
+ //go:linkname SkipParentheses github.com/microsoft/typescript-go/internal/ast.SkipParentheses
2411
+ func SkipParentheses(node *ast.Expression) *ast.Expression
2412
+ //go:linkname SkipPartiallyEmittedExpressions github.com/microsoft/typescript-go/internal/ast.SkipPartiallyEmittedExpressions
2413
+ func SkipPartiallyEmittedExpressions(node *ast.Expression) *ast.Expression
2414
+ //go:linkname SkipTypeParentheses github.com/microsoft/typescript-go/internal/ast.SkipTypeParentheses
2415
+ func SkipTypeParentheses(node *ast.Node) *ast.Node
2416
+ type SourceFile = ast.SourceFile
2417
+ type SourceFileDataKey[T any] = ast.SourceFileDataKey[T]
2418
+ type SourceFileLike = ast.SourceFileLike
2419
+ type SourceFileMetaData = ast.SourceFileMetaData
2420
+ type SourceFileNode = ast.SourceFileNode
2421
+ type SourceFileParseOptions = ast.SourceFileParseOptions
2422
+ type SpreadAssignment = ast.SpreadAssignment
2423
+ type SpreadAssignmentNode = ast.SpreadAssignmentNode
2424
+ type SpreadElement = ast.SpreadElement
2425
+ type SpreadElementNode = ast.SpreadElementNode
2426
+ type Statement = ast.Statement
2427
+ type StatementBase = ast.StatementBase
2428
+ type StatementList = ast.StatementList
2429
+ type StaticKeyword = ast.StaticKeyword
2430
+ type StringLiteral = ast.StringLiteral
2431
+ type StringLiteralLike = ast.StringLiteralLike
2432
+ type StringLiteralLikeNode = ast.StringLiteralLikeNode
2433
+ type StringLiteralNode = ast.StringLiteralNode
2434
+ const SubtreeContainsAnyAwait = ast.SubtreeContainsAnyAwait
2435
+ const SubtreeContainsAwait = ast.SubtreeContainsAwait
2436
+ const SubtreeContainsClassFields = ast.SubtreeContainsClassFields
2437
+ const SubtreeContainsClassStaticBlocks = ast.SubtreeContainsClassStaticBlocks
2438
+ const SubtreeContainsDecorators = ast.SubtreeContainsDecorators
2439
+ const SubtreeContainsDynamicImport = ast.SubtreeContainsDynamicImport
2440
+ const SubtreeContainsES2016 = ast.SubtreeContainsES2016
2441
+ const SubtreeContainsES2017 = ast.SubtreeContainsES2017
2442
+ const SubtreeContainsES2018 = ast.SubtreeContainsES2018
2443
+ const SubtreeContainsES2019 = ast.SubtreeContainsES2019
2444
+ const SubtreeContainsES2020 = ast.SubtreeContainsES2020
2445
+ const SubtreeContainsES2021 = ast.SubtreeContainsES2021
2446
+ const SubtreeContainsES2022 = ast.SubtreeContainsES2022
2447
+ const SubtreeContainsESClassFields = ast.SubtreeContainsESClassFields
2448
+ const SubtreeContainsESDecorators = ast.SubtreeContainsESDecorators
2449
+ const SubtreeContainsESNext = ast.SubtreeContainsESNext
2450
+ const SubtreeContainsESObjectRestOrSpread = ast.SubtreeContainsESObjectRestOrSpread
2451
+ const SubtreeContainsExponentiationOperator = ast.SubtreeContainsExponentiationOperator
2452
+ const SubtreeContainsForAwaitOrAsyncGenerator = ast.SubtreeContainsForAwaitOrAsyncGenerator
2453
+ const SubtreeContainsIdentifier = ast.SubtreeContainsIdentifier
2454
+ const SubtreeContainsInvalidTemplateEscape = ast.SubtreeContainsInvalidTemplateEscape
2455
+ const SubtreeContainsJsx = ast.SubtreeContainsJsx
2456
+ const SubtreeContainsLexicalSuper = ast.SubtreeContainsLexicalSuper
2457
+ const SubtreeContainsLexicalThis = ast.SubtreeContainsLexicalThis
2458
+ const SubtreeContainsLexicalThisOrSuper = ast.SubtreeContainsLexicalThisOrSuper
2459
+ const SubtreeContainsLogicalAssignments = ast.SubtreeContainsLogicalAssignments
2460
+ const SubtreeContainsMissingCatchClauseVariable = ast.SubtreeContainsMissingCatchClauseVariable
2461
+ const SubtreeContainsNullishCoalescing = ast.SubtreeContainsNullishCoalescing
2462
+ const SubtreeContainsObjectRestOrSpread = ast.SubtreeContainsObjectRestOrSpread
2463
+ const SubtreeContainsOptionalChaining = ast.SubtreeContainsOptionalChaining
2464
+ const SubtreeContainsPrivateIdentifierInExpression = ast.SubtreeContainsPrivateIdentifierInExpression
2465
+ const SubtreeContainsRestOrSpread = ast.SubtreeContainsRestOrSpread
2466
+ const SubtreeContainsTypeScript = ast.SubtreeContainsTypeScript
2467
+ const SubtreeContainsUsing = ast.SubtreeContainsUsing
2468
+ const SubtreeExclusionsAccessor = ast.SubtreeExclusionsAccessor
2469
+ const SubtreeExclusionsArrayLiteral = ast.SubtreeExclusionsArrayLiteral
2470
+ const SubtreeExclusionsArrowFunction = ast.SubtreeExclusionsArrowFunction
2471
+ const SubtreeExclusionsBindingPattern = ast.SubtreeExclusionsBindingPattern
2472
+ const SubtreeExclusionsCall = ast.SubtreeExclusionsCall
2473
+ const SubtreeExclusionsCatchClause = ast.SubtreeExclusionsCatchClause
2474
+ const SubtreeExclusionsClass = ast.SubtreeExclusionsClass
2475
+ const SubtreeExclusionsConstructor = ast.SubtreeExclusionsConstructor
2476
+ const SubtreeExclusionsElementAccess = ast.SubtreeExclusionsElementAccess
2477
+ const SubtreeExclusionsEraseable = ast.SubtreeExclusionsEraseable
2478
+ const SubtreeExclusionsFunction = ast.SubtreeExclusionsFunction
2479
+ const SubtreeExclusionsMethod = ast.SubtreeExclusionsMethod
2480
+ const SubtreeExclusionsModule = ast.SubtreeExclusionsModule
2481
+ const SubtreeExclusionsNew = ast.SubtreeExclusionsNew
2482
+ const SubtreeExclusionsNode = ast.SubtreeExclusionsNode
2483
+ const SubtreeExclusionsObjectLiteral = ast.SubtreeExclusionsObjectLiteral
2484
+ const SubtreeExclusionsOuterExpression = ast.SubtreeExclusionsOuterExpression
2485
+ const SubtreeExclusionsParameter = ast.SubtreeExclusionsParameter
2486
+ const SubtreeExclusionsProperty = ast.SubtreeExclusionsProperty
2487
+ const SubtreeExclusionsPropertyAccess = ast.SubtreeExclusionsPropertyAccess
2488
+ const SubtreeExclusionsVariableDeclarationList = ast.SubtreeExclusionsVariableDeclarationList
2489
+ type SubtreeFacts = ast.SubtreeFacts
2490
+ const SubtreeFactsComputed = ast.SubtreeFactsComputed
2491
+ const SubtreeFactsNone = ast.SubtreeFactsNone
2492
+ type SuperExpression = ast.SuperExpression
2493
+ type SwitchStatement = ast.SwitchStatement
2494
+ type SwitchStatementNode = ast.SwitchStatementNode
2495
+ type Symbol = ast.Symbol
2496
+ type SymbolFlags = ast.SymbolFlags
2497
+ const SymbolFlagsAccessor = ast.SymbolFlagsAccessor
2498
+ const SymbolFlagsAccessorExcludes = ast.SymbolFlagsAccessorExcludes
2499
+ const SymbolFlagsAlias = ast.SymbolFlagsAlias
2500
+ const SymbolFlagsAliasExcludes = ast.SymbolFlagsAliasExcludes
2501
+ const SymbolFlagsAll = ast.SymbolFlagsAll
2502
+ const SymbolFlagsAssignment = ast.SymbolFlagsAssignment
2503
+ const SymbolFlagsBlockScoped = ast.SymbolFlagsBlockScoped
2504
+ const SymbolFlagsBlockScopedVariable = ast.SymbolFlagsBlockScopedVariable
2505
+ const SymbolFlagsBlockScopedVariableExcludes = ast.SymbolFlagsBlockScopedVariableExcludes
2506
+ const SymbolFlagsClass = ast.SymbolFlagsClass
2507
+ const SymbolFlagsClassExcludes = ast.SymbolFlagsClassExcludes
2508
+ const SymbolFlagsClassMember = ast.SymbolFlagsClassMember
2509
+ const SymbolFlagsClassifiable = ast.SymbolFlagsClassifiable
2510
+ const SymbolFlagsConstEnum = ast.SymbolFlagsConstEnum
2511
+ const SymbolFlagsConstEnumExcludes = ast.SymbolFlagsConstEnumExcludes
2512
+ const SymbolFlagsConstEnumOnlyModule = ast.SymbolFlagsConstEnumOnlyModule
2513
+ const SymbolFlagsConstructor = ast.SymbolFlagsConstructor
2514
+ const SymbolFlagsEnum = ast.SymbolFlagsEnum
2515
+ const SymbolFlagsEnumMember = ast.SymbolFlagsEnumMember
2516
+ const SymbolFlagsEnumMemberExcludes = ast.SymbolFlagsEnumMemberExcludes
2517
+ const SymbolFlagsExportDoesNotSupportDefaultModifier = ast.SymbolFlagsExportDoesNotSupportDefaultModifier
2518
+ const SymbolFlagsExportHasLocal = ast.SymbolFlagsExportHasLocal
2519
+ const SymbolFlagsExportStar = ast.SymbolFlagsExportStar
2520
+ const SymbolFlagsExportSupportsDefaultModifier = ast.SymbolFlagsExportSupportsDefaultModifier
2521
+ const SymbolFlagsExportValue = ast.SymbolFlagsExportValue
2522
+ const SymbolFlagsFunction = ast.SymbolFlagsFunction
2523
+ const SymbolFlagsFunctionExcludes = ast.SymbolFlagsFunctionExcludes
2524
+ const SymbolFlagsFunctionScopedVariable = ast.SymbolFlagsFunctionScopedVariable
2525
+ const SymbolFlagsFunctionScopedVariableExcludes = ast.SymbolFlagsFunctionScopedVariableExcludes
2526
+ const SymbolFlagsGetAccessor = ast.SymbolFlagsGetAccessor
2527
+ const SymbolFlagsGetAccessorExcludes = ast.SymbolFlagsGetAccessorExcludes
2528
+ const SymbolFlagsGlobalLookup = ast.SymbolFlagsGlobalLookup
2529
+ const SymbolFlagsInterface = ast.SymbolFlagsInterface
2530
+ const SymbolFlagsInterfaceExcludes = ast.SymbolFlagsInterfaceExcludes
2531
+ const SymbolFlagsLateBindingContainer = ast.SymbolFlagsLateBindingContainer
2532
+ const SymbolFlagsMethod = ast.SymbolFlagsMethod
2533
+ const SymbolFlagsMethodExcludes = ast.SymbolFlagsMethodExcludes
2534
+ const SymbolFlagsModule = ast.SymbolFlagsModule
2535
+ const SymbolFlagsModuleExports = ast.SymbolFlagsModuleExports
2536
+ const SymbolFlagsModuleMember = ast.SymbolFlagsModuleMember
2537
+ const SymbolFlagsNamespace = ast.SymbolFlagsNamespace
2538
+ const SymbolFlagsNamespaceModule = ast.SymbolFlagsNamespaceModule
2539
+ const SymbolFlagsNamespaceModuleExcludes = ast.SymbolFlagsNamespaceModuleExcludes
2540
+ const SymbolFlagsNone = ast.SymbolFlagsNone
2541
+ const SymbolFlagsObjectLiteral = ast.SymbolFlagsObjectLiteral
2542
+ const SymbolFlagsOptional = ast.SymbolFlagsOptional
2543
+ const SymbolFlagsParameterExcludes = ast.SymbolFlagsParameterExcludes
2544
+ const SymbolFlagsProperty = ast.SymbolFlagsProperty
2545
+ const SymbolFlagsPropertyExcludes = ast.SymbolFlagsPropertyExcludes
2546
+ const SymbolFlagsPropertyOrAccessor = ast.SymbolFlagsPropertyOrAccessor
2547
+ const SymbolFlagsPrototype = ast.SymbolFlagsPrototype
2548
+ const SymbolFlagsRegularEnum = ast.SymbolFlagsRegularEnum
2549
+ const SymbolFlagsRegularEnumExcludes = ast.SymbolFlagsRegularEnumExcludes
2550
+ const SymbolFlagsReplaceableByMethod = ast.SymbolFlagsReplaceableByMethod
2551
+ const SymbolFlagsSetAccessor = ast.SymbolFlagsSetAccessor
2552
+ const SymbolFlagsSetAccessorExcludes = ast.SymbolFlagsSetAccessorExcludes
2553
+ const SymbolFlagsSignature = ast.SymbolFlagsSignature
2554
+ const SymbolFlagsTransient = ast.SymbolFlagsTransient
2555
+ const SymbolFlagsType = ast.SymbolFlagsType
2556
+ const SymbolFlagsTypeAlias = ast.SymbolFlagsTypeAlias
2557
+ const SymbolFlagsTypeAliasExcludes = ast.SymbolFlagsTypeAliasExcludes
2558
+ const SymbolFlagsTypeLiteral = ast.SymbolFlagsTypeLiteral
2559
+ const SymbolFlagsTypeParameter = ast.SymbolFlagsTypeParameter
2560
+ const SymbolFlagsTypeParameterExcludes = ast.SymbolFlagsTypeParameterExcludes
2561
+ const SymbolFlagsValue = ast.SymbolFlagsValue
2562
+ const SymbolFlagsValueModule = ast.SymbolFlagsValueModule
2563
+ const SymbolFlagsValueModuleExcludes = ast.SymbolFlagsValueModuleExcludes
2564
+ const SymbolFlagsVariable = ast.SymbolFlagsVariable
2565
+ type SymbolId = ast.SymbolId
2566
+ //go:linkname SymbolName github.com/microsoft/typescript-go/internal/ast.SymbolName
2567
+ func SymbolName(symbol *ast.Symbol) string
2568
+ type SymbolTable = ast.SymbolTable
2569
+ type SyntaxList = ast.SyntaxList
2570
+ type SyntaxListNode = ast.SyntaxListNode
2571
+ type SyntheticExpression = ast.SyntheticExpression
2572
+ type SyntheticExpressionNode = ast.SyntheticExpressionNode
2573
+ type SyntheticReferenceExpression = ast.SyntheticReferenceExpression
2574
+ type SyntheticReferenceExpressionNode = ast.SyntheticReferenceExpressionNode
2575
+ //go:linkname TagNamesAreEquivalent github.com/microsoft/typescript-go/internal/ast.TagNamesAreEquivalent
2576
+ func TagNamesAreEquivalent(lhs *ast.Expression, rhs *ast.Expression) bool
2577
+ type TaggedTemplateExpression = ast.TaggedTemplateExpression
2578
+ type TaggedTemplateExpressionNode = ast.TaggedTemplateExpressionNode
2579
+ type TemplateExpression = ast.TemplateExpression
2580
+ type TemplateExpressionNode = ast.TemplateExpressionNode
2581
+ type TemplateHead = ast.TemplateHead
2582
+ type TemplateHeadNode = ast.TemplateHeadNode
2583
+ type TemplateLiteral = ast.TemplateLiteral
2584
+ type TemplateLiteralLikeNode = ast.TemplateLiteralLikeNode
2585
+ type TemplateLiteralLikeNodeBase = ast.TemplateLiteralLikeNodeBase
2586
+ type TemplateLiteralToken = ast.TemplateLiteralToken
2587
+ type TemplateLiteralTypeNode = ast.TemplateLiteralTypeNode
2588
+ type TemplateLiteralTypeNodeNode = ast.TemplateLiteralTypeNodeNode
2589
+ type TemplateLiteralTypeSpan = ast.TemplateLiteralTypeSpan
2590
+ type TemplateLiteralTypeSpanList = ast.TemplateLiteralTypeSpanList
2591
+ type TemplateLiteralTypeSpanNode = ast.TemplateLiteralTypeSpanNode
2592
+ type TemplateMiddle = ast.TemplateMiddle
2593
+ type TemplateMiddleNode = ast.TemplateMiddleNode
2594
+ type TemplateMiddleOrTail = ast.TemplateMiddleOrTail
2595
+ type TemplateSpan = ast.TemplateSpan
2596
+ type TemplateSpanList = ast.TemplateSpanList
2597
+ type TemplateSpanNode = ast.TemplateSpanNode
2598
+ type TemplateTail = ast.TemplateTail
2599
+ type TemplateTailNode = ast.TemplateTailNode
2600
+ type ThisExpression = ast.ThisExpression
2601
+ type ThisTypeNode = ast.ThisTypeNode
2602
+ type ThisTypeNodeNode = ast.ThisTypeNodeNode
2603
+ type ThrowStatement = ast.ThrowStatement
2604
+ type ThrowStatementNode = ast.ThrowStatementNode
2605
+ //go:linkname ToFindAncestorResult github.com/microsoft/typescript-go/internal/ast.ToFindAncestorResult
2606
+ func ToFindAncestorResult(b bool) ast.FindAncestorResult
2607
+ type Token = ast.Token
2608
+ type TokenCacheKey = ast.TokenCacheKey
2609
+ type TokenFlags = ast.TokenFlags
2610
+ const TokenFlagsBinaryOrOctalSpecifier = ast.TokenFlagsBinaryOrOctalSpecifier
2611
+ const TokenFlagsBinarySpecifier = ast.TokenFlagsBinarySpecifier
2612
+ const TokenFlagsContainsInvalidEscape = ast.TokenFlagsContainsInvalidEscape
2613
+ const TokenFlagsContainsInvalidSeparator = ast.TokenFlagsContainsInvalidSeparator
2614
+ const TokenFlagsContainsLeadingZero = ast.TokenFlagsContainsLeadingZero
2615
+ const TokenFlagsContainsSeparator = ast.TokenFlagsContainsSeparator
2616
+ const TokenFlagsExtendedUnicodeEscape = ast.TokenFlagsExtendedUnicodeEscape
2617
+ const TokenFlagsHexEscape = ast.TokenFlagsHexEscape
2618
+ const TokenFlagsHexSpecifier = ast.TokenFlagsHexSpecifier
2619
+ const TokenFlagsIsInvalid = ast.TokenFlagsIsInvalid
2620
+ const TokenFlagsNone = ast.TokenFlagsNone
2621
+ const TokenFlagsNumericLiteralFlags = ast.TokenFlagsNumericLiteralFlags
2622
+ const TokenFlagsOctal = ast.TokenFlagsOctal
2623
+ const TokenFlagsOctalSpecifier = ast.TokenFlagsOctalSpecifier
2624
+ const TokenFlagsPrecedingJSDocComment = ast.TokenFlagsPrecedingJSDocComment
2625
+ const TokenFlagsPrecedingJSDocLeadingAsterisks = ast.TokenFlagsPrecedingJSDocLeadingAsterisks
2626
+ const TokenFlagsPrecedingJSDocWithDeprecated = ast.TokenFlagsPrecedingJSDocWithDeprecated
2627
+ const TokenFlagsPrecedingJSDocWithSeeOrLink = ast.TokenFlagsPrecedingJSDocWithSeeOrLink
2628
+ const TokenFlagsPrecedingLineBreak = ast.TokenFlagsPrecedingLineBreak
2629
+ const TokenFlagsRegularExpressionLiteralFlags = ast.TokenFlagsRegularExpressionLiteralFlags
2630
+ const TokenFlagsScientific = ast.TokenFlagsScientific
2631
+ const TokenFlagsSingleQuote = ast.TokenFlagsSingleQuote
2632
+ const TokenFlagsStringLiteralFlags = ast.TokenFlagsStringLiteralFlags
2633
+ const TokenFlagsTemplateLiteralLikeFlags = ast.TokenFlagsTemplateLiteralLikeFlags
2634
+ const TokenFlagsUnicodeEscape = ast.TokenFlagsUnicodeEscape
2635
+ const TokenFlagsUnterminated = ast.TokenFlagsUnterminated
2636
+ const TokenFlagsWithSpecifier = ast.TokenFlagsWithSpecifier
2637
+ type TokenNode = ast.TokenNode
2638
+ type TokenSyntaxKind = ast.TokenSyntaxKind
2639
+ type TriviaSyntaxKind = ast.TriviaSyntaxKind
2640
+ type TrueLiteral = ast.TrueLiteral
2641
+ //go:linkname TryGetClassExtendingExpressionWithTypeArguments github.com/microsoft/typescript-go/internal/ast.TryGetClassExtendingExpressionWithTypeArguments
2642
+ func TryGetClassExtendingExpressionWithTypeArguments(node *ast.Node) *ast.ClassLikeDeclaration
2643
+ //go:linkname TryGetClassImplementingOrExtendingExpressionWithTypeArguments github.com/microsoft/typescript-go/internal/ast.TryGetClassImplementingOrExtendingExpressionWithTypeArguments
2644
+ func TryGetClassImplementingOrExtendingExpressionWithTypeArguments(node *ast.Node) (class *ast.ClassLikeDeclaration, isImplements bool)
2645
+ //go:linkname TryGetImportFromModuleSpecifier github.com/microsoft/typescript-go/internal/ast.TryGetImportFromModuleSpecifier
2646
+ func TryGetImportFromModuleSpecifier(node *ast.StringLiteralLike) *ast.Node
2647
+ //go:linkname TryGetPropertyNameOfBindingOrAssignmentElement github.com/microsoft/typescript-go/internal/ast.TryGetPropertyNameOfBindingOrAssignmentElement
2648
+ func TryGetPropertyNameOfBindingOrAssignmentElement(bindingElement *ast.Node) *ast.Node
2649
+ //go:linkname TryGetTextOfPropertyName github.com/microsoft/typescript-go/internal/ast.TryGetTextOfPropertyName
2650
+ func TryGetTextOfPropertyName(name *ast.Node) (string, bool)
2651
+ type TryStatement = ast.TryStatement
2652
+ type TryStatementNode = ast.TryStatementNode
2653
+ type TupleTypeNode = ast.TupleTypeNode
2654
+ type TupleTypeNodeNode = ast.TupleTypeNodeNode
2655
+ type TypeAliasDeclaration = ast.TypeAliasDeclaration
2656
+ type TypeAliasDeclarationNode = ast.TypeAliasDeclarationNode
2657
+ type TypeArgumentList = ast.TypeArgumentList
2658
+ type TypeAssertion = ast.TypeAssertion
2659
+ type TypeAssertionNode = ast.TypeAssertionNode
2660
+ type TypeElement = ast.TypeElement
2661
+ type TypeElementBase = ast.TypeElementBase
2662
+ type TypeElementList = ast.TypeElementList
2663
+ type TypeList = ast.TypeList
2664
+ type TypeLiteralNode = ast.TypeLiteralNode
2665
+ type TypeLiteralNodeNode = ast.TypeLiteralNodeNode
2666
+ type TypeNode = ast.TypeNode
2667
+ type TypeNodeBase = ast.TypeNodeBase
2668
+ type TypeOfExpression = ast.TypeOfExpression
2669
+ type TypeOfExpressionNode = ast.TypeOfExpressionNode
2670
+ type TypeOnlyImportDeclaration = ast.TypeOnlyImportDeclaration
2671
+ type TypeOperatorNode = ast.TypeOperatorNode
2672
+ type TypeOperatorNodeNode = ast.TypeOperatorNodeNode
2673
+ type TypeParameterDeclaration = ast.TypeParameterDeclaration
2674
+ type TypeParameterDeclarationNode = ast.TypeParameterDeclarationNode
2675
+ type TypeParameterList = ast.TypeParameterList
2676
+ type TypePrecedence = ast.TypePrecedence
2677
+ const TypePrecedenceConditional = ast.TypePrecedenceConditional
2678
+ const TypePrecedenceFunction = ast.TypePrecedenceFunction
2679
+ const TypePrecedenceHighest = ast.TypePrecedenceHighest
2680
+ const TypePrecedenceIntersection = ast.TypePrecedenceIntersection
2681
+ const TypePrecedenceJSDoc = ast.TypePrecedenceJSDoc
2682
+ const TypePrecedenceLowest = ast.TypePrecedenceLowest
2683
+ const TypePrecedenceNonArray = ast.TypePrecedenceNonArray
2684
+ const TypePrecedencePostfix = ast.TypePrecedencePostfix
2685
+ const TypePrecedenceTypeOperator = ast.TypePrecedenceTypeOperator
2686
+ const TypePrecedenceUnion = ast.TypePrecedenceUnion
2687
+ type TypePredicateNode = ast.TypePredicateNode
2688
+ type TypePredicateNodeNode = ast.TypePredicateNodeNode
2689
+ type TypePredicateParameterName = ast.TypePredicateParameterName
2690
+ type TypeQueryNode = ast.TypeQueryNode
2691
+ type TypeQueryNodeNode = ast.TypeQueryNodeNode
2692
+ type TypeReferenceNode = ast.TypeReferenceNode
2693
+ type TypeReferenceNodeNode = ast.TypeReferenceNodeNode
2694
+ type TypeSyntaxBase = ast.TypeSyntaxBase
2695
+ type UnaryExpressionBase = ast.UnaryExpressionBase
2696
+ type UnionOrIntersectionTypeNode = ast.UnionOrIntersectionTypeNode
2697
+ type UnionOrIntersectionTypeNodeBase = ast.UnionOrIntersectionTypeNodeBase
2698
+ type UnionTypeNode = ast.UnionTypeNode
2699
+ type UnionTypeNodeNode = ast.UnionTypeNodeNode
2700
+ type UpdateExpressionBase = ast.UpdateExpressionBase
2701
+ type ValidImportTypeNode = ast.ValidImportTypeNode
2702
+ type VariableDeclaration = ast.VariableDeclaration
2703
+ type VariableDeclarationList = ast.VariableDeclarationList
2704
+ type VariableDeclarationListNode = ast.VariableDeclarationListNode
2705
+ type VariableDeclarationNode = ast.VariableDeclarationNode
2706
+ type VariableDeclarationNodeList = ast.VariableDeclarationNodeList
2707
+ type VariableOrParameterDeclaration = ast.VariableOrParameterDeclaration
2708
+ type VariableOrPropertyDeclaration = ast.VariableOrPropertyDeclaration
2709
+ type VariableStatement = ast.VariableStatement
2710
+ type VariableStatementNode = ast.VariableStatementNode
2711
+ type Visitor = ast.Visitor
2712
+ type VoidExpression = ast.VoidExpression
2713
+ type VoidExpressionNode = ast.VoidExpressionNode
2714
+ //go:linkname WalkUpBindingElementsAndPatterns github.com/microsoft/typescript-go/internal/ast.WalkUpBindingElementsAndPatterns
2715
+ func WalkUpBindingElementsAndPatterns(binding *ast.Node) *ast.Node
2716
+ //go:linkname WalkUpParenthesizedExpressions github.com/microsoft/typescript-go/internal/ast.WalkUpParenthesizedExpressions
2717
+ func WalkUpParenthesizedExpressions(node *ast.Expression) *ast.Node
2718
+ //go:linkname WalkUpParenthesizedTypes github.com/microsoft/typescript-go/internal/ast.WalkUpParenthesizedTypes
2719
+ func WalkUpParenthesizedTypes(node *ast.TypeNode) *ast.Node
2720
+ type WhileStatement = ast.WhileStatement
2721
+ type WhileStatementNode = ast.WhileStatementNode
2722
+ type WithStatement = ast.WithStatement
2723
+ type WithStatementNode = ast.WithStatementNode
2724
+ type YieldExpression = ast.YieldExpression
2725
+ type YieldExpressionNode = ast.YieldExpressionNode