@shapeshift-labs/frontier-lang-compiler 0.2.149 → 0.2.151

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 (280) hide show
  1. package/README.md +315 -9
  2. package/bench/real-repo-corpus-checkout-identity.mjs +134 -0
  3. package/bench/real-repo-corpus-checkout-proof.mjs +263 -0
  4. package/bench/real-repo-corpus-command-execution.mjs +314 -0
  5. package/bench/real-repo-corpus-evidence.mjs +165 -0
  6. package/bench/real-repo-corpus-suite.mjs +273 -0
  7. package/bench/smoke.mjs +109 -7
  8. package/dist/declarations/import-adapter-core.d.ts +4 -3
  9. package/dist/declarations/import-adapter-options-native.d.ts +21 -0
  10. package/dist/declarations/js-ts-project-merge-admission-routes.d.ts +35 -0
  11. package/dist/declarations/js-ts-project-merge-commonjs-interop.d.ts +29 -0
  12. package/dist/declarations/js-ts-project-merge-confidence.d.ts +64 -0
  13. package/dist/declarations/js-ts-project-merge-declaration-emit-parity.d.ts +37 -0
  14. package/dist/declarations/js-ts-project-merge-declarations.d.ts +65 -0
  15. package/dist/declarations/js-ts-project-merge-diagnostics.d.ts +97 -0
  16. package/dist/declarations/js-ts-project-merge-global-augmentation.d.ts +30 -0
  17. package/dist/declarations/js-ts-project-merge-jsx-render-branch.d.ts +48 -0
  18. package/dist/declarations/js-ts-project-merge-proof-levels.d.ts +109 -0
  19. package/dist/declarations/js-ts-project-merge-quality-gates.d.ts +38 -0
  20. package/dist/declarations/js-ts-project-merge-semantic-equivalence-proof.d.ts +45 -0
  21. package/dist/declarations/js-ts-project-merge-tsconfig.d.ts +43 -0
  22. package/dist/declarations/js-ts-safe-merge.d.ts +47 -0
  23. package/dist/declarations/js-ts-safe-project-merge.d.ts +120 -38
  24. package/dist/declarations/native-project-compiler-assignability-oracle.d.ts +41 -0
  25. package/dist/declarations/native-project-compiler-callable-signatures.d.ts +31 -0
  26. package/dist/declarations/native-project-compiler-class-member-runtime-proof.d.ts +87 -0
  27. package/dist/declarations/native-project-compiler-composite-types.d.ts +23 -0
  28. package/dist/declarations/native-project-compiler-enum-proof.d.ts +58 -0
  29. package/dist/declarations/native-project-compiler-index-signature.d.ts +7 -0
  30. package/dist/declarations/native-project-compiler-public-api-source-binding.d.ts +8 -0
  31. package/dist/declarations/native-project-compiler-scope.d.ts +37 -0
  32. package/dist/declarations/native-project-compiler-type-reference-targets.d.ts +38 -0
  33. package/dist/declarations/native-project-css-modules.d.ts +90 -0
  34. package/dist/declarations/native-project-decorator-metadata.d.ts +126 -0
  35. package/dist/declarations/native-project-jsx-graph.d.ts +313 -0
  36. package/dist/declarations/native-project-module-declarations.d.ts +52 -0
  37. package/dist/declarations/native-project-module-resolution.d.ts +76 -1
  38. package/dist/declarations/native-project-runtime-effect-target.d.ts +29 -0
  39. package/dist/declarations/native-project-runtime-executable-effect-evidence.d.ts +107 -0
  40. package/dist/declarations/native-project-runtime-mutation-target.d.ts +33 -0
  41. package/dist/declarations/native-project-runtime-promise-chain.d.ts +30 -0
  42. package/dist/declarations/native-project-runtime-promise-combinator.d.ts +22 -0
  43. package/dist/declarations/native-project-runtime-reachability.d.ts +30 -0
  44. package/dist/declarations/native-project-runtime-resource-management.d.ts +27 -0
  45. package/dist/declarations/native-project-runtime-yield-delegation.d.ts +10 -0
  46. package/dist/declarations/native-project-scope-template-reference.d.ts +13 -0
  47. package/dist/declarations/native-project-source-evidence.d.ts +8 -0
  48. package/dist/declarations/native-project.d.ts +40 -39
  49. package/dist/declarations/semantic-edit-script.d.ts +10 -8
  50. package/dist/declarations/semantic-graph-layers.d.ts +79 -0
  51. package/dist/declarations/semantic-patch-bundle-composition.d.ts +62 -0
  52. package/dist/declarations/semantic-sidecar.d.ts +3 -2
  53. package/dist/declarations/semantic-structural-diff.d.ts +94 -0
  54. package/dist/declarations/source-preservation.d.ts +32 -1
  55. package/dist/declarations/target-adapters.d.ts +22 -2
  56. package/dist/index.d.ts +32 -0
  57. package/dist/index.js +6 -0
  58. package/dist/internal/index-impl/compileNativeSource.js +53 -5
  59. package/dist/internal/index-impl/createLightweightNativeImport.js +58 -4
  60. package/dist/internal/index-impl/createNativeImportFromSyntaxAst.js +17 -1
  61. package/dist/internal/index-impl/createNativeImportFromTypeScriptAst.js +28 -4
  62. package/dist/internal/index-impl/createNativeProjectImportResult.js +31 -27
  63. package/dist/internal/index-impl/createNativeProjectModuleResolutionFromPackageManifests.js +145 -0
  64. package/dist/internal/index-impl/createNativeSourcePreservation.js +34 -7
  65. package/dist/internal/index-impl/createSemanticImportSidecar.js +27 -1
  66. package/dist/internal/index-impl/createTypeScriptCompilerNativeImporterAdapter.js +16 -5
  67. package/dist/internal/index-impl/dynamicImportExpressionMetadata.js +80 -0
  68. package/dist/internal/index-impl/importMetaUrlDependencyMetadata.js +176 -0
  69. package/dist/internal/index-impl/importNativeSource.js +2 -3
  70. package/dist/internal/index-impl/moduleImportAttributeMetadata.js +232 -0
  71. package/dist/internal/index-impl/projectSemanticEditScriptToSource.js +8 -1
  72. package/dist/internal/index-impl/projectSymbolGraphClassStaticBlocks.js +148 -0
  73. package/dist/internal/index-impl/projectSymbolGraphCompilerAdvancedTypeMetadata.js +45 -0
  74. package/dist/internal/index-impl/projectSymbolGraphCompilerCallableSignatureEquivalence.js +107 -0
  75. package/dist/internal/index-impl/projectSymbolGraphCompilerClassPrivateAccessorRuntimeProof.js +280 -0
  76. package/dist/internal/index-impl/projectSymbolGraphCompilerClassShapeEquivalence.js +103 -0
  77. package/dist/internal/index-impl/projectSymbolGraphCompilerConditionalTypeEquivalence.js +242 -0
  78. package/dist/internal/index-impl/projectSymbolGraphCompilerDecoratorRuntimeProof.js +197 -0
  79. package/dist/internal/index-impl/projectSymbolGraphCompilerEnumEquivalence.js +188 -0
  80. package/dist/internal/index-impl/projectSymbolGraphCompilerFacts.js +244 -0
  81. package/dist/internal/index-impl/projectSymbolGraphCompilerIndexSignatureEquivalence.js +58 -0
  82. package/dist/internal/index-impl/projectSymbolGraphCompilerMetadata.js +168 -0
  83. package/dist/internal/index-impl/projectSymbolGraphCompilerTypeEquivalence.js +199 -0
  84. package/dist/internal/index-impl/projectSymbolGraphCompilerTypeEquivalenceProof.js +204 -0
  85. package/dist/internal/index-impl/projectSymbolGraphCompilerTypeReferenceTargetEquivalence.js +99 -0
  86. package/dist/internal/index-impl/projectSymbolGraphCssModuleRecords.js +264 -0
  87. package/dist/internal/index-impl/projectSymbolGraphCssModuleScanners.js +242 -0
  88. package/dist/internal/index-impl/projectSymbolGraphCssModuleUtils.js +152 -0
  89. package/dist/internal/index-impl/projectSymbolGraphCssModules.js +82 -0
  90. package/dist/internal/index-impl/projectSymbolGraphJsxComponentImports.js +170 -0
  91. package/dist/internal/index-impl/projectSymbolGraphJsxComponentProviderLookup.js +167 -0
  92. package/dist/internal/index-impl/projectSymbolGraphJsxComponentWrappers.js +150 -0
  93. package/dist/internal/index-impl/projectSymbolGraphJsxContextTargets.js +71 -0
  94. package/dist/internal/index-impl/projectSymbolGraphJsxContextValues.js +212 -0
  95. package/dist/internal/index-impl/projectSymbolGraphJsxEventHandlers.js +172 -0
  96. package/dist/internal/index-impl/projectSymbolGraphJsxHookEffects.js +124 -0
  97. package/dist/internal/index-impl/projectSymbolGraphJsxHooks.js +281 -0
  98. package/dist/internal/index-impl/projectSymbolGraphJsxMemberComponents.js +139 -0
  99. package/dist/internal/index-impl/projectSymbolGraphJsxPropFlows.js +320 -0
  100. package/dist/internal/index-impl/projectSymbolGraphJsxPropValues.js +145 -0
  101. package/dist/internal/index-impl/projectSymbolGraphJsxProviderFlows.js +133 -0
  102. package/dist/internal/index-impl/projectSymbolGraphJsxRecords.js +315 -0
  103. package/dist/internal/index-impl/projectSymbolGraphJsxRenderCollections.js +155 -0
  104. package/dist/internal/index-impl/projectSymbolGraphJsxRenderReturns.js +291 -0
  105. package/dist/internal/index-impl/projectSymbolGraphJsxRenderRisk.js +279 -0
  106. package/dist/internal/index-impl/projectSymbolGraphModuleDeclarationShapes.js +138 -0
  107. package/dist/internal/index-impl/projectSymbolGraphModuleResolution.js +89 -87
  108. package/dist/internal/index-impl/projectSymbolGraphPackageConditions.js +314 -0
  109. package/dist/internal/index-impl/projectSymbolGraphReExportImportTargets.js +43 -0
  110. package/dist/internal/index-impl/projectSymbolGraphReExports.js +55 -1
  111. package/dist/internal/index-impl/projectSymbolGraphRuntimeRegions.js +108 -0
  112. package/dist/internal/index-impl/projectSymbolGraphScopeUseDefAliases.js +307 -0
  113. package/dist/internal/index-impl/projectSymbolGraphScopeUseDefLexical.js +320 -0
  114. package/dist/internal/index-impl/projectSymbolGraphScopeUseDefOwners.js +50 -0
  115. package/dist/internal/index-impl/projectSymbolGraphScopeUseDefRecordBuilders.js +112 -0
  116. package/dist/internal/index-impl/projectSymbolGraphScopeUseDefRecords.js +238 -0
  117. package/dist/internal/index-impl/projectSymbolGraphScopeUseDefStructural.js +104 -0
  118. package/dist/internal/index-impl/projectSymbolGraphScopeUseDefStructuralNormalize.js +242 -0
  119. package/dist/internal/index-impl/projectSymbolGraphScopeUseDefUseHashes.js +107 -0
  120. package/dist/internal/index-impl/projectSymbolGraphSourceMapGeneratedBoundary.js +111 -0
  121. package/dist/internal/index-impl/projectSymbolGraphSourceRecords.js +268 -0
  122. package/dist/internal/index-impl/projectSymbolGraphSourceRecordsOwnership.js +309 -0
  123. package/dist/internal/index-impl/replaySemanticEditProjection.js +53 -39
  124. package/dist/internal/index-impl/runtimeOrderEvidenceBinding.js +151 -0
  125. package/dist/internal/index-impl/runtimeOrderProofSurfaces.js +253 -0
  126. package/dist/internal/index-impl/semanticEditCallsiteArgumentMerge.js +319 -0
  127. package/dist/internal/index-impl/semanticEditExplicitSourceReplacement.js +7 -2
  128. package/dist/internal/index-impl/semanticEditProjectionRecord.js +8 -0
  129. package/dist/internal/index-impl/semanticEditReplayDiagnostics.js +7 -2
  130. package/dist/internal/index-impl/semanticEditReplayOutputBinding.js +61 -0
  131. package/dist/internal/index-impl/semanticEditReplayRerunRoute.js +27 -0
  132. package/dist/internal/index-impl/semanticEditReplaySourceReplacement.js +6 -1
  133. package/dist/internal/index-impl/semanticEditRuntimeOrderReasons.js +320 -0
  134. package/dist/internal/index-impl/semanticEditScriptClassification.js +90 -5
  135. package/dist/internal/index-impl/semanticEditScripts.js +42 -5
  136. package/dist/internal/index-impl/semanticEditTypeSyntaxReasons.js +134 -0
  137. package/dist/internal/index-impl/semanticIndexFromNativeDeclarations.js +11 -5
  138. package/dist/internal/index-impl/semanticPatchBundleComposition.js +166 -0
  139. package/dist/internal/index-impl/semanticStructuralDiffRecords.js +150 -0
  140. package/dist/internal/index-impl/sourceMapGeneratedBoundaryGate.js +185 -0
  141. package/dist/internal/index-impl/staticMemberLiteral.js +31 -0
  142. package/dist/internal/index-impl/staticOptionalMemberReference.js +22 -0
  143. package/dist/internal/index-impl/syntaxAstSourcePreservation.js +273 -0
  144. package/dist/internal/index-impl/syntaxCommonJsModuleDeclarationEntries.js +297 -0
  145. package/dist/internal/index-impl/syntaxModuleDeclarationEntries.js +56 -132
  146. package/dist/internal/index-impl/syntaxModuleEntryRecords.js +160 -0
  147. package/dist/internal/index-impl/typeScriptCompilerAdvancedTypeShapes.js +160 -0
  148. package/dist/internal/index-impl/typeScriptCompilerAssignabilityOracle.js +97 -0
  149. package/dist/internal/index-impl/typeScriptCompilerClassApi.js +238 -0
  150. package/dist/internal/index-impl/typeScriptCompilerDecoratorMetadata.js +290 -0
  151. package/dist/internal/index-impl/typeScriptCompilerEnumShape.js +279 -0
  152. package/dist/internal/index-impl/typeScriptCompilerFacts.js +294 -0
  153. package/dist/internal/index-impl/typeScriptCompilerInferenceSyntax.js +170 -0
  154. package/dist/internal/index-impl/typeScriptCompilerReferenceGraph.js +186 -0
  155. package/dist/internal/index-impl/typeScriptCompilerSymbolIdentity.js +294 -0
  156. package/dist/internal/index-impl/typeScriptCompilerTypeReferenceTargets.js +142 -0
  157. package/dist/internal/index-impl/typeScriptDeclaration.js +10 -38
  158. package/dist/internal/index-impl/typeScriptModuleDeclarationEntries.js +52 -15
  159. package/dist/internal/index-impl/typeScriptSourceFilePreservation.js +296 -0
  160. package/dist/js-ts-safe-member-class-invariants.js +247 -0
  161. package/dist/js-ts-safe-member-merge-result.js +23 -3
  162. package/dist/js-ts-safe-member-merge.js +28 -4
  163. package/dist/js-ts-safe-merge-binding-patterns.js +170 -0
  164. package/dist/js-ts-safe-merge-context.js +1 -0
  165. package/dist/js-ts-safe-merge-jsx-attribute-fallback.js +314 -0
  166. package/dist/js-ts-safe-merge-jsx-attribute-parser.js +277 -0
  167. package/dist/js-ts-safe-merge-jsx-child-expression-fallback.js +161 -0
  168. package/dist/js-ts-safe-merge-jsx-child-expression-merge.js +319 -0
  169. package/dist/js-ts-safe-merge-jsx-child-expression-parser.js +300 -0
  170. package/dist/js-ts-safe-merge-parse-declarations.js +46 -2
  171. package/dist/js-ts-safe-merge-parse-statements.js +8 -0
  172. package/dist/js-ts-safe-merge-plan.js +3 -1
  173. package/dist/js-ts-safe-merge-semantic-edit-fallback.js +49 -0
  174. package/dist/js-ts-safe-merge-source-shape-fallbacks.js +5 -1
  175. package/dist/js-ts-safe-merge-top-level-rename-fallback.js +31 -5
  176. package/dist/js-ts-safe-merge-top-level-rename-result.js +7 -2
  177. package/dist/js-ts-safe-merge-variable-declarator-fallback.js +124 -6
  178. package/dist/js-ts-safe-merge-variable-declarator-parser.js +34 -4
  179. package/dist/js-ts-safe-merge.js +136 -0
  180. package/dist/js-ts-safe-project-merge-admission-routes.js +216 -0
  181. package/dist/js-ts-safe-project-merge-admission.js +161 -0
  182. package/dist/js-ts-safe-project-merge-ambient.js +110 -0
  183. package/dist/js-ts-safe-project-merge-core.js +85 -0
  184. package/dist/js-ts-safe-project-merge-css-module-conflicts.js +60 -0
  185. package/dist/js-ts-safe-project-merge-declaration-emit-parity.js +186 -0
  186. package/dist/js-ts-safe-project-merge-declarations.js +227 -0
  187. package/dist/js-ts-safe-project-merge-diagnostics-metadata.js +42 -0
  188. package/dist/js-ts-safe-project-merge-diagnostics-ts.js +73 -0
  189. package/dist/js-ts-safe-project-merge-diagnostics.js +283 -0
  190. package/dist/js-ts-safe-project-merge-evidence-routing.js +38 -0
  191. package/dist/js-ts-safe-project-merge-files.js +70 -0
  192. package/dist/js-ts-safe-project-merge-global-augmentation-compatibility.js +99 -0
  193. package/dist/js-ts-safe-project-merge-graph-conflicts.js +90 -2
  194. package/dist/js-ts-safe-project-merge-graph-delta-commonjs-interop.js +108 -0
  195. package/dist/js-ts-safe-project-merge-graph-delta-compiler-conflicts.js +179 -0
  196. package/dist/js-ts-safe-project-merge-graph-delta-compiler-details.js +189 -0
  197. package/dist/js-ts-safe-project-merge-graph-delta-conflicts.js +51 -184
  198. package/dist/js-ts-safe-project-merge-graph-delta-identity-conflicts.js +202 -0
  199. package/dist/js-ts-safe-project-merge-graph-delta-inference-syntax.js +80 -0
  200. package/dist/js-ts-safe-project-merge-graph-delta-module-declarations.js +155 -0
  201. package/dist/js-ts-safe-project-merge-graph-limits.js +16 -1
  202. package/dist/js-ts-safe-project-merge-graph.js +37 -5
  203. package/dist/js-ts-safe-project-merge-import-removal.js +292 -0
  204. package/dist/js-ts-safe-project-merge-jsx-graph-conflict-details.js +235 -0
  205. package/dist/js-ts-safe-project-merge-jsx-graph-conflicts.js +173 -0
  206. package/dist/js-ts-safe-project-merge-jsx-prop-contracts.js +86 -0
  207. package/dist/js-ts-safe-project-merge-jsx-render-branch-proof.js +189 -0
  208. package/dist/js-ts-safe-project-merge-missing-evidence.js +310 -0
  209. package/dist/js-ts-safe-project-merge-move-rename.js +209 -0
  210. package/dist/js-ts-safe-project-merge-proof-conflicts.js +44 -0
  211. package/dist/js-ts-safe-project-merge-proof-levels.js +320 -0
  212. package/dist/js-ts-safe-project-merge-quality-gates.js +140 -0
  213. package/dist/js-ts-safe-project-merge-routing-calibration.js +125 -0
  214. package/dist/js-ts-safe-project-merge-runtime-region-conflicts.js +156 -0
  215. package/dist/js-ts-safe-project-merge-scope-use-def-conflicts.js +292 -0
  216. package/dist/js-ts-safe-project-merge-semantic-equivalence-proof.js +175 -0
  217. package/dist/js-ts-safe-project-merge-semantic-replay-proof.js +311 -0
  218. package/dist/js-ts-safe-project-merge-semantic-replay-routes.js +179 -0
  219. package/dist/js-ts-safe-project-merge-source-span-conflicts.js +310 -0
  220. package/dist/js-ts-safe-project-merge-source-span-roundtrip-proof.js +172 -0
  221. package/dist/js-ts-safe-project-merge-split-merge-admission.js +96 -0
  222. package/dist/js-ts-safe-project-merge-split-merge-records.js +320 -0
  223. package/dist/js-ts-safe-project-merge-split-merge-shapes.js +234 -0
  224. package/dist/js-ts-safe-project-merge-split-merge.js +218 -0
  225. package/dist/js-ts-safe-project-merge-summary.js +320 -0
  226. package/dist/js-ts-safe-project-merge-symbol-move-admission.js +63 -0
  227. package/dist/js-ts-safe-project-merge-symbol-move-default-admission.js +143 -0
  228. package/dist/js-ts-safe-project-merge-symbol-move-risks.js +213 -0
  229. package/dist/js-ts-safe-project-merge-symbol-move.js +316 -0
  230. package/dist/js-ts-safe-project-merge-symbol-rename-admission.js +59 -0
  231. package/dist/js-ts-safe-project-merge-symbol-rename-default-admission.js +111 -0
  232. package/dist/js-ts-safe-project-merge-symbol-rename.js +319 -0
  233. package/dist/js-ts-safe-project-merge-ts-options.js +205 -0
  234. package/dist/js-ts-safe-project-merge-ts-program.js +268 -0
  235. package/dist/js-ts-safe-project-merge-typed-property-rename-rebase-utils.js +69 -0
  236. package/dist/js-ts-safe-project-merge-typed-property-rename-rebase.js +317 -0
  237. package/dist/js-ts-safe-project-merge-unsupported-surfaces.js +319 -0
  238. package/dist/js-ts-safe-project-merge.js +171 -172
  239. package/dist/js-ts-semantic-scope-use-def-bindings.js +287 -0
  240. package/dist/js-ts-semantic-scope-use-def-scan.js +241 -0
  241. package/dist/js-ts-semantic-scope-use-def-utils.js +132 -0
  242. package/dist/js-ts-semantic-scope-use-def.js +217 -0
  243. package/dist/lightweight-dependency-effects.js +28 -4
  244. package/dist/lightweight-dependency-relations.js +13 -7
  245. package/dist/lightweight-dependency-top-level.js +63 -0
  246. package/dist/native-import-language-profiles.js +27 -1
  247. package/dist/native-js-ts-importers.js +9 -5
  248. package/dist/native-parser-ast-format-profiles.js +12 -0
  249. package/dist/native-parser-html-css-format-profiles.js +85 -0
  250. package/dist/native-region-scanner-core.js +5 -3
  251. package/dist/native-region-scanner-js-commonjs.js +155 -0
  252. package/dist/native-region-scanner-js-imports.js +51 -13
  253. package/dist/native-region-scanner-js-reexports.js +79 -0
  254. package/dist/native-region-scanner-js-ts-helpers.js +23 -0
  255. package/dist/native-source-ledger-helpers.js +1 -1
  256. package/dist/native-source-ledger.js +24 -10
  257. package/dist/native-source-maps-ecma426.js +316 -0
  258. package/dist/native-source-maps.js +36 -6
  259. package/dist/native-source-preservation-ownership.js +292 -0
  260. package/dist/native-source-preservation-scanner.js +63 -25
  261. package/dist/native-source-preservation-types.d.ts +3 -0
  262. package/dist/semantic-import-effect-occurrences.js +242 -0
  263. package/dist/semantic-import-effect-regions.js +95 -58
  264. package/dist/semantic-import-graph-layers.js +224 -0
  265. package/dist/semantic-import-runtime-conditional-evidence.js +135 -0
  266. package/dist/semantic-import-runtime-effect-target-evidence.js +145 -0
  267. package/dist/semantic-import-runtime-exit-evidence.js +32 -0
  268. package/dist/semantic-import-runtime-import-meta-evidence.js +33 -0
  269. package/dist/semantic-import-runtime-mutation-evidence.js +155 -0
  270. package/dist/semantic-import-runtime-order-evidence.js +318 -0
  271. package/dist/semantic-import-runtime-promise-chain-evidence.js +103 -0
  272. package/dist/semantic-import-runtime-promise-combinator-evidence.js +166 -0
  273. package/dist/semantic-import-runtime-reachability-evidence.js +269 -0
  274. package/dist/semantic-import-runtime-resource-management-evidence.js +293 -0
  275. package/dist/semantic-import-runtime-switch-evidence.js +304 -0
  276. package/dist/semantic-import-runtime-throw-evidence.js +44 -0
  277. package/dist/semantic-import-runtime-try-finally-evidence.js +172 -0
  278. package/dist/semantic-import-sidecar-entry.js +4 -0
  279. package/dist/semantic-import-source-preservation.js +6 -2
  280. package/package.json +1 -1
