@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,185 @@
1
+ import { countBy, uniqueStrings } from '../../native-import-utils.js';
2
+
3
+ export function classifySourceMapGeneratedBoundary(sourceMaps, options = {}) {
4
+ const maps = normalizeSourceMapCollection(sourceMaps);
5
+ const entries = maps.flatMap((sourceMap) => (sourceMap?.mappings ?? [])
6
+ .map((mapping) => ({ sourceMap, mapping })));
7
+ const exactEntries = entries.filter(({ sourceMap, mapping }) => hasExactGeneratedBoundary(sourceMap, mapping));
8
+ const generatedBoundaryOwnershipRecords = exactEntries.map(generatedBoundaryOwnershipRecord).filter(Boolean);
9
+ const summary = sourceMapGeneratedBoundarySummary(maps, entries);
10
+ const exactBoundary = generatedBoundaryOwnershipRecords.length > 0;
11
+ return {
12
+ schema: 'frontier.lang.sourceMapGeneratedBoundaryGate.v1',
13
+ version: 1,
14
+ status: exactBoundary ? 'ready' : 'blocked',
15
+ readiness: exactBoundary ? 'ready' : 'blocked',
16
+ action: exactBoundary ? 'admit-exact-source-map-generated-boundary' : 'block-generated-file-merge-admission',
17
+ reviewRequired: !exactBoundary,
18
+ exactBoundary,
19
+ autoMergeClaim: false,
20
+ semanticEquivalenceClaim: false,
21
+ sourceLanguage: options.sourceLanguage,
22
+ target: options.target,
23
+ outputMode: options.outputMode,
24
+ projectionMode: options.projectionMode,
25
+ sourceMapIds: uniqueStrings(maps.map((sourceMap) => sourceMap?.id)),
26
+ sourceMapMappingIds: uniqueStrings(exactEntries.map(({ mapping }) => mapping?.id)),
27
+ generatedBoundaryOwnershipStatus: exactBoundary ? 'deterministic-source-map-span' : 'blocked',
28
+ generatedBoundaryOwnershipKeys: uniqueStrings(generatedBoundaryOwnershipRecords.map((record) => record.key)),
29
+ generatedBoundaryOwnershipRecords,
30
+ invariant: 'ECMA-426 source maps identify generated positions and original positions; Frontier generated-file merge admission requires validated source-map evidence plus exact source and generated spans with source and target hashes.',
31
+ missingInvariant: exactBoundary ? undefined : 'ecma-426-generated-position-only-no-range-boundary',
32
+ summary,
33
+ reasonCodes: sourceMapGeneratedBoundaryReasonCodes(summary, exactBoundary)
34
+ };
35
+ }
36
+
37
+ function normalizeSourceMapCollection(sourceMaps) {
38
+ if (!sourceMaps) return [];
39
+ return Array.isArray(sourceMaps) ? sourceMaps.filter(Boolean) : [sourceMaps].filter(Boolean);
40
+ }
41
+
42
+ function hasExactGeneratedBoundary(sourceMap, mapping) {
43
+ return mapping?.precision === 'exact'
44
+ && hasExactSpan(mapping.sourceSpan)
45
+ && hasExactSpan(mapping.generatedSpan)
46
+ && Boolean(sourceBoundaryHash(sourceMap, mapping))
47
+ && Boolean(targetBoundaryHash(sourceMap, mapping));
48
+ }
49
+
50
+ function hasExactSpan(span) {
51
+ if (!span) return false;
52
+ return [span.startLine, span.startColumn, span.endLine, span.endColumn]
53
+ .every((value) => Number.isFinite(value));
54
+ }
55
+
56
+ function sourceMapGeneratedBoundarySummary(maps, entries) {
57
+ const mappings = entries.map(({ mapping }) => mapping);
58
+ const ecma426Payloads = maps.map(ecma426SourceMapEvidence).filter((record) => record?.present);
59
+ const ecma426ReasonCodes = uniqueStrings(ecma426Payloads.flatMap((record) => record?.reasonCodes ?? []));
60
+ const generatedBoundaryOwnershipRecords = entries
61
+ .filter(({ sourceMap, mapping }) => hasExactGeneratedBoundary(sourceMap, mapping))
62
+ .map(generatedBoundaryOwnershipRecord)
63
+ .filter(Boolean);
64
+ return {
65
+ sourceMaps: maps.length,
66
+ mappings: mappings.length,
67
+ exactBoundaryMappings: entries.filter(({ sourceMap, mapping }) => hasExactGeneratedBoundary(sourceMap, mapping)).length,
68
+ deterministicGeneratedBoundaryOwnerships: generatedBoundaryOwnershipRecords.length,
69
+ exactPrecisionMappings: mappings.filter((mapping) => mapping?.precision === 'exact').length,
70
+ withSourceSpan: mappings.filter((mapping) => hasExactSpan(mapping?.sourceSpan)).length,
71
+ withGeneratedSpan: mappings.filter((mapping) => hasExactSpan(mapping?.generatedSpan)).length,
72
+ withSourceHash: entries.filter(({ sourceMap, mapping }) => sourceBoundaryHash(sourceMap, mapping)).length,
73
+ withTargetHash: entries.filter(({ sourceMap, mapping }) => targetBoundaryHash(sourceMap, mapping)).length,
74
+ byPrecision: countBy(mappings.map((mapping) => mapping?.precision ?? 'unknown')),
75
+ byOrigin: countBy(mappings.map((mapping) => mapping?.metadata?.sourceMapOrigin ?? 'native-import')),
76
+ byBoundaryKind: countBy(entries.map(({ sourceMap, mapping }) => sourceMapBoundaryKind(sourceMap, mapping))),
77
+ byEcma426Status: countBy(maps.map((sourceMap) => ecma426SourceMapEvidence(sourceMap)?.status ?? 'missing')),
78
+ ecma426Payloads: ecma426Payloads.length,
79
+ validEcma426Payloads: ecma426Payloads.filter((record) => record?.status === 'valid').length,
80
+ invalidEcma426Payloads: ecma426Payloads.filter((record) => record?.status === 'blocked').length,
81
+ decodedEcma426Mappings: ecma426Payloads.reduce((sum, record) => sum + numeric(record?.summary?.decodedMappings), 0),
82
+ ecma426ReasonCodes,
83
+ sourcePaths: uniqueStrings(entries.map(({ sourceMap, mapping }) => mapping?.sourceSpan?.path ?? sourceMap?.sourcePath)),
84
+ targetPaths: uniqueStrings(entries.map(({ sourceMap, mapping }) => mapping?.generatedSpan?.targetPath
85
+ ?? mapping?.generatedSpan?.path ?? sourceMap?.targetPath ?? sourceMap?.target?.emitPath))
86
+ };
87
+ }
88
+
89
+ function sourceMapGeneratedBoundaryReasonCodes(summary, exactBoundary) {
90
+ return uniqueStrings([
91
+ 'ecma-426:source-map-generated-boundary-gate',
92
+ 'runtime-neutral:source-map-records-only',
93
+ exactBoundary ? 'source-map-generated-boundary:exact' : 'ecma-426:missing-exact-source-generated-boundary',
94
+ exactBoundary ? 'source-map-generated-boundary:deterministic-source-map-span-ownership' : undefined,
95
+ summary.sourceMaps === 0 ? 'source-map:missing' : undefined,
96
+ !exactBoundary && summary.ecma426Payloads === 0 ? 'ecma-426:payload-missing' : undefined,
97
+ summary.validEcma426Payloads > 0 ? 'ecma-426:payload-valid' : undefined,
98
+ !exactBoundary && summary.invalidEcma426Payloads > 0 ? 'ecma-426:payload-invalid' : undefined,
99
+ !exactBoundary && summary.validEcma426Payloads > 0 && summary.exactBoundaryMappings === 0 ? 'ecma-426:payload-position-only' : undefined,
100
+ ...summary.ecma426ReasonCodes,
101
+ summary.mappings === 0 ? 'source-map:mappings-missing' : undefined,
102
+ summary.exactPrecisionMappings === 0 ? 'source-map:exact-precision-missing' : undefined,
103
+ summary.withSourceSpan < summary.mappings ? 'ecma-426:missing-original-range' : undefined,
104
+ summary.withGeneratedSpan < summary.mappings ? 'ecma-426:missing-generated-range' : undefined,
105
+ summary.withSourceHash < summary.mappings ? 'source-map:source-hash-missing' : undefined,
106
+ summary.withTargetHash < summary.mappings ? 'source-map:target-hash-missing' : undefined
107
+ ]);
108
+ }
109
+
110
+ function sourceBoundaryHash(sourceMap, mapping) {
111
+ return sourceMap?.sourceHash ?? mapping?.sourceSpan?.sourceHash ?? mapping?.sourceSpan?.sourceId;
112
+ }
113
+
114
+ function targetBoundaryHash(sourceMap, mapping) {
115
+ return sourceMap?.targetHash ?? mapping?.generatedSpan?.targetHash ?? mapping?.targetHash;
116
+ }
117
+
118
+ function generatedBoundaryOwnershipRecord({ sourceMap, mapping }) {
119
+ if (!hasExactGeneratedBoundary(sourceMap, mapping)) return undefined;
120
+ const sourceSpan = mapping?.sourceSpan;
121
+ const generatedSpan = mapping?.generatedSpan;
122
+ const sourcePath = sourceSpan?.path ?? sourceMap?.sourcePath;
123
+ const targetPath = generatedSpan?.targetPath ?? generatedSpan?.path ?? sourceMap?.targetPath ?? sourceMap?.target?.emitPath;
124
+ const sourceHash = sourceBoundaryHash(sourceMap, mapping);
125
+ const targetHash = targetBoundaryHash(sourceMap, mapping);
126
+ const sourceSpanKey = exactSpanKey(sourceSpan);
127
+ const generatedSpanKey = exactSpanKey(generatedSpan);
128
+ const key = stableKey(['generated-boundary', sourcePath, sourceHash, sourceSpanKey, targetPath, targetHash, generatedSpanKey]);
129
+ return compactRecord({
130
+ key,
131
+ status: 'deterministic-source-map-span',
132
+ sourceMapId: sourceMap?.id,
133
+ sourceMapMappingId: mapping?.id,
134
+ sourcePath,
135
+ targetPath,
136
+ sourceHash,
137
+ targetHash,
138
+ sourceSpanKey,
139
+ generatedSpanKey,
140
+ boundaryKind: sourceMapBoundaryKind(sourceMap, mapping),
141
+ sourceMapOrigin: mapping?.metadata?.sourceMapOrigin ?? 'native-import'
142
+ });
143
+ }
144
+
145
+ function exactSpanKey(span) {
146
+ return stableKey([
147
+ span?.path ?? span?.targetPath ?? span?.sourceId,
148
+ span?.start,
149
+ span?.end,
150
+ span?.startLine,
151
+ span?.startColumn,
152
+ span?.endLine,
153
+ span?.endColumn
154
+ ]);
155
+ }
156
+
157
+ function ecma426SourceMapEvidence(sourceMap) {
158
+ return sourceMap?.metadata?.ecma426SourceMap;
159
+ }
160
+
161
+ function numeric(value) {
162
+ const number = Number(value);
163
+ return Number.isFinite(number) ? number : 0;
164
+ }
165
+
166
+ function sourceMapBoundaryKind(sourceMap, mapping) {
167
+ const sourcePath = mapping?.sourceSpan?.path ?? sourceMap?.sourcePath;
168
+ const targetPath = mapping?.generatedSpan?.targetPath ?? mapping?.generatedSpan?.path
169
+ ?? sourceMap?.targetPath ?? sourceMap?.target?.emitPath;
170
+ const sourceHash = sourceBoundaryHash(sourceMap, mapping);
171
+ const targetHash = targetBoundaryHash(sourceMap, mapping);
172
+ if (sourcePath && targetPath && sourcePath === targetPath && sourceHash && targetHash && sourceHash === targetHash) {
173
+ return 'preserved-source';
174
+ }
175
+ return 'source-generated';
176
+ }
177
+
178
+ function stableKey(parts) {
179
+ const values = parts.map((part) => part === undefined || part === null ? '' : String(part));
180
+ return values.some(Boolean) ? values.join('#') : undefined;
181
+ }
182
+
183
+ function compactRecord(record) {
184
+ return Object.fromEntries(Object.entries(record).filter(([, value]) => value !== undefined));
185
+ }
@@ -0,0 +1,31 @@
1
+ function readStaticMemberLiteral(sourceText, start, limit) {
2
+ const quote = sourceText[start];
3
+ if (quote === '\'' || quote === '"') return readQuotedMemberLiteral(sourceText, start, limit, quote);
4
+ if (quote === '`') return readTemplateMemberLiteral(sourceText, start, limit);
5
+ return undefined;
6
+ }
7
+
8
+ function readQuotedMemberLiteral(sourceText, start, limit, quote) {
9
+ let value = '';
10
+ for (let index = start + 1; index < limit; index += 1) {
11
+ const char = sourceText[index];
12
+ if (char === '\\' || char === '\n' || char === '\r') return undefined;
13
+ if (char === quote) return { value, start: start + 1, end: index, literalKind: 'string-literal' };
14
+ value += char;
15
+ }
16
+ return undefined;
17
+ }
18
+
19
+ function readTemplateMemberLiteral(sourceText, start, limit) {
20
+ let value = '';
21
+ for (let index = start + 1; index < limit; index += 1) {
22
+ const char = sourceText[index];
23
+ if (char === '\\' || char === '\n' || char === '\r') return undefined;
24
+ if (char === '$' && sourceText[index + 1] === '{') return undefined;
25
+ if (char === '`') return { value, start: start + 1, end: index, literalKind: 'static-template-literal' };
26
+ value += char;
27
+ }
28
+ return undefined;
29
+ }
30
+
31
+ export { readStaticMemberLiteral };
@@ -0,0 +1,22 @@
1
+ function staticOptionalMemberReference(text) {
2
+ const normalized = normalizedOptionalMemberExpression(text);
3
+ if (!normalized.includes('?.')) return undefined;
4
+ if (!/^(?:this|[A-Za-z_$][\w$]*)(?:(?:\?\.|\.)[A-Za-z_$][\w$]*)+$/.test(normalized)) return undefined;
5
+ const path = normalized.split(/\?\.|\./);
6
+ const operators = normalized.match(/\?\.|\./g) ?? [];
7
+ const optionalSegmentIndexes = operators.flatMap((operator, index) => operator === '?.' ? [index + 1] : []);
8
+ return {
9
+ text: normalized,
10
+ root: path[0],
11
+ path,
12
+ memberPath: path.slice(1),
13
+ optionalSegments: optionalSegmentIndexes.map((index) => path[index]),
14
+ optionalSegmentIndexes
15
+ };
16
+ }
17
+
18
+ function normalizedOptionalMemberExpression(text) {
19
+ return String(text ?? '').trim().replace(/\s+/g, ' ').replace(/\s*(\?\.|\.)\s*/g, '$1').replace(/\s+/g, '');
20
+ }
21
+
22
+ export { staticOptionalMemberReference };
@@ -0,0 +1,273 @@
1
+ import { hashSemanticValue } from '@shapeshift-labs/frontier-lang-kernel';
2
+ import { idFragment } from '../../native-import-utils.js';
3
+ import {
4
+ createPreservedSourceOwnershipAnchor,
5
+ preservedOwnershipAnchorKind,
6
+ preservedSourceSegmentRole
7
+ } from '../../native-source-preservation-ownership.js';
8
+ import { createNativeSourcePreservation } from './createNativeSourcePreservation.js';
9
+
10
+ export function createSyntaxAstSourcePreservation(ast, input, options = {}) {
11
+ if (!ast || typeof input.sourceText !== 'string') return undefined;
12
+ const sourceText = input.sourceText;
13
+ const sourceHash = hashSemanticValue(sourceText);
14
+ const parserEvidence = `${options.parser ?? input.parser ?? 'syntax-ast'}-parser-token-comment-ranges`;
15
+ const tokensAndTrivia = syntaxAstTokensAndTrivia(ast, input, {
16
+ ...options,
17
+ parserEvidence,
18
+ sourceHash,
19
+ sourceText
20
+ });
21
+ if (!tokensAndTrivia?.exact) return undefined;
22
+ const adapterId = input.adapterId ?? options.adapterId ?? `${options.parser ?? input.parser ?? 'syntax'}-native-importer`;
23
+ return createNativeSourcePreservation({
24
+ language: input.language ?? options.language ?? 'javascript',
25
+ sourcePath: input.sourcePath,
26
+ sourceHash: input.sourceHash,
27
+ sourceText,
28
+ tokensAndTrivia,
29
+ includeTokens: options.includeTokens !== false,
30
+ includeTrivia: options.includeTrivia !== false,
31
+ parserTriviaEvidence: {
32
+ status: 'exact',
33
+ exactParserTrivia: true,
34
+ losslessCst: true,
35
+ sourceHash,
36
+ adapterId,
37
+ evidenceId: `${adapterId}:parser-token-comment:${idFragment(input.sourcePath ?? sourceHash)}`,
38
+ parserEvidence
39
+ },
40
+ metadata: {
41
+ parserTokenTriviaEvidence: parserEvidence,
42
+ parserTokenTriviaSource: options.astFormat ?? options.parser ?? 'syntax-ast'
43
+ }
44
+ });
45
+ }
46
+
47
+ function syntaxAstTokensAndTrivia(ast, input, options) {
48
+ const sourceText = options.sourceText;
49
+ const parserSegments = parserTokenCommentSegments(ast)
50
+ .map((entry, index) => segmentFromParserEntry(entry, index, input, options))
51
+ .filter(Boolean)
52
+ .sort((left, right) => left.span.start - right.span.start || left.span.end - right.span.end);
53
+ if (!parserSegments.length) return undefined;
54
+ const exact = parserSegmentsCoverSource(parserSegments, sourceText);
55
+ if (!exact) return { exact: false };
56
+ const whitespaceSegments = whitespaceTriviaSegments(parserSegments, input, options);
57
+ const allTrivia = [...parserSegments.filter((segment) => segment.role === 'trivia'), ...whitespaceSegments]
58
+ .sort((left, right) => left.span.start - right.span.start || left.span.end - right.span.end);
59
+ const tokens = limitRecords(parserSegments.filter((segment) => segment.role !== 'trivia'), options.maxTokens);
60
+ const trivia = limitRecords(allTrivia, options.maxTrivia);
61
+ return {
62
+ exact: true,
63
+ tokens: tokens.records,
64
+ trivia: trivia.records,
65
+ truncated: tokens.truncated || trivia.truncated,
66
+ parserEvidence: options.parserEvidence
67
+ };
68
+ }
69
+
70
+ function parserTokenCommentSegments(ast) {
71
+ return uniqueParserEntries([
72
+ ...arrayValue(ast.tokens),
73
+ ...arrayValue(ast.comments),
74
+ ...arrayValue(ast.program?.tokens),
75
+ ...arrayValue(ast.program?.comments)
76
+ ]);
77
+ }
78
+
79
+ function segmentFromParserEntry(entry, index, input, options) {
80
+ const range = sourceRange(entry);
81
+ if (!range || range.end <= range.start || range.end > options.sourceText.length) return undefined;
82
+ const text = options.sourceText.slice(range.start, range.end);
83
+ if (!parserEntrySourceTextMatches(entry, text)) return undefined;
84
+ const parserKind = parserEntryKind(entry);
85
+ const kind = entryIsComment(entry, text) ? preservedCommentKind(text) : syntaxTokenKind(parserKind, text, input.sourcePath);
86
+ return preservedParserSegment({
87
+ index,
88
+ kind,
89
+ text,
90
+ start: range.start,
91
+ end: range.end,
92
+ sourceHash: options.sourceHash,
93
+ sourcePath: input.sourcePath,
94
+ sourceText: options.sourceText,
95
+ parserEvidence: options.parserEvidence,
96
+ parserKind
97
+ });
98
+ }
99
+
100
+ function whitespaceTriviaSegments(parserSegments, input, options) {
101
+ const result = [];
102
+ let cursor = 0;
103
+ for (const segment of parserSegments) {
104
+ if (segment.span.start > cursor) {
105
+ result.push(...whitespaceSegmentsForText(options.sourceText.slice(cursor, segment.span.start), cursor, input, options, result.length));
106
+ }
107
+ cursor = Math.max(cursor, segment.span.end);
108
+ }
109
+ if (cursor < options.sourceText.length) {
110
+ result.push(...whitespaceSegmentsForText(options.sourceText.slice(cursor), cursor, input, options, result.length));
111
+ }
112
+ return result;
113
+ }
114
+
115
+ function whitespaceSegmentsForText(text, baseOffset, input, options, startIndex) {
116
+ const records = [];
117
+ const matches = text.matchAll(/\r\n|\r|\n|[ \t\v\f]+/g);
118
+ for (const match of matches) {
119
+ const start = baseOffset + match.index;
120
+ const end = start + match[0].length;
121
+ records.push(preservedParserSegment({
122
+ index: startIndex + records.length,
123
+ kind: /\r|\n/.test(match[0]) ? 'newline' : 'whitespace',
124
+ text: match[0],
125
+ start,
126
+ end,
127
+ sourceHash: options.sourceHash,
128
+ sourcePath: input.sourcePath,
129
+ sourceText: options.sourceText,
130
+ parserEvidence: options.parserEvidence,
131
+ parserKind: 'source-gap'
132
+ }));
133
+ }
134
+ return records;
135
+ }
136
+
137
+ function preservedParserSegment(input) {
138
+ const role = preservedSourceSegmentRole(input.kind);
139
+ const textHash = hashSemanticValue(input.text);
140
+ const span = {
141
+ sourceId: input.sourceHash,
142
+ path: input.sourcePath,
143
+ ...sourceSpanPositions(input.start, input.end, input.sourceText)
144
+ };
145
+ return {
146
+ id: `${input.kind}_${input.index + 1}_${idFragment(input.start)}`,
147
+ kind: input.kind,
148
+ role,
149
+ text: input.text,
150
+ textHash,
151
+ span,
152
+ ownershipAnchor: createPreservedSourceOwnershipAnchor({
153
+ kind: input.kind,
154
+ role,
155
+ text: input.text,
156
+ textHash,
157
+ sourcePath: input.sourcePath,
158
+ sourceHash: input.sourceHash,
159
+ span,
160
+ anchorKind: preservedOwnershipAnchorKind(input.kind, role),
161
+ parserEvidence: input.parserEvidence,
162
+ parserTriviaEvidence: {
163
+ status: 'exact',
164
+ exactParserTrivia: true,
165
+ losslessCst: true,
166
+ sourceHash: input.sourceHash,
167
+ parserEvidence: input.parserEvidence,
168
+ adapterId: 'syntax-ast'
169
+ }
170
+ }),
171
+ metadata: { parserKind: input.parserKind, parserEvidence: input.parserEvidence }
172
+ };
173
+ }
174
+
175
+ function parserSegmentsCoverSource(segments, sourceText) {
176
+ let cursor = 0;
177
+ for (const segment of segments) {
178
+ if (segment.span.start < cursor) return false;
179
+ if (!/^[\s]*$/.test(sourceText.slice(cursor, segment.span.start))) return false;
180
+ cursor = segment.span.end;
181
+ }
182
+ return /^[\s]*$/.test(sourceText.slice(cursor));
183
+ }
184
+
185
+ function sourceSpanPositions(start, end, sourceText) {
186
+ const beforeStart = String(sourceText ?? '').slice(0, start);
187
+ const beforeEnd = String(sourceText ?? '').slice(0, end);
188
+ const startLine = lineCount(beforeStart);
189
+ const endLine = lineCount(beforeEnd);
190
+ return {
191
+ start,
192
+ end,
193
+ startLine,
194
+ startColumn: start - lastLineStart(beforeStart) + 1,
195
+ endLine,
196
+ endColumn: end - lastLineStart(beforeEnd) + 1
197
+ };
198
+ }
199
+
200
+ function sourceRange(entry) {
201
+ if (Number.isFinite(entry?.start) && Number.isFinite(entry?.end)) return { start: entry.start, end: entry.end };
202
+ if (Array.isArray(entry?.range) && Number.isFinite(entry.range[0]) && Number.isFinite(entry.range[1])) {
203
+ return { start: entry.range[0], end: entry.range[1] };
204
+ }
205
+ return undefined;
206
+ }
207
+
208
+ function parserEntryKind(entry) {
209
+ const type = entry?.type;
210
+ if (typeof type === 'string') return type;
211
+ return type?.label ?? type?.keyword ?? type?.name ?? entry?.kind ?? 'Token';
212
+ }
213
+
214
+ function parserEntrySourceTextMatches(entry, text) {
215
+ const expected = entry?.raw ?? entry?.extra?.raw ?? entry?.text ?? entry?.source;
216
+ return typeof expected === 'string' ? expected === text : true;
217
+ }
218
+
219
+ function entryIsComment(entry, text) {
220
+ const kind = String(parserEntryKind(entry));
221
+ return kind.includes('Comment') || text.startsWith('//') || text.startsWith('/*');
222
+ }
223
+
224
+ function syntaxTokenKind(parserKind, text, sourcePath) {
225
+ const kind = String(parserKind);
226
+ if (kind === 'Identifier' || kind === 'name') return 'identifier';
227
+ if (kind === 'Keyword' || kind.endsWith('Keyword')) return 'keyword';
228
+ if (kind === 'String' || kind === 'StringLiteral' || kind === 'string') return 'string';
229
+ if (kind === 'Numeric' || kind === 'NumericLiteral' || kind === 'num') return 'number';
230
+ if (kind === 'RegularExpression' || kind === 'regexp') return 'regex-like';
231
+ if (kind.includes('Template') || text.startsWith('`')) return 'template';
232
+ if (kind.includes('JSX') || /\.(?:jsx|tsx)$/i.test(String(sourcePath ?? '')) && /^(?:<|<\/|\/>|>)$/.test(text)) return 'jsx';
233
+ if (/^[()[\]{};,]$/.test(text)) return 'punctuation';
234
+ if (/^[=+\-*/%&|^!<>?:.]+$/.test(text)) return 'operator';
235
+ return 'unknown';
236
+ }
237
+
238
+ function preservedCommentKind(text) {
239
+ const value = String(text ?? '');
240
+ if (/[#@]\s*sourceMappingURL=|[#@]\s*sourceURL=/.test(value)) return 'source-map-comment';
241
+ if (value.startsWith('/**') && value[3] !== '/') return 'jsdoc-comment';
242
+ if (value.startsWith('/*')) return 'block-comment';
243
+ return 'comment';
244
+ }
245
+
246
+ function limitRecords(records, maxValue) {
247
+ const max = Number.isFinite(maxValue) ? Math.max(0, maxValue) : 20000;
248
+ return { records: records.slice(0, max), truncated: records.length > max };
249
+ }
250
+
251
+ function uniqueParserEntries(entries) {
252
+ const seen = new Set();
253
+ return entries.filter((entry) => {
254
+ const range = sourceRange(entry);
255
+ if (!range) return false;
256
+ const key = `${range.start}:${range.end}`;
257
+ if (seen.has(key)) return false;
258
+ seen.add(key);
259
+ return true;
260
+ });
261
+ }
262
+
263
+ function arrayValue(value) {
264
+ return Array.isArray(value) ? value : [];
265
+ }
266
+
267
+ function lineCount(text) {
268
+ return text.split(/\r\n|\r|\n/).length;
269
+ }
270
+
271
+ function lastLineStart(text) {
272
+ return Math.max(text.lastIndexOf('\n') + 1, text.lastIndexOf('\r') + 1, 0);
273
+ }