@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.
- package/README.md +315 -9
- package/bench/real-repo-corpus-checkout-identity.mjs +134 -0
- package/bench/real-repo-corpus-checkout-proof.mjs +263 -0
- package/bench/real-repo-corpus-command-execution.mjs +314 -0
- package/bench/real-repo-corpus-evidence.mjs +165 -0
- package/bench/real-repo-corpus-suite.mjs +273 -0
- package/bench/smoke.mjs +109 -7
- package/dist/declarations/import-adapter-core.d.ts +4 -3
- package/dist/declarations/import-adapter-options-native.d.ts +21 -0
- package/dist/declarations/js-ts-project-merge-admission-routes.d.ts +35 -0
- package/dist/declarations/js-ts-project-merge-commonjs-interop.d.ts +29 -0
- package/dist/declarations/js-ts-project-merge-confidence.d.ts +64 -0
- package/dist/declarations/js-ts-project-merge-declaration-emit-parity.d.ts +37 -0
- package/dist/declarations/js-ts-project-merge-declarations.d.ts +65 -0
- package/dist/declarations/js-ts-project-merge-diagnostics.d.ts +97 -0
- package/dist/declarations/js-ts-project-merge-global-augmentation.d.ts +30 -0
- package/dist/declarations/js-ts-project-merge-jsx-render-branch.d.ts +48 -0
- package/dist/declarations/js-ts-project-merge-proof-levels.d.ts +109 -0
- package/dist/declarations/js-ts-project-merge-quality-gates.d.ts +38 -0
- package/dist/declarations/js-ts-project-merge-semantic-equivalence-proof.d.ts +45 -0
- package/dist/declarations/js-ts-project-merge-tsconfig.d.ts +43 -0
- package/dist/declarations/js-ts-safe-merge.d.ts +47 -0
- package/dist/declarations/js-ts-safe-project-merge.d.ts +120 -38
- package/dist/declarations/native-project-compiler-assignability-oracle.d.ts +41 -0
- package/dist/declarations/native-project-compiler-callable-signatures.d.ts +31 -0
- package/dist/declarations/native-project-compiler-class-member-runtime-proof.d.ts +87 -0
- package/dist/declarations/native-project-compiler-composite-types.d.ts +23 -0
- package/dist/declarations/native-project-compiler-enum-proof.d.ts +58 -0
- package/dist/declarations/native-project-compiler-index-signature.d.ts +7 -0
- package/dist/declarations/native-project-compiler-public-api-source-binding.d.ts +8 -0
- package/dist/declarations/native-project-compiler-scope.d.ts +37 -0
- package/dist/declarations/native-project-compiler-type-reference-targets.d.ts +38 -0
- package/dist/declarations/native-project-css-modules.d.ts +90 -0
- package/dist/declarations/native-project-decorator-metadata.d.ts +126 -0
- package/dist/declarations/native-project-jsx-graph.d.ts +313 -0
- package/dist/declarations/native-project-module-declarations.d.ts +52 -0
- package/dist/declarations/native-project-module-resolution.d.ts +76 -1
- package/dist/declarations/native-project-runtime-effect-target.d.ts +29 -0
- package/dist/declarations/native-project-runtime-executable-effect-evidence.d.ts +107 -0
- package/dist/declarations/native-project-runtime-mutation-target.d.ts +33 -0
- package/dist/declarations/native-project-runtime-promise-chain.d.ts +30 -0
- package/dist/declarations/native-project-runtime-promise-combinator.d.ts +22 -0
- package/dist/declarations/native-project-runtime-reachability.d.ts +30 -0
- package/dist/declarations/native-project-runtime-resource-management.d.ts +27 -0
- package/dist/declarations/native-project-runtime-yield-delegation.d.ts +10 -0
- package/dist/declarations/native-project-scope-template-reference.d.ts +13 -0
- package/dist/declarations/native-project-source-evidence.d.ts +8 -0
- package/dist/declarations/native-project.d.ts +40 -39
- package/dist/declarations/semantic-edit-script.d.ts +10 -8
- package/dist/declarations/semantic-graph-layers.d.ts +79 -0
- package/dist/declarations/semantic-patch-bundle-composition.d.ts +62 -0
- package/dist/declarations/semantic-sidecar.d.ts +3 -2
- package/dist/declarations/semantic-structural-diff.d.ts +94 -0
- package/dist/declarations/source-preservation.d.ts +32 -1
- package/dist/declarations/target-adapters.d.ts +22 -2
- package/dist/index.d.ts +32 -0
- package/dist/index.js +6 -0
- package/dist/internal/index-impl/compileNativeSource.js +53 -5
- package/dist/internal/index-impl/createLightweightNativeImport.js +58 -4
- package/dist/internal/index-impl/createNativeImportFromSyntaxAst.js +17 -1
- package/dist/internal/index-impl/createNativeImportFromTypeScriptAst.js +28 -4
- package/dist/internal/index-impl/createNativeProjectImportResult.js +31 -27
- package/dist/internal/index-impl/createNativeProjectModuleResolutionFromPackageManifests.js +145 -0
- package/dist/internal/index-impl/createNativeSourcePreservation.js +34 -7
- package/dist/internal/index-impl/createSemanticImportSidecar.js +27 -1
- package/dist/internal/index-impl/createTypeScriptCompilerNativeImporterAdapter.js +16 -5
- package/dist/internal/index-impl/dynamicImportExpressionMetadata.js +80 -0
- package/dist/internal/index-impl/importMetaUrlDependencyMetadata.js +176 -0
- package/dist/internal/index-impl/importNativeSource.js +2 -3
- package/dist/internal/index-impl/moduleImportAttributeMetadata.js +232 -0
- package/dist/internal/index-impl/projectSemanticEditScriptToSource.js +8 -1
- package/dist/internal/index-impl/projectSymbolGraphClassStaticBlocks.js +148 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerAdvancedTypeMetadata.js +45 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerCallableSignatureEquivalence.js +107 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerClassPrivateAccessorRuntimeProof.js +280 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerClassShapeEquivalence.js +103 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerConditionalTypeEquivalence.js +242 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerDecoratorRuntimeProof.js +197 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerEnumEquivalence.js +188 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerFacts.js +244 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerIndexSignatureEquivalence.js +58 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerMetadata.js +168 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerTypeEquivalence.js +199 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerTypeEquivalenceProof.js +204 -0
- package/dist/internal/index-impl/projectSymbolGraphCompilerTypeReferenceTargetEquivalence.js +99 -0
- package/dist/internal/index-impl/projectSymbolGraphCssModuleRecords.js +264 -0
- package/dist/internal/index-impl/projectSymbolGraphCssModuleScanners.js +242 -0
- package/dist/internal/index-impl/projectSymbolGraphCssModuleUtils.js +152 -0
- package/dist/internal/index-impl/projectSymbolGraphCssModules.js +82 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxComponentImports.js +170 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxComponentProviderLookup.js +167 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxComponentWrappers.js +150 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxContextTargets.js +71 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxContextValues.js +212 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxEventHandlers.js +172 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxHookEffects.js +124 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxHooks.js +281 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxMemberComponents.js +139 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxPropFlows.js +320 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxPropValues.js +145 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxProviderFlows.js +133 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxRecords.js +315 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxRenderCollections.js +155 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxRenderReturns.js +291 -0
- package/dist/internal/index-impl/projectSymbolGraphJsxRenderRisk.js +279 -0
- package/dist/internal/index-impl/projectSymbolGraphModuleDeclarationShapes.js +138 -0
- package/dist/internal/index-impl/projectSymbolGraphModuleResolution.js +89 -87
- package/dist/internal/index-impl/projectSymbolGraphPackageConditions.js +314 -0
- package/dist/internal/index-impl/projectSymbolGraphReExportImportTargets.js +43 -0
- package/dist/internal/index-impl/projectSymbolGraphReExports.js +55 -1
- package/dist/internal/index-impl/projectSymbolGraphRuntimeRegions.js +108 -0
- package/dist/internal/index-impl/projectSymbolGraphScopeUseDefAliases.js +307 -0
- package/dist/internal/index-impl/projectSymbolGraphScopeUseDefLexical.js +320 -0
- package/dist/internal/index-impl/projectSymbolGraphScopeUseDefOwners.js +50 -0
- package/dist/internal/index-impl/projectSymbolGraphScopeUseDefRecordBuilders.js +112 -0
- package/dist/internal/index-impl/projectSymbolGraphScopeUseDefRecords.js +238 -0
- package/dist/internal/index-impl/projectSymbolGraphScopeUseDefStructural.js +104 -0
- package/dist/internal/index-impl/projectSymbolGraphScopeUseDefStructuralNormalize.js +242 -0
- package/dist/internal/index-impl/projectSymbolGraphScopeUseDefUseHashes.js +107 -0
- package/dist/internal/index-impl/projectSymbolGraphSourceMapGeneratedBoundary.js +111 -0
- package/dist/internal/index-impl/projectSymbolGraphSourceRecords.js +268 -0
- package/dist/internal/index-impl/projectSymbolGraphSourceRecordsOwnership.js +309 -0
- package/dist/internal/index-impl/replaySemanticEditProjection.js +53 -39
- package/dist/internal/index-impl/runtimeOrderEvidenceBinding.js +151 -0
- package/dist/internal/index-impl/runtimeOrderProofSurfaces.js +253 -0
- package/dist/internal/index-impl/semanticEditCallsiteArgumentMerge.js +319 -0
- package/dist/internal/index-impl/semanticEditExplicitSourceReplacement.js +7 -2
- package/dist/internal/index-impl/semanticEditProjectionRecord.js +8 -0
- package/dist/internal/index-impl/semanticEditReplayDiagnostics.js +7 -2
- package/dist/internal/index-impl/semanticEditReplayOutputBinding.js +61 -0
- package/dist/internal/index-impl/semanticEditReplayRerunRoute.js +27 -0
- package/dist/internal/index-impl/semanticEditReplaySourceReplacement.js +6 -1
- package/dist/internal/index-impl/semanticEditRuntimeOrderReasons.js +320 -0
- package/dist/internal/index-impl/semanticEditScriptClassification.js +90 -5
- package/dist/internal/index-impl/semanticEditScripts.js +42 -5
- package/dist/internal/index-impl/semanticEditTypeSyntaxReasons.js +134 -0
- package/dist/internal/index-impl/semanticIndexFromNativeDeclarations.js +11 -5
- package/dist/internal/index-impl/semanticPatchBundleComposition.js +166 -0
- package/dist/internal/index-impl/semanticStructuralDiffRecords.js +150 -0
- package/dist/internal/index-impl/sourceMapGeneratedBoundaryGate.js +185 -0
- package/dist/internal/index-impl/staticMemberLiteral.js +31 -0
- package/dist/internal/index-impl/staticOptionalMemberReference.js +22 -0
- package/dist/internal/index-impl/syntaxAstSourcePreservation.js +273 -0
- package/dist/internal/index-impl/syntaxCommonJsModuleDeclarationEntries.js +297 -0
- package/dist/internal/index-impl/syntaxModuleDeclarationEntries.js +56 -132
- package/dist/internal/index-impl/syntaxModuleEntryRecords.js +160 -0
- package/dist/internal/index-impl/typeScriptCompilerAdvancedTypeShapes.js +160 -0
- package/dist/internal/index-impl/typeScriptCompilerAssignabilityOracle.js +97 -0
- package/dist/internal/index-impl/typeScriptCompilerClassApi.js +238 -0
- package/dist/internal/index-impl/typeScriptCompilerDecoratorMetadata.js +290 -0
- package/dist/internal/index-impl/typeScriptCompilerEnumShape.js +279 -0
- package/dist/internal/index-impl/typeScriptCompilerFacts.js +294 -0
- package/dist/internal/index-impl/typeScriptCompilerInferenceSyntax.js +170 -0
- package/dist/internal/index-impl/typeScriptCompilerReferenceGraph.js +186 -0
- package/dist/internal/index-impl/typeScriptCompilerSymbolIdentity.js +294 -0
- package/dist/internal/index-impl/typeScriptCompilerTypeReferenceTargets.js +142 -0
- package/dist/internal/index-impl/typeScriptDeclaration.js +10 -38
- package/dist/internal/index-impl/typeScriptModuleDeclarationEntries.js +52 -15
- package/dist/internal/index-impl/typeScriptSourceFilePreservation.js +296 -0
- package/dist/js-ts-safe-member-class-invariants.js +247 -0
- package/dist/js-ts-safe-member-merge-result.js +23 -3
- package/dist/js-ts-safe-member-merge.js +28 -4
- package/dist/js-ts-safe-merge-binding-patterns.js +170 -0
- package/dist/js-ts-safe-merge-context.js +1 -0
- package/dist/js-ts-safe-merge-jsx-attribute-fallback.js +314 -0
- package/dist/js-ts-safe-merge-jsx-attribute-parser.js +277 -0
- package/dist/js-ts-safe-merge-jsx-child-expression-fallback.js +161 -0
- package/dist/js-ts-safe-merge-jsx-child-expression-merge.js +319 -0
- package/dist/js-ts-safe-merge-jsx-child-expression-parser.js +300 -0
- package/dist/js-ts-safe-merge-parse-declarations.js +46 -2
- package/dist/js-ts-safe-merge-parse-statements.js +8 -0
- package/dist/js-ts-safe-merge-plan.js +3 -1
- package/dist/js-ts-safe-merge-semantic-edit-fallback.js +49 -0
- package/dist/js-ts-safe-merge-source-shape-fallbacks.js +5 -1
- package/dist/js-ts-safe-merge-top-level-rename-fallback.js +31 -5
- package/dist/js-ts-safe-merge-top-level-rename-result.js +7 -2
- package/dist/js-ts-safe-merge-variable-declarator-fallback.js +124 -6
- package/dist/js-ts-safe-merge-variable-declarator-parser.js +34 -4
- package/dist/js-ts-safe-merge.js +136 -0
- package/dist/js-ts-safe-project-merge-admission-routes.js +216 -0
- package/dist/js-ts-safe-project-merge-admission.js +161 -0
- package/dist/js-ts-safe-project-merge-ambient.js +110 -0
- package/dist/js-ts-safe-project-merge-core.js +85 -0
- package/dist/js-ts-safe-project-merge-css-module-conflicts.js +60 -0
- package/dist/js-ts-safe-project-merge-declaration-emit-parity.js +186 -0
- package/dist/js-ts-safe-project-merge-declarations.js +227 -0
- package/dist/js-ts-safe-project-merge-diagnostics-metadata.js +42 -0
- package/dist/js-ts-safe-project-merge-diagnostics-ts.js +73 -0
- package/dist/js-ts-safe-project-merge-diagnostics.js +283 -0
- package/dist/js-ts-safe-project-merge-evidence-routing.js +38 -0
- package/dist/js-ts-safe-project-merge-files.js +70 -0
- package/dist/js-ts-safe-project-merge-global-augmentation-compatibility.js +99 -0
- package/dist/js-ts-safe-project-merge-graph-conflicts.js +90 -2
- package/dist/js-ts-safe-project-merge-graph-delta-commonjs-interop.js +108 -0
- package/dist/js-ts-safe-project-merge-graph-delta-compiler-conflicts.js +179 -0
- package/dist/js-ts-safe-project-merge-graph-delta-compiler-details.js +189 -0
- package/dist/js-ts-safe-project-merge-graph-delta-conflicts.js +51 -184
- package/dist/js-ts-safe-project-merge-graph-delta-identity-conflicts.js +202 -0
- package/dist/js-ts-safe-project-merge-graph-delta-inference-syntax.js +80 -0
- package/dist/js-ts-safe-project-merge-graph-delta-module-declarations.js +155 -0
- package/dist/js-ts-safe-project-merge-graph-limits.js +16 -1
- package/dist/js-ts-safe-project-merge-graph.js +37 -5
- package/dist/js-ts-safe-project-merge-import-removal.js +292 -0
- package/dist/js-ts-safe-project-merge-jsx-graph-conflict-details.js +235 -0
- package/dist/js-ts-safe-project-merge-jsx-graph-conflicts.js +173 -0
- package/dist/js-ts-safe-project-merge-jsx-prop-contracts.js +86 -0
- package/dist/js-ts-safe-project-merge-jsx-render-branch-proof.js +189 -0
- package/dist/js-ts-safe-project-merge-missing-evidence.js +310 -0
- package/dist/js-ts-safe-project-merge-move-rename.js +209 -0
- package/dist/js-ts-safe-project-merge-proof-conflicts.js +44 -0
- package/dist/js-ts-safe-project-merge-proof-levels.js +320 -0
- package/dist/js-ts-safe-project-merge-quality-gates.js +140 -0
- package/dist/js-ts-safe-project-merge-routing-calibration.js +125 -0
- package/dist/js-ts-safe-project-merge-runtime-region-conflicts.js +156 -0
- package/dist/js-ts-safe-project-merge-scope-use-def-conflicts.js +292 -0
- package/dist/js-ts-safe-project-merge-semantic-equivalence-proof.js +175 -0
- package/dist/js-ts-safe-project-merge-semantic-replay-proof.js +311 -0
- package/dist/js-ts-safe-project-merge-semantic-replay-routes.js +179 -0
- package/dist/js-ts-safe-project-merge-source-span-conflicts.js +310 -0
- package/dist/js-ts-safe-project-merge-source-span-roundtrip-proof.js +172 -0
- package/dist/js-ts-safe-project-merge-split-merge-admission.js +96 -0
- package/dist/js-ts-safe-project-merge-split-merge-records.js +320 -0
- package/dist/js-ts-safe-project-merge-split-merge-shapes.js +234 -0
- package/dist/js-ts-safe-project-merge-split-merge.js +218 -0
- package/dist/js-ts-safe-project-merge-summary.js +320 -0
- package/dist/js-ts-safe-project-merge-symbol-move-admission.js +63 -0
- package/dist/js-ts-safe-project-merge-symbol-move-default-admission.js +143 -0
- package/dist/js-ts-safe-project-merge-symbol-move-risks.js +213 -0
- package/dist/js-ts-safe-project-merge-symbol-move.js +316 -0
- package/dist/js-ts-safe-project-merge-symbol-rename-admission.js +59 -0
- package/dist/js-ts-safe-project-merge-symbol-rename-default-admission.js +111 -0
- package/dist/js-ts-safe-project-merge-symbol-rename.js +319 -0
- package/dist/js-ts-safe-project-merge-ts-options.js +205 -0
- package/dist/js-ts-safe-project-merge-ts-program.js +268 -0
- package/dist/js-ts-safe-project-merge-typed-property-rename-rebase-utils.js +69 -0
- package/dist/js-ts-safe-project-merge-typed-property-rename-rebase.js +317 -0
- package/dist/js-ts-safe-project-merge-unsupported-surfaces.js +319 -0
- package/dist/js-ts-safe-project-merge.js +171 -172
- package/dist/js-ts-semantic-scope-use-def-bindings.js +287 -0
- package/dist/js-ts-semantic-scope-use-def-scan.js +241 -0
- package/dist/js-ts-semantic-scope-use-def-utils.js +132 -0
- package/dist/js-ts-semantic-scope-use-def.js +217 -0
- package/dist/lightweight-dependency-effects.js +28 -4
- package/dist/lightweight-dependency-relations.js +13 -7
- package/dist/lightweight-dependency-top-level.js +63 -0
- package/dist/native-import-language-profiles.js +27 -1
- package/dist/native-js-ts-importers.js +9 -5
- package/dist/native-parser-ast-format-profiles.js +12 -0
- package/dist/native-parser-html-css-format-profiles.js +85 -0
- package/dist/native-region-scanner-core.js +5 -3
- package/dist/native-region-scanner-js-commonjs.js +155 -0
- package/dist/native-region-scanner-js-imports.js +51 -13
- package/dist/native-region-scanner-js-reexports.js +79 -0
- package/dist/native-region-scanner-js-ts-helpers.js +23 -0
- package/dist/native-source-ledger-helpers.js +1 -1
- package/dist/native-source-ledger.js +24 -10
- package/dist/native-source-maps-ecma426.js +316 -0
- package/dist/native-source-maps.js +36 -6
- package/dist/native-source-preservation-ownership.js +292 -0
- package/dist/native-source-preservation-scanner.js +63 -25
- package/dist/native-source-preservation-types.d.ts +3 -0
- package/dist/semantic-import-effect-occurrences.js +242 -0
- package/dist/semantic-import-effect-regions.js +95 -58
- package/dist/semantic-import-graph-layers.js +224 -0
- package/dist/semantic-import-runtime-conditional-evidence.js +135 -0
- package/dist/semantic-import-runtime-effect-target-evidence.js +145 -0
- package/dist/semantic-import-runtime-exit-evidence.js +32 -0
- package/dist/semantic-import-runtime-import-meta-evidence.js +33 -0
- package/dist/semantic-import-runtime-mutation-evidence.js +155 -0
- package/dist/semantic-import-runtime-order-evidence.js +318 -0
- package/dist/semantic-import-runtime-promise-chain-evidence.js +103 -0
- package/dist/semantic-import-runtime-promise-combinator-evidence.js +166 -0
- package/dist/semantic-import-runtime-reachability-evidence.js +269 -0
- package/dist/semantic-import-runtime-resource-management-evidence.js +293 -0
- package/dist/semantic-import-runtime-switch-evidence.js +304 -0
- package/dist/semantic-import-runtime-throw-evidence.js +44 -0
- package/dist/semantic-import-runtime-try-finally-evidence.js +172 -0
- package/dist/semantic-import-sidecar-entry.js +4 -0
- package/dist/semantic-import-source-preservation.js +6 -2
- package/package.json +1 -1
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
import { hashSemanticValue } from '@shapeshift-labs/frontier-lang-kernel';
|
|
2
|
+
import { idFragment } from '../../native-import-utils.js';
|
|
3
|
+
|
|
4
|
+
const TypeScriptRefactorEvidenceKey = 'typescript-language-service-refactor-evidence';
|
|
5
|
+
const TypeScriptRefactorEvidenceMissingCode = 'project-typescript-refactor-evidence-missing';
|
|
6
|
+
|
|
7
|
+
function withTypeScriptRefactorEvidence(input = {}, classifications = [], files = []) {
|
|
8
|
+
if (!requiresTypeScriptRefactorEvidence(input)) return classifications;
|
|
9
|
+
return classifications.map((classification) => {
|
|
10
|
+
const evidence = typeScriptRefactorEvidenceForClassification(input, classification, files);
|
|
11
|
+
if (!evidence) return classification;
|
|
12
|
+
const requiredEvidence = uniqueStrings([
|
|
13
|
+
...(classification.details?.requiredEvidence ?? []),
|
|
14
|
+
TypeScriptRefactorEvidenceKey
|
|
15
|
+
]);
|
|
16
|
+
const details = compactRecord({
|
|
17
|
+
...(classification.details ?? {}),
|
|
18
|
+
requiredEvidence,
|
|
19
|
+
typeScriptRefactorEvidence: evidence
|
|
20
|
+
});
|
|
21
|
+
if (evidence.status !== 'failed') return { ...classification, details };
|
|
22
|
+
return {
|
|
23
|
+
...classification,
|
|
24
|
+
code: TypeScriptRefactorEvidenceMissingCode,
|
|
25
|
+
operation: `blocked-${classification.branch}-typescript-refactor-evidence`,
|
|
26
|
+
details: compactRecord({
|
|
27
|
+
...details,
|
|
28
|
+
reasonCode: TypeScriptRefactorEvidenceMissingCode,
|
|
29
|
+
originalReasonCode: classification.code,
|
|
30
|
+
originalConflictKey: classification.details?.conflictKey,
|
|
31
|
+
conflictKey: `project-typescript-refactor-evidence#${classification.details?.conflictKey ?? classification.code}`
|
|
32
|
+
})
|
|
33
|
+
};
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function hasFailedTypeScriptRefactorEvidence(classifications = []) {
|
|
38
|
+
return classifications.some((classification) => classification.details?.typeScriptRefactorEvidence?.status === 'failed');
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
function typeScriptRefactorEvidenceRecordsFromClassifications(classifications = []) {
|
|
42
|
+
const records = classifications
|
|
43
|
+
.map((classification) => classification.details?.typeScriptRefactorEvidence)
|
|
44
|
+
.filter((record) => record?.id);
|
|
45
|
+
const seen = new Set();
|
|
46
|
+
return records.filter((record) => {
|
|
47
|
+
if (seen.has(record.id)) return false;
|
|
48
|
+
seen.add(record.id);
|
|
49
|
+
return true;
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function typeScriptRefactorEvidenceForClassification(input, classification, files) {
|
|
54
|
+
const requirements = typeScriptRefactorEvidenceRequirements(classification);
|
|
55
|
+
if (!requirements.length) return undefined;
|
|
56
|
+
const observations = requirements.map((requirement) => observeTypeScriptRefactorEvidenceRequirement(input, files, requirement));
|
|
57
|
+
const missing = observations.filter((observation) => observation.status !== 'passed');
|
|
58
|
+
const id = `evidence_${idFragment(hashSemanticValue([
|
|
59
|
+
classification.details?.conflictKey ?? classification.code,
|
|
60
|
+
TypeScriptRefactorEvidenceKey
|
|
61
|
+
]))}_typescript_refactor`;
|
|
62
|
+
return {
|
|
63
|
+
id,
|
|
64
|
+
kind: 'typescript-language-service-refactor-evidence-oracle',
|
|
65
|
+
status: missing.length ? 'failed' : 'passed',
|
|
66
|
+
scope: 'project-refactor',
|
|
67
|
+
branch: classification.branch,
|
|
68
|
+
sourcePaths: classification.sourcePaths ?? [],
|
|
69
|
+
summary: missing.length
|
|
70
|
+
? `Missing TypeScript refactor evidence for ${missing.length} project rename/move requirement(s).`
|
|
71
|
+
: `TypeScript refactor evidence covered ${observations.length} project rename/move requirement(s).`,
|
|
72
|
+
metadata: compactRecord({
|
|
73
|
+
code: missing.length ? TypeScriptRefactorEvidenceMissingCode : undefined,
|
|
74
|
+
refactorKind: classification.kind,
|
|
75
|
+
branch: classification.branch,
|
|
76
|
+
requiredEvidence: TypeScriptRefactorEvidenceKey,
|
|
77
|
+
requirements: observations,
|
|
78
|
+
missing,
|
|
79
|
+
missingRequirements: missing.length,
|
|
80
|
+
autoMergeClaim: false,
|
|
81
|
+
semanticEquivalenceClaim: false
|
|
82
|
+
})
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
function typeScriptRefactorEvidenceRequirements(classification) {
|
|
87
|
+
const branch = classification?.branch;
|
|
88
|
+
const details = classification?.details ?? {};
|
|
89
|
+
if (!branch) return [];
|
|
90
|
+
if (classification.kind === 'cross-file-symbol-rename') {
|
|
91
|
+
return uniqueRequirements([
|
|
92
|
+
requirement('base', details.exportSourcePath, 'declaration', 'base-export-declaration', details.fromName),
|
|
93
|
+
requirement('base', details.importSourcePath, 'reference', 'base-import-reference', details.fromName),
|
|
94
|
+
requirement(branch, details.exportSourcePath, 'declaration', 'branch-export-declaration', details.toName),
|
|
95
|
+
requirement(branch, details.importSourcePath, 'reference', 'branch-import-reference', details.toName)
|
|
96
|
+
]);
|
|
97
|
+
}
|
|
98
|
+
if (classification.kind === 'imported-symbol-move') {
|
|
99
|
+
return uniqueRequirements([
|
|
100
|
+
requirement('base', details.fromSourcePath, 'declaration', 'base-export-declaration', details.symbolName),
|
|
101
|
+
requirement('base', details.importerSourcePath, 'reference', 'base-import-reference', details.symbolName),
|
|
102
|
+
requirement(branch, details.toSourcePath, 'declaration', 'branch-export-declaration', details.symbolName),
|
|
103
|
+
requirement(branch, details.importerSourcePath, 'reference', 'branch-import-reference', details.symbolName)
|
|
104
|
+
]);
|
|
105
|
+
}
|
|
106
|
+
if (classification.kind === 'exported-symbol-move') {
|
|
107
|
+
return uniqueRequirements([
|
|
108
|
+
requirement('base', details.fromSourcePath, 'declaration', 'base-export-declaration', details.symbolName ?? details.exportedName),
|
|
109
|
+
requirement(branch, details.toSourcePath, 'declaration', 'branch-export-declaration', details.symbolName ?? details.exportedName)
|
|
110
|
+
]);
|
|
111
|
+
}
|
|
112
|
+
return [];
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
function observeTypeScriptRefactorEvidenceRequirement(input, files, requirement) {
|
|
116
|
+
const expectedSourceHash = expectedProjectSourceHash(files, requirement.stage, requirement.sourcePath);
|
|
117
|
+
const importResult = matchingProjectImport(input, requirement.stage, requirement.sourcePath, expectedSourceHash);
|
|
118
|
+
const signals = typeScriptCompilerEvidenceSignals(importResult);
|
|
119
|
+
const passed = requirement.requirement === 'reference'
|
|
120
|
+
? signals.compilerReferences > 0
|
|
121
|
+
: signals.compilerSymbols > 0 || signals.compilerTypes > 0;
|
|
122
|
+
return compactRecord({
|
|
123
|
+
...requirement,
|
|
124
|
+
status: passed ? 'passed' : 'missing',
|
|
125
|
+
code: passed ? undefined : missingRequirementCode(requirement, importResult, expectedSourceHash, signals),
|
|
126
|
+
expectedSourceHash,
|
|
127
|
+
sourceImportMatched: Boolean(importResult),
|
|
128
|
+
importSourceHash: sourceHashForImport(importResult),
|
|
129
|
+
parser: signals.parser,
|
|
130
|
+
astFormat: signals.astFormat,
|
|
131
|
+
compilerSymbols: signals.compilerSymbols,
|
|
132
|
+
compilerTypes: signals.compilerTypes,
|
|
133
|
+
compilerReferences: signals.compilerReferences,
|
|
134
|
+
referenceRelations: signals.referenceRelations,
|
|
135
|
+
referenceGraphReferences: signals.referenceGraphReferences,
|
|
136
|
+
evidenceIds: signals.evidenceIds
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
function matchingProjectImport(input, stage, sourcePath, expectedSourceHash) {
|
|
141
|
+
if (!sourcePath) return undefined;
|
|
142
|
+
return normalizeProjectImports(projectImportsForStage(input, stage)).find((importResult) => {
|
|
143
|
+
if (sourcePathForImport(importResult) !== sourcePath) return false;
|
|
144
|
+
if (!expectedSourceHash) return true;
|
|
145
|
+
return sourceHashForImport(importResult) === expectedSourceHash;
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
function typeScriptCompilerEvidenceSignals(importResult) {
|
|
150
|
+
const semanticIndex = importResult?.semanticIndex;
|
|
151
|
+
const facts = semanticIndex?.facts ?? [];
|
|
152
|
+
const relations = semanticIndex?.relations ?? [];
|
|
153
|
+
const evidence = uniqueEvidenceRecords([
|
|
154
|
+
...(importResult?.evidence ?? []),
|
|
155
|
+
...(semanticIndex?.evidence ?? [])
|
|
156
|
+
]);
|
|
157
|
+
const compilerReferences = facts.filter((fact) => fact.predicate === 'compilerSymbolReference').length;
|
|
158
|
+
const referenceRelations = relations.filter((relation) => relation.predicate === 'references' && relation.metadata?.compilerReference === true).length;
|
|
159
|
+
const referenceGraphReferences = Number(
|
|
160
|
+
semanticIndex?.metadata?.compilerReferenceGraph?.references
|
|
161
|
+
?? importResult?.metadata?.compilerReferenceGraph?.references
|
|
162
|
+
?? 0
|
|
163
|
+
);
|
|
164
|
+
return {
|
|
165
|
+
parser: firstString(importResult?.adapter?.parser, importResult?.nativeAst?.parser, semanticIndex?.metadata?.parser),
|
|
166
|
+
astFormat: firstString(importResult?.metadata?.astFormat, semanticIndex?.metadata?.astFormat),
|
|
167
|
+
compilerSymbols: facts.filter((fact) => fact.predicate === 'compilerSymbol').length,
|
|
168
|
+
compilerTypes: facts.filter((fact) => fact.predicate === 'compilerType').length,
|
|
169
|
+
compilerReferences: compilerReferences + referenceRelations + referenceGraphReferences,
|
|
170
|
+
referenceRelations,
|
|
171
|
+
referenceGraphReferences,
|
|
172
|
+
evidenceIds: uniqueStrings([
|
|
173
|
+
...evidence
|
|
174
|
+
.filter((record) => record.kind === 'typescript-compiler-reference-graph' || record.metadata?.graphRecords?.compilerSymbols || record.metadata?.references)
|
|
175
|
+
.map((record) => record.id),
|
|
176
|
+
...facts.flatMap((fact) => fact.evidenceIds ?? [])
|
|
177
|
+
])
|
|
178
|
+
};
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
function expectedProjectSourceHash(files, stage, sourcePath) {
|
|
182
|
+
const sourceText = stageSourceText(files.find((file) => file.sourcePath === sourcePath), stage);
|
|
183
|
+
return typeof sourceText === 'string' ? hashSemanticValue(sourceText) : undefined;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
function stageSourceText(file, stage) {
|
|
187
|
+
if (!file) return undefined;
|
|
188
|
+
if (stage === 'base') return file.baseSourceText;
|
|
189
|
+
if (stage === 'worker') return file.workerDeleted ? undefined : file.workerSourceText ?? file.baseSourceText;
|
|
190
|
+
if (stage === 'head') return file.headDeleted ? undefined : file.headSourceText ?? file.baseSourceText;
|
|
191
|
+
return undefined;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
function projectImportsForStage(input, stage) {
|
|
195
|
+
if (stage === 'base') return input.baseProjectImports ?? input.projectGraphImports?.base;
|
|
196
|
+
if (stage === 'worker') return input.workerProjectImports ?? input.projectGraphImports?.worker;
|
|
197
|
+
if (stage === 'head') return input.headProjectImports ?? input.projectGraphImports?.head;
|
|
198
|
+
if (stage === 'output') return input.outputProjectImports ?? input.projectGraphImports?.output;
|
|
199
|
+
return input.projectGraphImports?.[stage];
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
function sourcePathForImport(importResult) {
|
|
203
|
+
return firstString(
|
|
204
|
+
importResult?.sourcePath,
|
|
205
|
+
importResult?.nativeSource?.sourcePath,
|
|
206
|
+
importResult?.nativeAst?.sourcePath,
|
|
207
|
+
importResult?.semanticIndex?.documents?.[0]?.path
|
|
208
|
+
);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
function sourceHashForImport(importResult) {
|
|
212
|
+
return firstString(
|
|
213
|
+
importResult?.sourceHash,
|
|
214
|
+
importResult?.nativeSource?.sourceHash,
|
|
215
|
+
importResult?.nativeAst?.sourceHash,
|
|
216
|
+
importResult?.semanticIndex?.documents?.[0]?.sourceHash
|
|
217
|
+
);
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
function missingRequirementCode(requirement, importResult, expectedSourceHash, signals) {
|
|
221
|
+
if (!importResult) return 'typescript-refactor-project-import-missing';
|
|
222
|
+
if (expectedSourceHash && sourceHashForImport(importResult) !== expectedSourceHash) return 'typescript-refactor-project-import-stale';
|
|
223
|
+
if (requirement.requirement === 'reference' && signals.compilerReferences === 0) return 'typescript-refactor-reference-evidence-missing';
|
|
224
|
+
return 'typescript-refactor-symbol-evidence-missing';
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
function requirement(stage, sourcePath, requirementKind, role, symbolName) {
|
|
228
|
+
return compactRecord({
|
|
229
|
+
stage,
|
|
230
|
+
sourcePath,
|
|
231
|
+
requirement: requirementKind,
|
|
232
|
+
role,
|
|
233
|
+
symbolName
|
|
234
|
+
});
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
function requiresTypeScriptRefactorEvidence(input = {}) {
|
|
238
|
+
return input.requireTypeScriptRefactorEvidence === true
|
|
239
|
+
|| input.requireTypeScriptLanguageServiceRefactorEvidence === true
|
|
240
|
+
|| input.requireCompilerRefactorEvidence === true;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
function normalizeProjectImports(value) {
|
|
244
|
+
if (!value) return [];
|
|
245
|
+
if (Array.isArray(value)) return value.filter(Boolean);
|
|
246
|
+
if (value instanceof Map) return [...value.values()].filter(Boolean);
|
|
247
|
+
if (typeof value === 'object') return Object.values(value).filter(Boolean);
|
|
248
|
+
return [];
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
function uniqueRequirements(requirements) {
|
|
252
|
+
const seen = new Set();
|
|
253
|
+
return requirements.filter((item) => {
|
|
254
|
+
if (!item.sourcePath) return false;
|
|
255
|
+
const key = `${item.stage}\0${item.sourcePath}\0${item.requirement}\0${item.role}`;
|
|
256
|
+
if (seen.has(key)) return false;
|
|
257
|
+
seen.add(key);
|
|
258
|
+
return true;
|
|
259
|
+
});
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
function uniqueEvidenceRecords(records) {
|
|
263
|
+
const seen = new Set();
|
|
264
|
+
return records.filter((record) => {
|
|
265
|
+
const key = record?.id;
|
|
266
|
+
if (!key || seen.has(key)) return false;
|
|
267
|
+
seen.add(key);
|
|
268
|
+
return true;
|
|
269
|
+
});
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
function uniqueStrings(values) {
|
|
273
|
+
return [...new Set(values.filter((value) => typeof value === 'string' && value.length > 0))];
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
function firstString(...values) {
|
|
277
|
+
for (const value of values) {
|
|
278
|
+
if (value !== undefined && value !== null && String(value)) return String(value);
|
|
279
|
+
}
|
|
280
|
+
return undefined;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
function compactRecord(record) {
|
|
284
|
+
return Object.fromEntries(Object.entries(record).filter(([, value]) => value !== undefined));
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export {
|
|
288
|
+
TypeScriptRefactorEvidenceKey,
|
|
289
|
+
TypeScriptRefactorEvidenceMissingCode,
|
|
290
|
+
hasFailedTypeScriptRefactorEvidence,
|
|
291
|
+
requiresTypeScriptRefactorEvidence,
|
|
292
|
+
typeScriptRefactorEvidenceRecordsFromClassifications,
|
|
293
|
+
withTypeScriptRefactorEvidence
|
|
294
|
+
};
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import { hashSemanticValue } from '@shapeshift-labs/frontier-lang-kernel';
|
|
2
|
+
|
|
3
|
+
const TypeInferenceSyntaxProofKind = 'typescript-checker-public-api-type-inference-syntax-evidence';
|
|
4
|
+
|
|
5
|
+
function compilerTypeInferenceSyntaxRecord(checker, identitySymbol, location, ts) {
|
|
6
|
+
const records = compilerTypeInferenceSyntaxRecords(checker, identitySymbol, location, ts);
|
|
7
|
+
if (!records.length) return {};
|
|
8
|
+
const counts = inferenceSyntaxCounts(records);
|
|
9
|
+
const typeInferenceSyntaxHash = hashSemanticValue({
|
|
10
|
+
kind: 'frontier.lang.typescript.compilerTypeInferenceSyntaxEvidence.v1',
|
|
11
|
+
records: records.map(canonicalInferenceSyntaxRecord)
|
|
12
|
+
});
|
|
13
|
+
return {
|
|
14
|
+
typeInferenceSyntax: records,
|
|
15
|
+
typeInferenceSyntaxKinds: uniqueStrings(records.map((record) => record.kind)),
|
|
16
|
+
typeInferenceSyntaxCount: records.length,
|
|
17
|
+
satisfiesExpressionCount: counts.satisfiesExpressionCount || undefined,
|
|
18
|
+
asConstAssertionCount: counts.asConstAssertionCount || undefined,
|
|
19
|
+
constTypeParameterCount: counts.constTypeParameterCount || undefined,
|
|
20
|
+
typeInferenceSyntaxHash,
|
|
21
|
+
typeInferenceSyntaxProof: {
|
|
22
|
+
kind: TypeInferenceSyntaxProofKind,
|
|
23
|
+
status: 'passed',
|
|
24
|
+
proofLevel: 'typescript-checker-public-api-type-inference-syntax',
|
|
25
|
+
checkerInvariant: 'inference syntax node/type texts complete',
|
|
26
|
+
requiredSignals: [
|
|
27
|
+
'compiler-type-inference-syntax-node-texts',
|
|
28
|
+
'compiler-type-inference-syntax-expression-texts',
|
|
29
|
+
'compiler-type-inference-syntax-type-texts'
|
|
30
|
+
],
|
|
31
|
+
typeInferenceSyntaxHash,
|
|
32
|
+
...counts,
|
|
33
|
+
autoMergeClaim: false,
|
|
34
|
+
semanticEquivalenceClaim: false
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function compilerTypeInferenceSyntaxRecords(checker, identitySymbol, location, ts) {
|
|
40
|
+
const records = [];
|
|
41
|
+
for (const declaration of Array.isArray(identitySymbol?.declarations) ? identitySymbol.declarations : []) {
|
|
42
|
+
visitSyntaxNodes(ts, declaration, (node) => {
|
|
43
|
+
const record = inferenceSyntaxNodeRecord(checker, node, location, ts);
|
|
44
|
+
if (record) records.push(record);
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
return uniqueRecords(records, (record) => [record.kind, record.nodeText, record.typeText].join('\0'));
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function inferenceSyntaxNodeRecord(checker, node, location, ts) {
|
|
51
|
+
if (isSyntaxKind(ts, node, 'SatisfiesExpression')) return satisfiesExpressionRecord(checker, node, location, ts);
|
|
52
|
+
if (isAsConstAssertion(node, ts)) return asConstAssertionRecord(checker, node, location, ts);
|
|
53
|
+
if (isConstTypeParameter(node, ts)) return constTypeParameterRecord(checker, node, location, ts);
|
|
54
|
+
return undefined;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function satisfiesExpressionRecord(checker, node, location, ts) {
|
|
58
|
+
return compactRecord({
|
|
59
|
+
kind: 'satisfies-expression',
|
|
60
|
+
syntaxKind: syntaxKindName(ts, node.kind),
|
|
61
|
+
nodeText: nodeText(node),
|
|
62
|
+
expressionText: nodeText(node.expression),
|
|
63
|
+
expressionTypeText: typeTextAt(checker, node.expression, location),
|
|
64
|
+
typeText: typeTextFromTypeNode(checker, node.type, location)
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function asConstAssertionRecord(checker, node, location, ts) {
|
|
69
|
+
return compactRecord({
|
|
70
|
+
kind: 'as-const-assertion',
|
|
71
|
+
syntaxKind: syntaxKindName(ts, node.kind),
|
|
72
|
+
nodeText: nodeText(node),
|
|
73
|
+
expressionText: nodeText(node.expression),
|
|
74
|
+
expressionTypeText: typeTextAt(checker, node.expression, location),
|
|
75
|
+
typeText: typeTextAt(checker, node, location)
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
function constTypeParameterRecord(checker, node, location, ts) {
|
|
80
|
+
return compactRecord({
|
|
81
|
+
kind: 'const-type-parameter',
|
|
82
|
+
syntaxKind: syntaxKindName(ts, node.kind),
|
|
83
|
+
nodeText: nodeText(node),
|
|
84
|
+
name: stringValue(node.name?.escapedText ?? node.name?.text),
|
|
85
|
+
typeText: typeTextAt(checker, node.name ?? node, location),
|
|
86
|
+
constraintTypeText: typeTextFromTypeNode(checker, node.constraint, location),
|
|
87
|
+
defaultTypeText: typeTextFromTypeNode(checker, node.default, location)
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
function visitSyntaxNodes(ts, node, visit) {
|
|
92
|
+
if (!node || typeof node !== 'object') return;
|
|
93
|
+
visit(node);
|
|
94
|
+
if (typeof ts?.forEachChild === 'function') {
|
|
95
|
+
ts.forEachChild(node, (child) => visitSyntaxNodes(ts, child, visit));
|
|
96
|
+
return;
|
|
97
|
+
}
|
|
98
|
+
for (const value of Object.values(node)) {
|
|
99
|
+
if (Array.isArray(value)) value.forEach((child) => visitSyntaxNodes(ts, child, visit));
|
|
100
|
+
else if (value && typeof value === 'object' && Number.isFinite(value.kind)) visitSyntaxNodes(ts, value, visit);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
function isAsConstAssertion(node, ts) {
|
|
105
|
+
if (!isSyntaxKind(ts, node, 'AsExpression')) return false;
|
|
106
|
+
return /\bas\s+const\b/.test(nodeText(node));
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
function isConstTypeParameter(node, ts) {
|
|
110
|
+
if (!isSyntaxKind(ts, node, 'TypeParameter')) return false;
|
|
111
|
+
const constKeyword = syntaxKind(ts, 'ConstKeyword');
|
|
112
|
+
return constKeyword !== undefined && Array.isArray(node.modifiers)
|
|
113
|
+
&& node.modifiers.some((modifier) => modifier.kind === constKeyword);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
function inferenceSyntaxCounts(records) {
|
|
117
|
+
return {
|
|
118
|
+
satisfiesExpressionCount: countKind(records, 'satisfies-expression'),
|
|
119
|
+
asConstAssertionCount: countKind(records, 'as-const-assertion'),
|
|
120
|
+
constTypeParameterCount: countKind(records, 'const-type-parameter')
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
function canonicalInferenceSyntaxRecord(record) {
|
|
125
|
+
return compactRecord({
|
|
126
|
+
kind: record.kind,
|
|
127
|
+
nodeText: record.nodeText,
|
|
128
|
+
expressionText: record.expressionText,
|
|
129
|
+
expressionTypeText: record.expressionTypeText,
|
|
130
|
+
typeText: record.typeText,
|
|
131
|
+
constraintTypeText: record.constraintTypeText,
|
|
132
|
+
defaultTypeText: record.defaultTypeText,
|
|
133
|
+
name: record.name
|
|
134
|
+
});
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
function typeTextFromTypeNode(checker, node, location) {
|
|
138
|
+
const type = safeCall(checker?.getTypeFromTypeNode, checker, node) ?? safeCall(checker?.getTypeAtLocation, checker, node ?? location);
|
|
139
|
+
return type ? stringValue(safeCall(checker?.typeToString, checker, type)) : nodeText(node);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
function typeTextAt(checker, node, location) {
|
|
143
|
+
const type = safeCall(checker?.getTypeAtLocation, checker, node ?? location);
|
|
144
|
+
return type ? stringValue(safeCall(checker?.typeToString, checker, type)) : nodeText(node);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
function syntaxKind(ts, name) { return numberValue(ts?.SyntaxKind?.[name]); }
|
|
148
|
+
function isSyntaxKind(ts, node, name) { return node?.kind === syntaxKind(ts, name); }
|
|
149
|
+
function syntaxKindName(ts, kind) { return stringValue(ts?.SyntaxKind?.[kind]) ?? (Number.isFinite(kind) ? String(kind) : undefined); }
|
|
150
|
+
function nodeText(node) { return stringValue(safeCall(node?.getText, node)); }
|
|
151
|
+
function countKind(records, kind) { return records.filter((record) => record.kind === kind).length; }
|
|
152
|
+
function safeCall(fn, receiver, ...args) {
|
|
153
|
+
if (typeof fn !== 'function') return undefined;
|
|
154
|
+
try { return fn.apply(receiver, args); } catch { return undefined; }
|
|
155
|
+
}
|
|
156
|
+
function stringValue(value) { return value === undefined || value === null || value === '' ? undefined : String(value); }
|
|
157
|
+
function numberValue(value) { return Number.isFinite(value) ? value : undefined; }
|
|
158
|
+
function compactRecord(record) { return Object.fromEntries(Object.entries(record).filter(([, value]) => value !== undefined)); }
|
|
159
|
+
function uniqueStrings(values) { return [...new Set(values.filter((value) => typeof value === 'string' && value.length > 0))]; }
|
|
160
|
+
function uniqueRecords(records, keyFn) {
|
|
161
|
+
const seen = new Set();
|
|
162
|
+
return records.filter((record) => {
|
|
163
|
+
const key = keyFn(record);
|
|
164
|
+
if (seen.has(key)) return false;
|
|
165
|
+
seen.add(key);
|
|
166
|
+
return true;
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export { compilerTypeInferenceSyntaxRecord };
|
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import { hashSemanticValue } from '@shapeshift-labs/frontier-lang-kernel';
|
|
2
|
+
import { idFragment } from '../../native-import-utils.js';
|
|
3
|
+
import { spanFromTypeScriptNode } from './spanFromTypeScriptNode.js';
|
|
4
|
+
import { typeScriptCompilerSymbolRecordForNode } from './typeScriptCompilerSymbolIdentity.js';
|
|
5
|
+
import { typeScriptKindName } from './typeScriptKindName.js';
|
|
6
|
+
|
|
7
|
+
function createTypeScriptCompilerReferenceGraph(sourceFile, input, options = {}, context, semanticIndex) {
|
|
8
|
+
const checker = options.typeChecker ?? options.checker ?? options.program?.getTypeChecker?.();
|
|
9
|
+
if (!checker || !sourceFile) return emptyReferenceGraph();
|
|
10
|
+
const documentId = semanticIndex?.documents?.[0]?.id ?? `doc_${idFragment(input.sourcePath ?? input.language)}_${idFragment(input.sourceHash)}`;
|
|
11
|
+
const evidenceId = `evidence_${idFragment(input.sourcePath ?? input.language)}_${idFragment(options.astFormat ?? options.parser)}_compiler_references`;
|
|
12
|
+
const records = [];
|
|
13
|
+
visitCompilerReferenceNodes(sourceFile, undefined, options.ts, (node, parent) => {
|
|
14
|
+
if (isDeclarationName(node, parent, options.ts)) return;
|
|
15
|
+
const spanNode = compilerReferenceSpanNode(node, parent, options.ts);
|
|
16
|
+
const compiler = typeScriptCompilerSymbolRecordForNode(node, input, options);
|
|
17
|
+
if (!compiler) return;
|
|
18
|
+
const nativeAstNodeId = context?.objectIds?.get?.(spanNode) ?? context?.objectIds?.get?.(node);
|
|
19
|
+
const span = spanFromTypeScriptNode(spanNode, sourceFile);
|
|
20
|
+
const key = `${compiler.symbolId}\0${nativeAstNodeId ?? spanKey(span)}`;
|
|
21
|
+
if (records.some((record) => record.key === key)) return;
|
|
22
|
+
records.push({ key, node, nativeAstNodeId, span, compiler });
|
|
23
|
+
});
|
|
24
|
+
if (!records.length) return emptyReferenceGraph();
|
|
25
|
+
const occurrences = records.map((record, index) => referenceOccurrence(record, documentId, index));
|
|
26
|
+
const relations = records.map((record, index) => referenceRelation(record, documentId, occurrences[index], evidenceId));
|
|
27
|
+
const facts = records.map((record, index) => referenceFact(record, occurrences[index], relations[index], evidenceId));
|
|
28
|
+
const semanticSymbolIds = new Set((semanticIndex?.symbols ?? []).map((symbol) => symbol.id));
|
|
29
|
+
const mappings = records
|
|
30
|
+
.map((record, index) => referenceMapping(record, occurrences[index], evidenceId, index, semanticSymbolIds))
|
|
31
|
+
.filter(Boolean);
|
|
32
|
+
const evidence = [referenceEvidence(evidenceId, input, options, records)];
|
|
33
|
+
return {
|
|
34
|
+
occurrences,
|
|
35
|
+
relations,
|
|
36
|
+
facts,
|
|
37
|
+
mappings,
|
|
38
|
+
evidence,
|
|
39
|
+
summary: {
|
|
40
|
+
references: records.length,
|
|
41
|
+
symbols: new Set(records.map((record) => record.compiler.symbolId)).size,
|
|
42
|
+
evidenceId
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
function attachTypeScriptCompilerReferenceGraph(semanticIndex, graph) {
|
|
48
|
+
if (!graph?.summary?.references) return semanticIndex;
|
|
49
|
+
return {
|
|
50
|
+
...semanticIndex,
|
|
51
|
+
occurrences: [...(semanticIndex.occurrences ?? []), ...graph.occurrences],
|
|
52
|
+
relations: [...(semanticIndex.relations ?? []), ...graph.relations],
|
|
53
|
+
facts: [...(semanticIndex.facts ?? []), ...graph.facts],
|
|
54
|
+
evidence: [...(semanticIndex.evidence ?? []), ...graph.evidence],
|
|
55
|
+
metadata: {
|
|
56
|
+
...(semanticIndex.metadata ?? {}),
|
|
57
|
+
graphCoverage: 'module-edge-declarations+compiler-references',
|
|
58
|
+
compilerReferenceGraph: graph.summary
|
|
59
|
+
}
|
|
60
|
+
};
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function visitCompilerReferenceNodes(node, parent, ts, visit) {
|
|
64
|
+
if (!node || typeof node !== 'object') return;
|
|
65
|
+
if (isCompilerReferenceNode(node, ts)) visit(node, parent);
|
|
66
|
+
const each = (child) => visitCompilerReferenceNodes(child, node, ts, visit);
|
|
67
|
+
if (ts && typeof ts.forEachChild === 'function') ts.forEachChild(node, each);
|
|
68
|
+
else if (typeof node.forEachChild === 'function') node.forEachChild(each);
|
|
69
|
+
else if (Array.isArray(node.children)) node.children.forEach(each);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
function isCompilerReferenceNode(node, ts) {
|
|
73
|
+
const kind = typeScriptKindName(node, ts);
|
|
74
|
+
return kind === 'Identifier' || kind === 'PrivateIdentifier';
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function compilerReferenceSpanNode(node, parent, ts) {
|
|
78
|
+
return isReceiverMemberName(node, parent, ts) ? parent : node;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function isReceiverMemberName(node, parent, ts) {
|
|
82
|
+
if (parent?.name !== node) return false;
|
|
83
|
+
if (typeScriptKindName(parent, ts) !== 'PropertyAccessExpression') return false;
|
|
84
|
+
const receiverKind = typeScriptKindName(parent.expression, ts);
|
|
85
|
+
return receiverKind === 'ThisKeyword' || receiverKind === 'SuperKeyword';
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
function referenceOccurrence(record, documentId, index) {
|
|
89
|
+
return compactRecord({
|
|
90
|
+
id: `occ_${idFragment(record.nativeAstNodeId ?? record.key)}_${index + 1}_compiler_reference`,
|
|
91
|
+
documentId,
|
|
92
|
+
symbolId: record.compiler.symbolId,
|
|
93
|
+
role: 'reference',
|
|
94
|
+
span: record.span,
|
|
95
|
+
nativeAstNodeId: record.nativeAstNodeId,
|
|
96
|
+
metadata: { compilerReference: true, compilerSymbol: record.compiler.compilerSymbol }
|
|
97
|
+
});
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function referenceRelation(record, documentId, occurrence, evidenceId) {
|
|
101
|
+
return {
|
|
102
|
+
id: `rel_${idFragment(hashSemanticValue([documentId, occurrence.id, record.compiler.symbolId, 'compiler-reference']))}`,
|
|
103
|
+
sourceId: occurrence.id,
|
|
104
|
+
predicate: 'references',
|
|
105
|
+
targetId: record.compiler.symbolId,
|
|
106
|
+
evidenceIds: [evidenceId],
|
|
107
|
+
metadata: { compilerReference: true }
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
function referenceFact(record, occurrence, relation, evidenceId) {
|
|
112
|
+
return {
|
|
113
|
+
id: `fact_${idFragment(hashSemanticValue([occurrence.id, relation.id, 'compiler-symbol-reference']))}_compiler_symbol_reference`,
|
|
114
|
+
predicate: 'compilerSymbolReference',
|
|
115
|
+
subjectId: occurrence.id,
|
|
116
|
+
objectId: record.compiler.symbolId,
|
|
117
|
+
value: { ...record.compiler.compilerSymbol, identityHash: record.compiler.compilerSymbolIdentityHash },
|
|
118
|
+
evidenceIds: [evidenceId]
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
function referenceMapping(record, occurrence, evidenceId, index, semanticSymbolIds) {
|
|
123
|
+
if (!semanticSymbolIds.has(record.compiler.symbolId)) return undefined;
|
|
124
|
+
return compactRecord({
|
|
125
|
+
id: `map_${idFragment(record.nativeAstNodeId ?? occurrence.id)}_${index + 1}_compiler_reference`,
|
|
126
|
+
nativeAstNodeId: record.nativeAstNodeId,
|
|
127
|
+
semanticSymbolId: record.compiler.symbolId,
|
|
128
|
+
semanticOccurrenceId: occurrence.id,
|
|
129
|
+
sourceSpan: record.span,
|
|
130
|
+
evidenceIds: [evidenceId],
|
|
131
|
+
lossIds: [],
|
|
132
|
+
precision: record.span ? 'reference' : 'unknown'
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
function referenceEvidence(evidenceId, input, options, records) {
|
|
137
|
+
return {
|
|
138
|
+
id: evidenceId,
|
|
139
|
+
kind: 'typescript-compiler-reference-graph',
|
|
140
|
+
status: 'passed',
|
|
141
|
+
path: input.sourcePath,
|
|
142
|
+
summary: `Resolved ${records.length} TypeScript compiler reference(s).`,
|
|
143
|
+
metadata: {
|
|
144
|
+
parser: options.parser,
|
|
145
|
+
astFormat: options.astFormat,
|
|
146
|
+
language: input.language,
|
|
147
|
+
references: records.length,
|
|
148
|
+
symbols: new Set(records.map((record) => record.compiler.symbolId)).size
|
|
149
|
+
}
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
function isDeclarationName(node, parent, ts) {
|
|
154
|
+
return parent?.name === node && DeclarationNameParentKinds.has(typeScriptKindName(parent, ts));
|
|
155
|
+
}
|
|
156
|
+
function spanKey(span) { return `${span?.path ?? ''}:${span?.startLine ?? ''}:${span?.startColumn ?? ''}:${span?.endLine ?? ''}:${span?.endColumn ?? ''}`; }
|
|
157
|
+
function compactRecord(record) { return Object.fromEntries(Object.entries(record).filter(([, value]) => value !== undefined)); }
|
|
158
|
+
function emptyReferenceGraph() { return { occurrences: [], relations: [], facts: [], mappings: [], evidence: [], summary: { references: 0, symbols: 0 } }; }
|
|
159
|
+
|
|
160
|
+
const DeclarationNameParentKinds = new Set([
|
|
161
|
+
'BindingElement',
|
|
162
|
+
'ClassDeclaration',
|
|
163
|
+
'ClassExpression',
|
|
164
|
+
'EnumDeclaration',
|
|
165
|
+
'EnumMember',
|
|
166
|
+
'FunctionDeclaration',
|
|
167
|
+
'FunctionExpression',
|
|
168
|
+
'GetAccessor',
|
|
169
|
+
'ImportClause',
|
|
170
|
+
'ImportEqualsDeclaration',
|
|
171
|
+
'ImportSpecifier',
|
|
172
|
+
'InterfaceDeclaration',
|
|
173
|
+
'MethodDeclaration',
|
|
174
|
+
'MethodSignature',
|
|
175
|
+
'ModuleDeclaration',
|
|
176
|
+
'NamespaceImport',
|
|
177
|
+
'Parameter',
|
|
178
|
+
'PropertyDeclaration',
|
|
179
|
+
'PropertySignature',
|
|
180
|
+
'SetAccessor',
|
|
181
|
+
'TypeAliasDeclaration',
|
|
182
|
+
'TypeParameter',
|
|
183
|
+
'VariableDeclaration'
|
|
184
|
+
]);
|
|
185
|
+
|
|
186
|
+
export { attachTypeScriptCompilerReferenceGraph, createTypeScriptCompilerReferenceGraph };
|