@@ -0,0 +1,172 @@
1
+ function tryCatchOrderEvidence(lines, lineNumber, enclosingControlFlow) {
2
+ if (!Array.isArray(lines) || lineNumber <= 1) return [];
3
+ const records = [];
4
+ const catchBlock = lastRecord(enclosingControlFlow, (record) => record.kind === 'exception' && /^catch\b/.test(record.text ?? ''));
5
+ if (catchBlock) records.push({ kind: 'catch-handler', line: catchBlock.line, text: catchBlock.text, completion: 'catch-handler-runs-after-matched-throw' });
6
+ const tryBlock = lastRecord(enclosingControlFlow, (record) => record.kind === 'exception' && /^try\b/.test(record.text ?? ''));
7
+ const catchForTry = tryBlock ? findCatchForTry(lines, tryBlock.line) : undefined;
8
+ if (tryBlock && catchForTry) {
9
+ records.push({
10
+ kind: 'try-catch',
11
+ tryLine: tryBlock.line,
12
+ catchLine: catchForTry.line,
13
+ catchText: catchForTry.text,
14
+ completion: 'catch-handler-runs-for-try-throw-before-continuation'
15
+ });
16
+ }
17
+ return records;
18
+ }
19
+
20
+ function tryFinallyOrderEvidence(lines, lineNumber, enclosingControlFlow) {
21
+ if (!Array.isArray(lines) || lineNumber <= 1) return [];
22
+ const records = [];
23
+ const finalizer = lastRecord(enclosingControlFlow, (record) => record.kind === 'exception' && /^finally\b/.test(record.text ?? ''));
24
+ if (finalizer) {
25
+ records.push({ kind: 'finalizer', line: finalizer.line, text: finalizer.text, completion: 'finally-before-completion-propagates' });
26
+ }
27
+ const tryBlock = lastRecord(enclosingControlFlow, (record) => record.kind === 'exception' && /^try\b/.test(record.text ?? ''));
28
+ const finalizerForTry = tryBlock ? findFinallyForTry(lines, tryBlock.line) : undefined;
29
+ if (tryBlock && finalizerForTry) {
30
+ const loop = lastRecord(enclosingControlFlow, (record) => record.kind === 'loop');
31
+ records.push(compactRecord({
32
+ kind: 'try-finally',
33
+ tryLine: tryBlock.line,
34
+ finallyLine: finalizerForTry.line,
35
+ finalizerText: finalizerForTry.text,
36
+ completion: 'finalizer-runs-before-try-completion-propagates',
37
+ enclosingLoop: loop ? { line: loop.line, text: loop.text } : undefined
38
+ }));
39
+ }
40
+ return records;
41
+ }
42
+
43
+ function findCatchForTry(lines, tryLine) {
44
+ const startLine = Number(tryLine);
45
+ if (!Number.isFinite(startLine) || startLine < 1 || startLine > lines.length) return undefined;
46
+ let depth = 0;
47
+ let started = false;
48
+ let quote;
49
+ let escaped = false;
50
+ for (let lineIndex = startLine - 1; lineIndex < lines.length; lineIndex += 1) {
51
+ const line = String(lines[lineIndex] ?? '');
52
+ let index = lineIndex === startLine - 1 ? tryKeywordIndex(line) : 0;
53
+ if (index < 0) return undefined;
54
+ for (; index < line.length; index += 1) {
55
+ const char = line[index];
56
+ if (quote) {
57
+ if (escaped) escaped = false;
58
+ else if (char === '\\') escaped = true;
59
+ else if (char === quote) quote = undefined;
60
+ continue;
61
+ }
62
+ if (char === '\'' || char === '"' || char === '`') { quote = char; continue; }
63
+ if (char === '{') { depth += 1; started = true; }
64
+ else if (char === '}' && started) {
65
+ depth = Math.max(0, depth - 1);
66
+ if (depth === 0) return catchAfterTryClose(lines, lineIndex, index);
67
+ }
68
+ }
69
+ }
70
+ return undefined;
71
+ }
72
+
73
+ function findFinallyForTry(lines, tryLine) {
74
+ const startLine = Number(tryLine);
75
+ if (!Number.isFinite(startLine) || startLine < 1 || startLine > lines.length) return undefined;
76
+ let depth = 0;
77
+ let started = false;
78
+ let quote;
79
+ let escaped = false;
80
+ for (let lineIndex = startLine - 1; lineIndex < lines.length; lineIndex += 1) {
81
+ const line = String(lines[lineIndex] ?? '');
82
+ let index = lineIndex === startLine - 1 ? tryKeywordIndex(line) : 0;
83
+ if (index < 0) return undefined;
84
+ for (; index < line.length; index += 1) {
85
+ const char = line[index];
86
+ if (quote) {
87
+ if (escaped) escaped = false;
88
+ else if (char === '\\') escaped = true;
89
+ else if (char === quote) quote = undefined;
90
+ continue;
91
+ }
92
+ if (char === '\'' || char === '"' || char === '`') { quote = char; continue; }
93
+ if (char === '{') { depth += 1; started = true; }
94
+ else if (char === '}' && started) {
95
+ depth = Math.max(0, depth - 1);
96
+ if (depth === 0) return finallyAfterTryClose(lines, lineIndex, index);
97
+ }
98
+ }
99
+ }
100
+ return undefined;
101
+ }
102
+
103
+ function catchAfterTryClose(lines, closeLineIndex, closeColumn) {
104
+ const sameLine = catchRecord(lines[closeLineIndex], closeLineIndex + 1, closeColumn + 1);
105
+ if (sameLine) return sameLine;
106
+ for (let index = closeLineIndex + 1; index < lines.length; index += 1) {
107
+ const line = String(lines[index] ?? '');
108
+ if (!line.trim()) continue;
109
+ return catchRecord(line, index + 1, 0);
110
+ }
111
+ return undefined;
112
+ }
113
+
114
+ function finallyAfterTryClose(lines, closeLineIndex, closeColumn) {
115
+ const sameLine = finallyRecord(lines[closeLineIndex], closeLineIndex + 1, closeColumn + 1);
116
+ if (sameLine) return sameLine;
117
+ for (let index = closeLineIndex + 1; index < lines.length; index += 1) {
118
+ const line = String(lines[index] ?? '');
119
+ if (!line.trim()) continue;
120
+ return finallyRecord(line, index + 1, 0);
121
+ }
122
+ return undefined;
123
+ }
124
+
125
+ function catchRecord(line, lineNumber, startIndex) {
126
+ const text = String(line ?? '');
127
+ const match = /\bcatch\b/.exec(text.slice(startIndex));
128
+ if (!match) return undefined;
129
+ const catchIndex = startIndex + match.index;
130
+ const open = text.indexOf('(', catchIndex);
131
+ const close = matchingParenIndex(text, open);
132
+ const catchText = open >= 0 && close !== undefined ? text.slice(catchIndex, close + 1) : text.slice(catchIndex, statementEnd(text, catchIndex));
133
+ return { line: lineNumber, text: normalizeOrderEvidenceText(catchText) || 'catch' };
134
+ }
135
+
136
+ function finallyRecord(line, lineNumber, startIndex) {
137
+ const match = /\bfinally\b/.exec(String(line ?? '').slice(startIndex));
138
+ return match ? { line: lineNumber, text: 'finally' } : undefined;
139
+ }
140
+
141
+ function lastRecord(records, predicate) {
142
+ for (let index = (records?.length ?? 0) - 1; index >= 0; index -= 1) {
143
+ if (predicate(records[index])) return records[index];
144
+ }
145
+ return undefined;
146
+ }
147
+
148
+ function tryKeywordIndex(line) { const match = /\btry\b/.exec(line); return match ? match.index : -1; }
149
+ function statementEnd(line, start) { const semicolon = String(line ?? '').indexOf(';', Math.max(0, start)); return semicolon === -1 ? String(line ?? '').length : semicolon + 1; }
150
+ function normalizeOrderEvidenceText(value) { return String(value ?? '').replace(/\s+/g, ' ').trim(); }
151
+ function matchingParenIndex(line, open) {
152
+ if (open < 0) return undefined;
153
+ let depth = 0;
154
+ let quote;
155
+ let escaped = false;
156
+ for (let index = open; index < line.length; index += 1) {
157
+ const char = line[index];
158
+ if (quote) {
159
+ if (escaped) escaped = false;
160
+ else if (char === '\\') escaped = true;
161
+ else if (char === quote) quote = undefined;
162
+ continue;
163
+ }
164
+ if (char === '\'' || char === '"' || char === '`') { quote = char; continue; }
165
+ if (char === '(') depth += 1;
166
+ else if (char === ')' && --depth === 0) return index;
167
+ }
168
+ return undefined;
169
+ }
170
+ function compactRecord(record) { return Object.fromEntries(Object.entries(record).filter(([, value]) => value !== undefined)); }
171
+
172
+ export { tryCatchOrderEvidence, tryFinallyOrderEvidence };
@@ -2,6 +2,7 @@ import { uniqueRecordsById, uniqueStrings } from './native-import-utils.js';
2
2
  import { semanticCallsiteRecordsForImport } from './semantic-import-callsite-regions.js';
3
3
  import { summarizeSemanticImportDependencyRelations } from './semantic-import-dependencies.js';
4
4
  import { semanticEffectRegionRecordsForImport } from './semantic-import-effect-regions.js';
5
+ import { resourceManagementRecordsForImport } from './semantic-import-runtime-resource-management-evidence.js';
5
6
  import { semanticOwnershipRegionForSymbol, semanticPatchHintForRegion, summarizeSemanticImportRegionTaxonomy } from './semantic-import-regions.js';
6
7
  import { collectKernelSourcePreservationFromImport } from './semantic-import-source-preservation.js';
7
8
  import {
@@ -27,6 +28,7 @@ function semanticImportSidecarEntry(imported, index, options) {
27
28
  const readiness = semanticImportEntryReadiness(imported);
28
29
  const callsites = semanticCallsiteRecordsForImport(imported, semanticIndex, options);
29
30
  const effectRegions = semanticEffectRegionRecordsForImport(imported, semanticIndex, options);
31
+ const resourceManagement = resourceManagementRecordsForImport(imported, semanticIndex, options);
30
32
  const mappingsBySymbolId = new Map();
31
33
  const mappingsBySymbolAndNode = new Map();
32
34
  for (const mapping of sourceMapMappings) {
@@ -71,8 +73,10 @@ function semanticImportSidecarEntry(imported, index, options) {
71
73
  }
72
74
  regions.push(...callsites.ownershipRegions);
73
75
  regions.push(...effectRegions.ownershipRegions);
76
+ regions.push(...resourceManagement.ownershipRegions);
74
77
  symbols.push(...callsites.symbols.map((symbol) => ({ ...symbol, readiness })));
75
78
  symbols.push(...effectRegions.symbols.map((symbol) => ({ ...symbol, readiness })));
79
+ symbols.push(...resourceManagement.symbols.map((symbol) => ({ ...symbol, readiness })));
76
80
  const ownershipRegions = uniqueRecordsById(regions);
77
81
  const regionTaxonomy = summarizeSemanticImportRegionTaxonomy(ownershipRegions);
78
82
  const patchHints = ownershipRegions.map((region) => semanticPatchHintForRegion(region, readiness, options));
@@ -45,7 +45,7 @@ function createKernelSourcePreservationRecords(input) {
45
45
  triviaByKind: input.sourcePreservation.summary?.triviaByKind ?? countBy((input.sourcePreservation.trivia ?? []).map((entry) => entry.kind ?? 'unknown')),
46
46
  directivesByKind: input.sourcePreservation.summary?.directivesByKind ?? countBy((input.sourcePreservation.directives ?? []).map((entry) => entry.kind ?? 'directive')),
47
47
  directiveKinds: input.sourcePreservation.summary?.directiveKinds ?? uniqueStrings((input.sourcePreservation.directives ?? []).map((entry) => entry.kind ?? 'directive')),
48
- commentSpanIds: input.sourcePreservation.summary?.commentSpanIds ?? (input.sourcePreservation.trivia ?? []).filter((entry) => entry.kind === 'comment').map((entry) => entry.id).filter(Boolean),
48
+ commentSpanIds: input.sourcePreservation.summary?.commentSpanIds ?? (input.sourcePreservation.trivia ?? []).filter((entry) => isCommentKind(entry.kind)).map((entry) => entry.id).filter(Boolean),
49
49
  directiveSpanIds: input.sourcePreservation.summary?.directiveSpanIds ?? (input.sourcePreservation.directives ?? []).map((entry) => entry.id).filter(Boolean),
50
50
  inspectionTags: sourcePreservationInspectionTags({
51
51
  compilerRecord: 'nativeSourcePreservation',
@@ -242,7 +242,7 @@ function compactSourcePreservationRecord(record) {
242
242
  triviaByKind: record.summary?.triviaByKind ?? countBy((record.trivia ?? []).map((entry) => entry.kind ?? 'unknown')),
243
243
  directivesByKind: record.summary?.directivesByKind ?? countBy((record.directives ?? []).map((entry) => entry.kind ?? 'directive')),
244
244
  directiveKinds: record.summary?.directiveKinds ?? uniqueStrings((record.directives ?? []).map((entry) => entry.kind ?? 'directive')),
245
- commentSpanIds: record.summary?.commentSpanIds ?? (record.trivia ?? []).filter((entry) => entry.kind === 'comment').map((entry) => entry.id).filter(Boolean),
245
+ commentSpanIds: record.summary?.commentSpanIds ?? (record.trivia ?? []).filter((entry) => isCommentKind(entry.kind)).map((entry) => entry.id).filter(Boolean),
246
246
  directiveSpanIds: record.summary?.directiveSpanIds ?? (record.directives ?? []).map((entry) => entry.id).filter(Boolean),
247
247
  truncated: record.summary?.truncated === true
248
248
  };
@@ -284,6 +284,10 @@ function sourceMapMappingInspectionMetadata(input, sourceMap, mapping) {
284
284
  };
285
285
  }
286
286
 
287
+ function isCommentKind(kind) {
288
+ return kind === 'comment' || kind === 'jsdoc-comment' || kind === 'block-comment';
289
+ }
290
+
287
291
  export {
288
292
  collectKernelSourcePreservationFromImport,
289
293
  createKernelSourcePreservationRecords,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shapeshift-labs/frontier-lang-compiler",
3
- "version": "0.2.149",
3
+ "version": "0.2.151",
4
4
  "description": "Compiler facade for Frontier Lang source documents and language projection adapters.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",