@codeyam/codeyam-cli 0.1.0-staging.323686 → 0.1.0-staging.4813bf3
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/analyzer-template/.build-info.json +7 -7
- package/analyzer-template/log.txt +3 -3
- package/analyzer-template/package.json +5 -5
- package/analyzer-template/packages/ai/index.ts +7 -1
- package/analyzer-template/packages/ai/package.json +2 -2
- package/analyzer-template/packages/ai/src/lib/analyzeScope.ts +62 -18
- package/analyzer-template/packages/ai/src/lib/astScopes/astScopeAnalyzer.ts +67 -9
- package/analyzer-template/packages/ai/src/lib/astScopes/patterns/forInStatementHandler.ts +10 -17
- package/analyzer-template/packages/ai/src/lib/astScopes/processExpression.ts +409 -50
- package/analyzer-template/packages/ai/src/lib/astScopes/sharedPatterns.ts +28 -0
- package/analyzer-template/packages/ai/src/lib/astScopes/types.ts +21 -6
- package/analyzer-template/packages/ai/src/lib/dataStructure/ScopeDataStructure.ts +992 -249
- package/analyzer-template/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/JavascriptFrameworkManager.ts +5 -1
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/BatchSchemaProcessor.ts +16 -3
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/ScopeTreeManager.ts +6 -4
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/cleanKnownObjectFunctions.ts +31 -3
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/cleanNonObjectFunctions.ts +37 -15
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/coerceObjectsToPrimitivesBySchema.ts +70 -0
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/convertDotNotation.ts +126 -11
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/convertTypeAnnotationsToValues.ts +179 -0
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/deduplicateFunctionSchemas.ts +40 -30
- package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/fillInSchemaGapsAndUnknowns.ts +367 -96
- package/analyzer-template/packages/ai/src/lib/dataStructureChunking.ts +33 -15
- package/analyzer-template/packages/ai/src/lib/generateEntityDataStructure.ts +58 -3
- package/analyzer-template/packages/ai/src/lib/generateEntityScenarioData.ts +315 -6
- package/analyzer-template/packages/ai/src/lib/generateEntityScenarios.ts +9 -5
- package/analyzer-template/packages/ai/src/lib/generateExecutionFlows.ts +49 -5
- package/analyzer-template/packages/ai/src/lib/generateExecutionFlowsFromConditionalEffects.ts +1 -1
- package/analyzer-template/packages/ai/src/lib/generateExecutionFlowsFromConditionals.ts +649 -142
- package/analyzer-template/packages/ai/src/lib/generateExecutionFlowsFromJsxUsages.ts +1 -1
- package/analyzer-template/packages/ai/src/lib/isolateScopes.ts +51 -3
- package/analyzer-template/packages/ai/src/lib/mergeJsonTypeDefinitions.ts +5 -0
- package/analyzer-template/packages/ai/src/lib/mergeStatements.ts +90 -96
- package/analyzer-template/packages/ai/src/lib/promptGenerators/collapseNullableObjects.ts +118 -0
- package/analyzer-template/packages/ai/src/lib/promptGenerators/gatherAttributesMap.ts +10 -7
- package/analyzer-template/packages/ai/src/lib/promptGenerators/generateEntityScenarioDataGenerator.ts +24 -4
- package/analyzer-template/packages/ai/src/lib/resolvePathToControllable.ts +25 -13
- package/analyzer-template/packages/ai/src/lib/worker/SerializableDataStructure.ts +4 -3
- package/analyzer-template/packages/analyze/index.ts +2 -0
- package/analyzer-template/packages/analyze/src/lib/FileAnalyzer.ts +65 -59
- package/analyzer-template/packages/analyze/src/lib/ProjectAnalyzer.ts +113 -26
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getAllDeclaredEntityNodes.ts +19 -0
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getAllEntityNodes.ts +19 -0
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getAllExports.ts +11 -0
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getImportsAnalysis.ts +8 -0
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getResolvedModule.ts +49 -1
- package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getSourceFilesForAllImports.ts +2 -1
- package/analyzer-template/packages/analyze/src/lib/files/analyze/analyzeEntities/prepareDataStructures.ts +89 -9
- package/analyzer-template/packages/analyze/src/lib/files/analyze/analyzeEntities.ts +19 -4
- package/analyzer-template/packages/analyze/src/lib/files/analyze/gatherEntityMap.ts +4 -2
- package/analyzer-template/packages/analyze/src/lib/files/analyze/validateDependencyAnalyses.ts +0 -3
- package/analyzer-template/packages/analyze/src/lib/files/analyzeRemixRoute.ts +4 -5
- package/analyzer-template/packages/analyze/src/lib/files/getImportedExports.ts +14 -12
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/TransformationTracer.ts +1315 -0
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/enrichArrayTypesFromChildSignatures.ts +61 -13
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/gatherDataForMocks.ts +37 -0
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateDataStructure.ts +229 -19
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateExecutionFlows.ts +117 -9
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/mergeInDependentDataStructure.ts +459 -39
- package/analyzer-template/packages/analyze/src/lib/files/scenarios/propagateArrayItemSchemas.ts +474 -0
- package/analyzer-template/packages/analyze/src/lib/files/setImportedExports.ts +2 -1
- package/analyzer-template/packages/analyze/src/lib/index.ts +1 -0
- package/analyzer-template/packages/analyze/src/lib/utils/getFileByPath.ts +19 -0
- package/analyzer-template/packages/aws/package.json +1 -1
- package/analyzer-template/packages/database/package.json +1 -1
- package/analyzer-template/packages/database/src/lib/analysisBranchToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/analysisToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/branchToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/commitBranchToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/commitToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/fileToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/kysely/db.ts +6 -0
- package/analyzer-template/packages/database/src/lib/kysely/tables/debugReportsTable.ts +1 -1
- package/analyzer-template/packages/database/src/lib/kysely/tables/labsRequestsTable.ts +52 -0
- package/analyzer-template/packages/database/src/lib/projectToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/saveFiles.ts +1 -1
- package/analyzer-template/packages/database/src/lib/scenarioToDb.ts +1 -1
- package/analyzer-template/packages/database/src/lib/userScenarioToDb.ts +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/analysisBranchToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/analysisBranchToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/analysisToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/analysisToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/branchToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/branchToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/commitBranchToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/commitBranchToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/commitToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/commitToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/fileToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/fileToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.d.ts +2 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.js +3 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/debugReportsTable.d.ts +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.d.ts +23 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.d.ts.map +1 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.js +35 -0
- package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.js.map +1 -0
- package/analyzer-template/packages/github/dist/database/src/lib/projectToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/projectToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/saveFiles.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/saveFiles.js.map +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/scenarioToDb.js +1 -1
- package/analyzer-template/packages/github/dist/database/src/lib/scenarioToDb.js.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/ProjectMetadata.d.ts +7 -0
- package/analyzer-template/packages/github/dist/types/src/types/ProjectMetadata.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/ScenariosDataStructure.d.ts +5 -5
- package/analyzer-template/packages/github/dist/types/src/types/ScenariosDataStructure.d.ts.map +1 -1
- package/analyzer-template/packages/github/dist/types/src/types/ScopeAnalysis.d.ts +6 -1
- package/analyzer-template/packages/github/dist/types/src/types/ScopeAnalysis.d.ts.map +1 -1
- package/analyzer-template/packages/github/package.json +1 -1
- package/analyzer-template/packages/types/src/types/ProjectMetadata.ts +7 -0
- package/analyzer-template/packages/types/src/types/ScenariosDataStructure.ts +6 -5
- package/analyzer-template/packages/types/src/types/ScopeAnalysis.ts +6 -1
- package/analyzer-template/packages/utils/dist/types/src/types/ProjectMetadata.d.ts +7 -0
- package/analyzer-template/packages/utils/dist/types/src/types/ProjectMetadata.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/ScenariosDataStructure.d.ts +5 -5
- package/analyzer-template/packages/utils/dist/types/src/types/ScenariosDataStructure.d.ts.map +1 -1
- package/analyzer-template/packages/utils/dist/types/src/types/ScopeAnalysis.d.ts +6 -1
- package/analyzer-template/packages/utils/dist/types/src/types/ScopeAnalysis.d.ts.map +1 -1
- package/analyzer-template/project/constructMockCode.ts +90 -10
- package/analyzer-template/project/writeMockDataTsx.ts +181 -8
- package/analyzer-template/project/writeScenarioComponents.ts +60 -12
- package/analyzer-template/project/writeSimpleRoot.ts +21 -11
- package/background/src/lib/local/createLocalAnalyzer.js +1 -1
- package/background/src/lib/local/createLocalAnalyzer.js.map +1 -1
- package/background/src/lib/virtualized/project/constructMockCode.js +75 -4
- package/background/src/lib/virtualized/project/constructMockCode.js.map +1 -1
- package/background/src/lib/virtualized/project/writeMockDataTsx.js +162 -4
- package/background/src/lib/virtualized/project/writeMockDataTsx.js.map +1 -1
- package/background/src/lib/virtualized/project/writeScenarioComponents.js +60 -15
- package/background/src/lib/virtualized/project/writeScenarioComponents.js.map +1 -1
- package/background/src/lib/virtualized/project/writeSimpleRoot.js +21 -11
- package/background/src/lib/virtualized/project/writeSimpleRoot.js.map +1 -1
- package/codeyam-cli/scripts/apply-setup.js +180 -0
- package/codeyam-cli/scripts/apply-setup.js.map +1 -1
- package/codeyam-cli/src/cli.js +2 -0
- package/codeyam-cli/src/cli.js.map +1 -1
- package/codeyam-cli/src/codeyam-cli.js +18 -2
- package/codeyam-cli/src/codeyam-cli.js.map +1 -1
- package/codeyam-cli/src/commands/analyze.js +4 -2
- package/codeyam-cli/src/commands/analyze.js.map +1 -1
- package/codeyam-cli/src/commands/baseline.js +2 -0
- package/codeyam-cli/src/commands/baseline.js.map +1 -1
- package/codeyam-cli/src/commands/debug.js +9 -5
- package/codeyam-cli/src/commands/debug.js.map +1 -1
- package/codeyam-cli/src/commands/default.js +31 -20
- package/codeyam-cli/src/commands/default.js.map +1 -1
- package/codeyam-cli/src/commands/detect-universal-mocks.js +2 -0
- package/codeyam-cli/src/commands/detect-universal-mocks.js.map +1 -1
- package/codeyam-cli/src/commands/init.js +49 -257
- package/codeyam-cli/src/commands/init.js.map +1 -1
- package/codeyam-cli/src/commands/memory.js +17 -26
- package/codeyam-cli/src/commands/memory.js.map +1 -1
- package/codeyam-cli/src/commands/recapture.js +2 -0
- package/codeyam-cli/src/commands/recapture.js.map +1 -1
- package/codeyam-cli/src/commands/setup-sandbox.js +2 -0
- package/codeyam-cli/src/commands/setup-sandbox.js.map +1 -1
- package/codeyam-cli/src/commands/setup-simulations.js +284 -0
- package/codeyam-cli/src/commands/setup-simulations.js.map +1 -0
- package/codeyam-cli/src/commands/test-startup.js +2 -0
- package/codeyam-cli/src/commands/test-startup.js.map +1 -1
- package/codeyam-cli/src/commands/verify.js +14 -2
- package/codeyam-cli/src/commands/verify.js.map +1 -1
- package/codeyam-cli/src/utils/__tests__/setupClaudeCodeSettings.test.js +128 -86
- package/codeyam-cli/src/utils/__tests__/setupClaudeCodeSettings.test.js.map +1 -1
- package/codeyam-cli/src/utils/analyzer.js +7 -0
- package/codeyam-cli/src/utils/analyzer.js.map +1 -1
- package/codeyam-cli/src/utils/backgroundServer.js +5 -0
- package/codeyam-cli/src/utils/backgroundServer.js.map +1 -1
- package/codeyam-cli/src/utils/generateReport.js +2 -2
- package/codeyam-cli/src/utils/install-skills.js +70 -45
- package/codeyam-cli/src/utils/install-skills.js.map +1 -1
- package/codeyam-cli/src/utils/labsAutoCheck.js +19 -0
- package/codeyam-cli/src/utils/labsAutoCheck.js.map +1 -0
- package/codeyam-cli/src/utils/progress.js +7 -0
- package/codeyam-cli/src/utils/progress.js.map +1 -1
- package/codeyam-cli/src/utils/queue/job.js +4 -0
- package/codeyam-cli/src/utils/queue/job.js.map +1 -1
- package/codeyam-cli/src/utils/requireSimulations.js +10 -0
- package/codeyam-cli/src/utils/requireSimulations.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/confusionDetector.test.js +82 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/confusionDetector.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/contextBuilder.test.js +230 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/contextBuilder.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/assertRules.js +67 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/assertRules.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/captureFixture.js +105 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/captureFixture.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/loadCapturedFixture.js +34 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/loadCapturedFixture.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/runClaude.js +162 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/runClaude.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/setupTempProject.js +75 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/setupTempProject.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/ruleReflectionE2E.test.js +378 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/ruleReflectionE2E.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/promptBuilder.test.js +115 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/promptBuilder.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/transcriptParser.test.js +127 -0
- package/codeyam-cli/src/utils/ruleReflection/__tests__/transcriptParser.test.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/confusionDetector.js +50 -0
- package/codeyam-cli/src/utils/ruleReflection/confusionDetector.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/contextBuilder.js +116 -0
- package/codeyam-cli/src/utils/ruleReflection/contextBuilder.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/index.js +5 -0
- package/codeyam-cli/src/utils/ruleReflection/index.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/promptBuilder.js +44 -0
- package/codeyam-cli/src/utils/ruleReflection/promptBuilder.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/transcriptParser.js +85 -0
- package/codeyam-cli/src/utils/ruleReflection/transcriptParser.js.map +1 -0
- package/codeyam-cli/src/utils/ruleReflection/types.js +5 -0
- package/codeyam-cli/src/utils/ruleReflection/types.js.map +1 -0
- package/codeyam-cli/src/utils/rules/__tests__/ruleState.test.js +293 -0
- package/codeyam-cli/src/utils/rules/__tests__/ruleState.test.js.map +1 -0
- package/codeyam-cli/src/utils/rules/index.js +1 -0
- package/codeyam-cli/src/utils/rules/index.js.map +1 -1
- package/codeyam-cli/src/utils/rules/parser.js +2 -25
- package/codeyam-cli/src/utils/rules/parser.js.map +1 -1
- package/codeyam-cli/src/utils/rules/ruleState.js +150 -0
- package/codeyam-cli/src/utils/rules/ruleState.js.map +1 -0
- package/codeyam-cli/src/utils/rules/staleness.js +16 -11
- package/codeyam-cli/src/utils/rules/staleness.js.map +1 -1
- package/codeyam-cli/src/utils/serverState.js +37 -10
- package/codeyam-cli/src/utils/serverState.js.map +1 -1
- package/codeyam-cli/src/utils/setupClaudeCodeSettings.js +21 -44
- package/codeyam-cli/src/utils/setupClaudeCodeSettings.js.map +1 -1
- package/codeyam-cli/src/webserver/app/lib/database.js +15 -3
- package/codeyam-cli/src/webserver/app/lib/database.js.map +1 -1
- package/codeyam-cli/src/webserver/backgroundServer.js +24 -0
- package/codeyam-cli/src/webserver/backgroundServer.js.map +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/CopyButton-CA3JxPb7.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/{EntityItem-DsN1wKrm.js → EntityItem-B86KKU7e.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{EntityTypeBadge-DLqD3qNt.js → EntityTypeBadge-B5ctlSYt.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{EntityTypeIcon-Ba2JVPzP.js → EntityTypeIcon-BqY8gDAW.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{InlineSpinner-C8lyxW9k.js → InlineSpinner-ClaLpuOo.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{InteractivePreview-aht4aafF.js → InteractivePreview-BDhPilK7.js} +2 -2
- package/codeyam-cli/src/webserver/build/client/assets/{LibraryFunctionPreview-CVtiBnY5.js → LibraryFunctionPreview-VeqEBv9v.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{LoadingDots-B0GLXMsr.js → LoadingDots-Bs7Nn1Jr.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{LogViewer-xgeCVgSM.js → LogViewer-Bm3PmcCz.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{ReportIssueModal-OApQuNyq.js → ReportIssueModal-CgMEzchJ.js} +3 -8
- package/codeyam-cli/src/webserver/build/client/assets/{SafeScreenshot-DuDvi0jm.js → SafeScreenshot-Gq3Ocjo6.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{ScenarioViewer-DzccYyI8.js → ScenarioViewer-CBui0id_.js} +2 -2
- package/codeyam-cli/src/webserver/build/client/assets/{TruncatedFilePath-DyFZkK0l.js → TruncatedFilePath-CiwXDxLh.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{_index-BwqWJOgH.js → _index-B3TDXxnk.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{activity.(_tab)-BwavGCpm.js → activity.(_tab)-BtBFH820.js} +6 -11
- package/codeyam-cli/src/webserver/build/client/assets/agent-transcripts-CN61MOMa.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.agent-transcripts-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.labs-unlock-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/api.save-fixture-l0sNRNKZ.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/book-open-PttOB2SF.js +6 -0
- package/codeyam-cli/src/webserver/build/client/assets/{chevron-down-Cx24_aWc.js → chevron-down-TJp6ofnp.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{chunk-EPOLDU6W-CXRTFQ3F.js → chunk-JZWAC4HX-JE9ZIoBl.js} +12 -12
- package/codeyam-cli/src/webserver/build/client/assets/{circle-check-BOARzkeR.js → circle-check-CXhHQYrI.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/copy-6y9ALfGT.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/{createLucideIcon-BdhJEx6B.js → createLucideIcon-Ca9fAY46.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{dev.empty-BBnGWYga.js → dev.empty-C0epRiVn.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{entity._sha._-BJUiQqZF.js → entity._sha._-BVnB8a9L.js} +10 -10
- package/codeyam-cli/src/webserver/build/client/assets/{entity._sha.scenarios._scenarioId.fullscreen-DavjRmOY.js → entity._sha.scenarios._scenarioId.fullscreen-CBoafmVs.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{entity._sha_.create-scenario-D1T4TGjf.js → entity._sha_.create-scenario-DGgZjdFg.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{entity._sha_.edit._scenarioId-CTBG2mmz.js → entity._sha_.edit._scenarioId-38yPijoD.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{entry.client-CS2cb_eZ.js → entry.client-BSHEfydn.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{fileTableUtils-DMJ7zii9.js → fileTableUtils-DCPhhSMo.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{files-CJ6lTdTA.js → files-0N0YJQv7.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{git-CPTZZ-JZ.js → git-DXnyr8uP.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/globals-CKT08Djd.css +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/{index-lzqtyFU8.js → index-CcsFv748.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{index-B1h680n5.js → index-ChN9-fAY.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/labs-BLJ7HxOC.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/{loader-circle-B7B9V-bu.js → loader-circle-CTqLEAGU.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/manifest-b171b9d3.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/memory-CCQd4aZA.js +78 -0
- package/codeyam-cli/src/webserver/build/client/assets/pause-D6vreykR.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/root-CHhiHoo_.js +62 -0
- package/codeyam-cli/src/webserver/build/client/assets/{search-CxXUmBSd.js → search-B8VUL8nl.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/settings-BejnUJ6R.js +1 -0
- package/codeyam-cli/src/webserver/build/client/assets/{simulations-DwFIBT09.js → simulations-CPoAg7Zo.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/terminal-BrCP7uQo.js +11 -0
- package/codeyam-cli/src/webserver/build/client/assets/{triangle-alert-B6LgvRJg.js → triangle-alert-BZz2NjYa.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{useCustomSizes-C1v1PQzo.js → useCustomSizes-DNwUduNu.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{useLastLogLine-aSv48UbS.js → useLastLogLine-COky1GVF.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{useReportContext-DYxHZQuP.js → useReportContext-CpZgwliL.js} +1 -1
- package/codeyam-cli/src/webserver/build/client/assets/{useToast-mBRpZPiu.js → useToast-Bv9JFvUO.js} +1 -1
- package/codeyam-cli/src/webserver/build/server/assets/{index-DVzYx8PN.js → index-8Fv-lH1-.js} +1 -1
- package/codeyam-cli/src/webserver/build/server/assets/server-build-Akn3iYFP.js +257 -0
- package/codeyam-cli/src/webserver/build/server/index.js +1 -1
- package/codeyam-cli/src/webserver/build-info.json +5 -5
- package/codeyam-cli/templates/{codeyam:debug.md → codeyam-debug.md} +1 -1
- package/codeyam-cli/templates/codeyam-diagnose.md +481 -0
- package/codeyam-cli/templates/codeyam-memory-hook.sh +19 -20
- package/codeyam-cli/templates/codeyam-memory.md +392 -0
- package/codeyam-cli/templates/codeyam-new-rule.md +13 -0
- package/codeyam-cli/templates/{codeyam:setup.md → codeyam-setup.md} +13 -1
- package/codeyam-cli/templates/{codeyam:sim.md → codeyam-sim.md} +1 -1
- package/codeyam-cli/templates/{codeyam:test.md → codeyam-test.md} +1 -1
- package/codeyam-cli/templates/{codeyam:verify.md → codeyam-verify.md} +1 -1
- package/codeyam-cli/templates/rule-notification-hook.py +56 -0
- package/codeyam-cli/templates/rule-reflection-hook.py +627 -0
- package/codeyam-cli/templates/rules-instructions.md +132 -0
- package/package.json +2 -2
- package/packages/ai/index.js +3 -2
- package/packages/ai/index.js.map +1 -1
- package/packages/ai/src/lib/analyzeScope.js +50 -13
- package/packages/ai/src/lib/analyzeScope.js.map +1 -1
- package/packages/ai/src/lib/astScopes/astScopeAnalyzer.js +54 -8
- package/packages/ai/src/lib/astScopes/astScopeAnalyzer.js.map +1 -1
- package/packages/ai/src/lib/astScopes/patterns/forInStatementHandler.js +10 -14
- package/packages/ai/src/lib/astScopes/patterns/forInStatementHandler.js.map +1 -1
- package/packages/ai/src/lib/astScopes/processExpression.js +317 -44
- package/packages/ai/src/lib/astScopes/processExpression.js.map +1 -1
- package/packages/ai/src/lib/astScopes/sharedPatterns.js +25 -0
- package/packages/ai/src/lib/astScopes/sharedPatterns.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/ScopeDataStructure.js +763 -171
- package/packages/ai/src/lib/dataStructure/ScopeDataStructure.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/JavascriptFrameworkManager.js +5 -1
- package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/JavascriptFrameworkManager.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/BatchSchemaProcessor.js +13 -3
- package/packages/ai/src/lib/dataStructure/helpers/BatchSchemaProcessor.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/ScopeTreeManager.js +6 -4
- package/packages/ai/src/lib/dataStructure/helpers/ScopeTreeManager.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/cleanKnownObjectFunctions.js +33 -3
- package/packages/ai/src/lib/dataStructure/helpers/cleanKnownObjectFunctions.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/cleanNonObjectFunctions.js +36 -11
- package/packages/ai/src/lib/dataStructure/helpers/cleanNonObjectFunctions.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/coerceObjectsToPrimitivesBySchema.js +63 -0
- package/packages/ai/src/lib/dataStructure/helpers/coerceObjectsToPrimitivesBySchema.js.map +1 -0
- package/packages/ai/src/lib/dataStructure/helpers/convertDotNotation.js +113 -11
- package/packages/ai/src/lib/dataStructure/helpers/convertDotNotation.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/convertTypeAnnotationsToValues.js +173 -0
- package/packages/ai/src/lib/dataStructure/helpers/convertTypeAnnotationsToValues.js.map +1 -0
- package/packages/ai/src/lib/dataStructure/helpers/deduplicateFunctionSchemas.js +37 -20
- package/packages/ai/src/lib/dataStructure/helpers/deduplicateFunctionSchemas.js.map +1 -1
- package/packages/ai/src/lib/dataStructure/helpers/fillInSchemaGapsAndUnknowns.js +309 -84
- package/packages/ai/src/lib/dataStructure/helpers/fillInSchemaGapsAndUnknowns.js.map +1 -1
- package/packages/ai/src/lib/dataStructureChunking.js +26 -11
- package/packages/ai/src/lib/dataStructureChunking.js.map +1 -1
- package/packages/ai/src/lib/generateEntityDataStructure.js +46 -2
- package/packages/ai/src/lib/generateEntityDataStructure.js.map +1 -1
- package/packages/ai/src/lib/generateEntityScenarioData.js +227 -4
- package/packages/ai/src/lib/generateEntityScenarioData.js.map +1 -1
- package/packages/ai/src/lib/generateEntityScenarios.js +7 -1
- package/packages/ai/src/lib/generateEntityScenarios.js.map +1 -1
- package/packages/ai/src/lib/generateExecutionFlows.js +26 -4
- package/packages/ai/src/lib/generateExecutionFlows.js.map +1 -1
- package/packages/ai/src/lib/generateExecutionFlowsFromConditionals.js +447 -80
- package/packages/ai/src/lib/generateExecutionFlowsFromConditionals.js.map +1 -1
- package/packages/ai/src/lib/isolateScopes.js +39 -3
- package/packages/ai/src/lib/isolateScopes.js.map +1 -1
- package/packages/ai/src/lib/mergeJsonTypeDefinitions.js +5 -0
- package/packages/ai/src/lib/mergeJsonTypeDefinitions.js.map +1 -1
- package/packages/ai/src/lib/mergeStatements.js +70 -51
- package/packages/ai/src/lib/mergeStatements.js.map +1 -1
- package/packages/ai/src/lib/promptGenerators/collapseNullableObjects.js +97 -0
- package/packages/ai/src/lib/promptGenerators/collapseNullableObjects.js.map +1 -0
- package/packages/ai/src/lib/promptGenerators/gatherAttributesMap.js +10 -4
- package/packages/ai/src/lib/promptGenerators/gatherAttributesMap.js.map +1 -1
- package/packages/ai/src/lib/promptGenerators/generateEntityScenarioDataGenerator.js +17 -2
- package/packages/ai/src/lib/promptGenerators/generateEntityScenarioDataGenerator.js.map +1 -1
- package/packages/ai/src/lib/resolvePathToControllable.js +24 -14
- package/packages/ai/src/lib/resolvePathToControllable.js.map +1 -1
- package/packages/ai/src/lib/worker/SerializableDataStructure.js.map +1 -1
- package/packages/analyze/index.js +1 -0
- package/packages/analyze/index.js.map +1 -1
- package/packages/analyze/src/lib/FileAnalyzer.js +60 -36
- package/packages/analyze/src/lib/FileAnalyzer.js.map +1 -1
- package/packages/analyze/src/lib/ProjectAnalyzer.js +96 -26
- package/packages/analyze/src/lib/ProjectAnalyzer.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getAllDeclaredEntityNodes.js +14 -0
- package/packages/analyze/src/lib/asts/sourceFiles/getAllDeclaredEntityNodes.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getAllEntityNodes.js +14 -0
- package/packages/analyze/src/lib/asts/sourceFiles/getAllEntityNodes.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getAllExports.js +6 -0
- package/packages/analyze/src/lib/asts/sourceFiles/getAllExports.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getImportsAnalysis.js +6 -0
- package/packages/analyze/src/lib/asts/sourceFiles/getImportsAnalysis.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getResolvedModule.js +39 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getResolvedModule.js.map +1 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getSourceFilesForAllImports.js +2 -1
- package/packages/analyze/src/lib/asts/sourceFiles/getSourceFilesForAllImports.js.map +1 -1
- package/packages/analyze/src/lib/files/analyze/analyzeEntities/prepareDataStructures.js +65 -7
- package/packages/analyze/src/lib/files/analyze/analyzeEntities/prepareDataStructures.js.map +1 -1
- package/packages/analyze/src/lib/files/analyze/analyzeEntities.js +17 -4
- package/packages/analyze/src/lib/files/analyze/analyzeEntities.js.map +1 -1
- package/packages/analyze/src/lib/files/analyze/gatherEntityMap.js +2 -1
- package/packages/analyze/src/lib/files/analyze/gatherEntityMap.js.map +1 -1
- package/packages/analyze/src/lib/files/analyze/validateDependencyAnalyses.js +0 -3
- package/packages/analyze/src/lib/files/analyze/validateDependencyAnalyses.js.map +1 -1
- package/packages/analyze/src/lib/files/analyzeRemixRoute.js +3 -2
- package/packages/analyze/src/lib/files/analyzeRemixRoute.js.map +1 -1
- package/packages/analyze/src/lib/files/getImportedExports.js +11 -7
- package/packages/analyze/src/lib/files/getImportedExports.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/TransformationTracer.js +880 -0
- package/packages/analyze/src/lib/files/scenarios/TransformationTracer.js.map +1 -0
- package/packages/analyze/src/lib/files/scenarios/enrichArrayTypesFromChildSignatures.js +56 -10
- package/packages/analyze/src/lib/files/scenarios/enrichArrayTypesFromChildSignatures.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/gatherDataForMocks.js +33 -8
- package/packages/analyze/src/lib/files/scenarios/gatherDataForMocks.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/generateDataStructure.js +150 -17
- package/packages/analyze/src/lib/files/scenarios/generateDataStructure.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/generateExecutionFlows.js +56 -8
- package/packages/analyze/src/lib/files/scenarios/generateExecutionFlows.js.map +1 -1
- package/packages/analyze/src/lib/files/scenarios/mergeInDependentDataStructure.js +399 -31
- package/packages/analyze/src/lib/files/scenarios/mergeInDependentDataStructure.js.map +1 -1
- package/packages/analyze/src/lib/files/setImportedExports.js +2 -1
- package/packages/analyze/src/lib/files/setImportedExports.js.map +1 -1
- package/packages/analyze/src/lib/index.js +1 -0
- package/packages/analyze/src/lib/index.js.map +1 -1
- package/packages/analyze/src/lib/utils/getFileByPath.js +12 -0
- package/packages/analyze/src/lib/utils/getFileByPath.js.map +1 -0
- package/packages/database/src/lib/analysisBranchToDb.js +1 -1
- package/packages/database/src/lib/analysisBranchToDb.js.map +1 -1
- package/packages/database/src/lib/analysisToDb.js +1 -1
- package/packages/database/src/lib/analysisToDb.js.map +1 -1
- package/packages/database/src/lib/branchToDb.js +1 -1
- package/packages/database/src/lib/branchToDb.js.map +1 -1
- package/packages/database/src/lib/commitBranchToDb.js +1 -1
- package/packages/database/src/lib/commitBranchToDb.js.map +1 -1
- package/packages/database/src/lib/commitToDb.js +1 -1
- package/packages/database/src/lib/commitToDb.js.map +1 -1
- package/packages/database/src/lib/fileToDb.js +1 -1
- package/packages/database/src/lib/fileToDb.js.map +1 -1
- package/packages/database/src/lib/kysely/db.js +3 -0
- package/packages/database/src/lib/kysely/db.js.map +1 -1
- package/packages/database/src/lib/kysely/tables/labsRequestsTable.js +35 -0
- package/packages/database/src/lib/kysely/tables/labsRequestsTable.js.map +1 -0
- package/packages/database/src/lib/projectToDb.js +1 -1
- package/packages/database/src/lib/projectToDb.js.map +1 -1
- package/packages/database/src/lib/saveFiles.js +1 -1
- package/packages/database/src/lib/saveFiles.js.map +1 -1
- package/packages/database/src/lib/scenarioToDb.js +1 -1
- package/packages/database/src/lib/scenarioToDb.js.map +1 -1
- package/scripts/finalize-analyzer.cjs +8 -76
- package/codeyam-cli/src/webserver/build/client/assets/copy-Bb-80kDT.js +0 -6
- package/codeyam-cli/src/webserver/build/client/assets/file-code-Dhef1kWN.js +0 -6
- package/codeyam-cli/src/webserver/build/client/assets/globals-D3yhhV8x.css +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/manifest-7522edd4.js +0 -1
- package/codeyam-cli/src/webserver/build/client/assets/memory-yxFcrxBX.js +0 -92
- package/codeyam-cli/src/webserver/build/client/assets/root-eVAaavTS.js +0 -62
- package/codeyam-cli/src/webserver/build/client/assets/settings-CS5f3WzT.js +0 -1
- package/codeyam-cli/src/webserver/build/server/assets/server-build-4Cr0uToj.js +0 -257
- package/codeyam-cli/templates/codeyam:diagnose.md +0 -803
- package/codeyam-cli/templates/codeyam:memory.md +0 -462
- package/codeyam-cli/templates/codeyam:new-rule.md +0 -13
|
@@ -152,7 +152,7 @@ export interface ScopeInfo {
|
|
|
152
152
|
[childComponentName: string]: Array<{
|
|
153
153
|
path: string;
|
|
154
154
|
conditionType: 'truthiness' | 'comparison';
|
|
155
|
-
location: 'if' | 'ternary' | 'logical-and' | 'switch';
|
|
155
|
+
location: 'if' | 'ternary' | 'logical-and' | 'switch' | 'unconditional';
|
|
156
156
|
isNegated?: boolean;
|
|
157
157
|
}>;
|
|
158
158
|
};
|
|
@@ -397,6 +397,7 @@ const SILENTLY_IGNORED_EQUIVALENCY_REASONS = new Set([
|
|
|
397
397
|
'transformed non-object function equivalency - implicit parent equivalency - rerouted via useCallback',
|
|
398
398
|
'transformed non-object function equivalency - Array.from() equivalency',
|
|
399
399
|
'Spread operator equivalency key update: Explicit array deconstruction equivalency value',
|
|
400
|
+
// 'transformed non-object function equivalency - Explicit array deconstruction equivalency value',
|
|
400
401
|
]);
|
|
401
402
|
|
|
402
403
|
export class ScopeDataStructure {
|
|
@@ -424,7 +425,7 @@ export class ScopeDataStructure {
|
|
|
424
425
|
path: string;
|
|
425
426
|
conditionType: 'truthiness' | 'comparison' | 'switch';
|
|
426
427
|
comparedValues?: string[];
|
|
427
|
-
location: 'if' | 'ternary' | 'logical-and' | 'switch';
|
|
428
|
+
location: 'if' | 'ternary' | 'logical-and' | 'switch' | 'unconditional';
|
|
428
429
|
}>
|
|
429
430
|
> = {};
|
|
430
431
|
|
|
@@ -799,6 +800,11 @@ export class ScopeDataStructure {
|
|
|
799
800
|
return;
|
|
800
801
|
}
|
|
801
802
|
|
|
803
|
+
// PERF: Early exit for paths with repeated function-call signature patterns
|
|
804
|
+
if (this.hasExcessivePatternRepetition(path)) {
|
|
805
|
+
return;
|
|
806
|
+
}
|
|
807
|
+
|
|
802
808
|
// Update chain metadata for database tracking
|
|
803
809
|
if (equivalencyValueChain.length > 0) {
|
|
804
810
|
equivalencyValueChain[equivalencyValueChain.length - 1].addToSchemaId =
|
|
@@ -1486,6 +1492,15 @@ export class ScopeDataStructure {
|
|
|
1486
1492
|
|
|
1487
1493
|
const bestValue = selectBestValue(value1, value2);
|
|
1488
1494
|
|
|
1495
|
+
// PERF: Skip paths with repeated function-call signature patterns
|
|
1496
|
+
// to prevent recursive type expansion (e.g., string.localeCompare returns string)
|
|
1497
|
+
if (
|
|
1498
|
+
this.hasExcessivePatternRepetition(schemaPath) ||
|
|
1499
|
+
this.hasExcessivePatternRepetition(equivalentSchemaPath)
|
|
1500
|
+
) {
|
|
1501
|
+
continue;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1489
1504
|
scopeNode.schema[schemaPath] = bestValue;
|
|
1490
1505
|
equivalentScopeNode.schema[equivalentSchemaPath] = bestValue;
|
|
1491
1506
|
} else if (
|
|
@@ -1499,6 +1514,11 @@ export class ScopeDataStructure {
|
|
|
1499
1514
|
...remainingSchemaPathParts,
|
|
1500
1515
|
]);
|
|
1501
1516
|
|
|
1517
|
+
// PERF: Skip paths with repeated function-call signature patterns
|
|
1518
|
+
if (this.hasExcessivePatternRepetition(newEquivalentPath)) {
|
|
1519
|
+
continue;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1502
1522
|
equivalentScopeNode.schema[newEquivalentPath] =
|
|
1503
1523
|
scopeNode.schema[schemaPath];
|
|
1504
1524
|
}
|
|
@@ -1618,6 +1638,23 @@ export class ScopeDataStructure {
|
|
|
1618
1638
|
}
|
|
1619
1639
|
}
|
|
1620
1640
|
|
|
1641
|
+
// Check for repeated function calls that indicate recursive type expansion.
|
|
1642
|
+
// E.g., localeCompare(b[])...localeCompare(b[]) means string.localeCompare
|
|
1643
|
+
// returns a type that again has localeCompare, causing infinite expansion.
|
|
1644
|
+
// We extract all function call patterns like "funcName(args)" and check if
|
|
1645
|
+
// the same normalized call appears more than once.
|
|
1646
|
+
const funcCallPattern = /(?:^|\.)[^.([]+\([^)]*\)/g;
|
|
1647
|
+
const funcCallMatches = path.match(funcCallPattern);
|
|
1648
|
+
if (funcCallMatches && funcCallMatches.length > 1) {
|
|
1649
|
+
const seen = new Set<string>();
|
|
1650
|
+
for (const match of funcCallMatches) {
|
|
1651
|
+
// Strip leading dot and normalize array indices
|
|
1652
|
+
const normalized = match.replace(/^\./, '').replace(/\[\d+\]/g, '[]');
|
|
1653
|
+
if (seen.has(normalized)) return true;
|
|
1654
|
+
seen.add(normalized);
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1621
1658
|
// For longer paths, detect any repeated multi-part segments we haven't explicitly listed
|
|
1622
1659
|
const pathParts = this.splitPath(path);
|
|
1623
1660
|
if (pathParts.length <= 6) {
|
|
@@ -1650,17 +1687,26 @@ export class ScopeDataStructure {
|
|
|
1650
1687
|
private setInstantiatedVariables(scopeNode: ScopeNode) {
|
|
1651
1688
|
let instantiatedVariables = scopeNode.analysis?.instantiatedVariables ?? [];
|
|
1652
1689
|
|
|
1653
|
-
for (const [path,
|
|
1690
|
+
for (const [path, rawEquivalentPath] of Object.entries(
|
|
1654
1691
|
scopeNode.analysis.isolatedEquivalentVariables ?? {},
|
|
1655
1692
|
)) {
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1693
|
+
// Normalize to array for consistent handling (supports both string and string[])
|
|
1694
|
+
const equivalentPaths = Array.isArray(rawEquivalentPath)
|
|
1695
|
+
? rawEquivalentPath
|
|
1696
|
+
: rawEquivalentPath
|
|
1697
|
+
? [rawEquivalentPath]
|
|
1698
|
+
: [];
|
|
1699
|
+
|
|
1700
|
+
for (const equivalentPath of equivalentPaths) {
|
|
1701
|
+
if (typeof equivalentPath !== 'string') {
|
|
1702
|
+
continue;
|
|
1703
|
+
}
|
|
1659
1704
|
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1705
|
+
if (equivalentPath.startsWith('signature[')) {
|
|
1706
|
+
const equivalentPathParts = this.splitPath(equivalentPath);
|
|
1707
|
+
instantiatedVariables.push(equivalentPathParts[0]);
|
|
1708
|
+
instantiatedVariables.push(path);
|
|
1709
|
+
}
|
|
1664
1710
|
}
|
|
1665
1711
|
|
|
1666
1712
|
const duplicateInstantiated = instantiatedVariables.find(
|
|
@@ -1673,9 +1719,14 @@ export class ScopeDataStructure {
|
|
|
1673
1719
|
}
|
|
1674
1720
|
}
|
|
1675
1721
|
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1722
|
+
const instantiatedSeen = new Set<string>();
|
|
1723
|
+
instantiatedVariables = instantiatedVariables.filter((varName) => {
|
|
1724
|
+
if (instantiatedSeen.has(varName)) {
|
|
1725
|
+
return false;
|
|
1726
|
+
}
|
|
1727
|
+
instantiatedSeen.add(varName);
|
|
1728
|
+
return true;
|
|
1729
|
+
});
|
|
1679
1730
|
|
|
1680
1731
|
scopeNode.instantiatedVariables = instantiatedVariables;
|
|
1681
1732
|
|
|
@@ -1696,13 +1747,19 @@ export class ScopeDataStructure {
|
|
|
1696
1747
|
...parentScopeNode.instantiatedVariables.filter(
|
|
1697
1748
|
(v) => !v.startsWith('signature[') && !v.startsWith('returnValue'),
|
|
1698
1749
|
),
|
|
1699
|
-
].filter(
|
|
1700
|
-
(varName, index, self) =>
|
|
1701
|
-
!instantiatedVariables.includes(varName) &&
|
|
1702
|
-
self.indexOf(varName) === index,
|
|
1703
|
-
);
|
|
1750
|
+
].filter((varName) => !instantiatedSeen.has(varName));
|
|
1704
1751
|
|
|
1705
|
-
|
|
1752
|
+
const parentInstantiatedSeen = new Set<string>();
|
|
1753
|
+
const dedupedParentInstantiatedVariables =
|
|
1754
|
+
parentInstantiatedVariables.filter((varName) => {
|
|
1755
|
+
if (parentInstantiatedSeen.has(varName)) {
|
|
1756
|
+
return false;
|
|
1757
|
+
}
|
|
1758
|
+
parentInstantiatedSeen.add(varName);
|
|
1759
|
+
return true;
|
|
1760
|
+
});
|
|
1761
|
+
|
|
1762
|
+
scopeNode.parentInstantiatedVariables = dedupedParentInstantiatedVariables;
|
|
1706
1763
|
}
|
|
1707
1764
|
|
|
1708
1765
|
private trackFunctionCalls(scopeNode: ScopeNode) {
|
|
@@ -1718,172 +1775,198 @@ export class ScopeDataStructure {
|
|
|
1718
1775
|
const { isolatedStructure, isolatedEquivalentVariables } =
|
|
1719
1776
|
scopeNode.analysis;
|
|
1720
1777
|
|
|
1778
|
+
// Flatten isolatedEquivalentVariables values for allPaths (handles both string and string[])
|
|
1779
|
+
const flattenedEquivValues = Object.values(
|
|
1780
|
+
isolatedEquivalentVariables || {},
|
|
1781
|
+
).flatMap((v) => (Array.isArray(v) ? v : [v]));
|
|
1782
|
+
|
|
1721
1783
|
const allPaths = Array.from(
|
|
1722
1784
|
new Set([
|
|
1723
1785
|
...Object.keys(isolatedStructure || {}),
|
|
1724
1786
|
...Object.keys(isolatedEquivalentVariables || {}),
|
|
1725
|
-
...
|
|
1787
|
+
...flattenedEquivValues,
|
|
1726
1788
|
]),
|
|
1727
1789
|
);
|
|
1728
1790
|
|
|
1729
1791
|
for (let path in isolatedEquivalentVariables) {
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1792
|
+
const rawEquivalentValue = isolatedEquivalentVariables?.[path];
|
|
1793
|
+
// Normalize to array for consistent handling
|
|
1794
|
+
const equivalentValues = Array.isArray(rawEquivalentValue)
|
|
1795
|
+
? rawEquivalentValue
|
|
1796
|
+
: [rawEquivalentValue];
|
|
1797
|
+
|
|
1798
|
+
for (let equivalentValue of equivalentValues) {
|
|
1799
|
+
if (equivalentValue && this.isValidPath(equivalentValue)) {
|
|
1800
|
+
// IMPORTANT: DO NOT strip ::cyDuplicateKey:: markers from equivalencies.
|
|
1801
|
+
// These markers are critical for distinguishing variable reassignments.
|
|
1802
|
+
// For example, with:
|
|
1803
|
+
// let fetcher = useFetcher<ConfigData>();
|
|
1804
|
+
// const configData = fetcher.data?.data;
|
|
1805
|
+
// fetcher = useFetcher<SettingsData>();
|
|
1806
|
+
// const settingsData = fetcher.data?.data;
|
|
1807
|
+
//
|
|
1808
|
+
// mergeStatements creates:
|
|
1809
|
+
// fetcher → useFetcher<ConfigData>()...
|
|
1810
|
+
// fetcher::cyDuplicateKey1:: → useFetcher<SettingsData>()...
|
|
1811
|
+
// configData → fetcher.data.data
|
|
1812
|
+
// settingsData → fetcher::cyDuplicateKey1::.data.data
|
|
1813
|
+
//
|
|
1814
|
+
// If we strip ::cyDuplicateKey::, settingsData would incorrectly trace
|
|
1815
|
+
// to useFetcher<ConfigData>() instead of useFetcher<SettingsData>().
|
|
1816
|
+
path = cleanPath(path, allPaths);
|
|
1817
|
+
equivalentValue = cleanPath(equivalentValue, allPaths);
|
|
1818
|
+
|
|
1819
|
+
this.addEquivalency(
|
|
1820
|
+
path,
|
|
1821
|
+
equivalentValue,
|
|
1822
|
+
scopeNode.name,
|
|
1823
|
+
scopeNode,
|
|
1824
|
+
'original equivalency',
|
|
1825
|
+
);
|
|
1759
1826
|
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1827
|
+
// Propagate equivalencies involving parent-scope variables to those parent scopes.
|
|
1828
|
+
// This handles patterns like: collected.push({...entity}) where 'collected' is defined
|
|
1829
|
+
// in a parent scope. The equivalency collected[] -> push().signature[0] needs to be
|
|
1830
|
+
// visible when tracing from the parent scope.
|
|
1831
|
+
const rootVariable = this.extractRootVariable(path);
|
|
1832
|
+
const equivalentRootVariable =
|
|
1833
|
+
this.extractRootVariable(equivalentValue);
|
|
1834
|
+
|
|
1835
|
+
// Skip propagation for self-referential reassignment patterns like:
|
|
1836
|
+
// x = x.method().functionCallReturnValue
|
|
1837
|
+
// where the path IS the variable itself (not a sub-path like x[] or x.prop).
|
|
1838
|
+
// These create circular references since both sides reference the same variable.
|
|
1839
|
+
//
|
|
1840
|
+
// But DO propagate for patterns like collected[] -> collected.push(...).signature[0]
|
|
1841
|
+
// where the path has additional segments beyond the root variable.
|
|
1842
|
+
const pathIsJustRootVariable = path === rootVariable;
|
|
1843
|
+
const isSelfReferentialReassignment =
|
|
1844
|
+
pathIsJustRootVariable && rootVariable === equivalentRootVariable;
|
|
1778
1845
|
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1846
|
+
if (
|
|
1847
|
+
rootVariable &&
|
|
1848
|
+
!isSelfReferentialReassignment &&
|
|
1849
|
+
scopeNode.parentInstantiatedVariables?.includes(rootVariable)
|
|
1850
|
+
) {
|
|
1851
|
+
// Find the parent scope where this variable is defined
|
|
1852
|
+
for (const parentScopeName of scopeNode.tree || []) {
|
|
1853
|
+
const parentScope = this.scopeNodes[parentScopeName];
|
|
1854
|
+
if (parentScope?.instantiatedVariables?.includes(rootVariable)) {
|
|
1855
|
+
// Add the equivalency to the parent scope as well
|
|
1856
|
+
this.addEquivalency(
|
|
1857
|
+
path,
|
|
1858
|
+
equivalentValue,
|
|
1859
|
+
scopeNode.name, // The equivalent path's scope remains the child scope
|
|
1860
|
+
parentScope, // But store it in the parent scope's equivalencies
|
|
1861
|
+
'propagated parent-variable equivalency',
|
|
1862
|
+
);
|
|
1863
|
+
break;
|
|
1864
|
+
}
|
|
1797
1865
|
}
|
|
1798
1866
|
}
|
|
1799
|
-
}
|
|
1800
1867
|
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1868
|
+
// Propagate sub-property equivalencies when the equivalentValue is a simple variable
|
|
1869
|
+
// that has sub-properties defined in the isolatedEquivalentVariables.
|
|
1870
|
+
// This handles cases like: dataItem={{ structure: completeDataStructure }}
|
|
1871
|
+
// where completeDataStructure has sub-properties like completeDataStructure['Function Arguments']
|
|
1872
|
+
// We need to propagate these to create: dataItem.structure['Function Arguments'] equivalencies
|
|
1873
|
+
const isSimpleVariable =
|
|
1874
|
+
!equivalentValue.startsWith('signature[') &&
|
|
1875
|
+
!equivalentValue.includes('functionCallReturnValue') &&
|
|
1876
|
+
!equivalentValue.includes('.') &&
|
|
1877
|
+
!equivalentValue.includes('[');
|
|
1878
|
+
|
|
1879
|
+
if (isSimpleVariable) {
|
|
1880
|
+
// Look in current scope and all parent scopes for sub-properties
|
|
1881
|
+
const scopesToCheck = [scopeNode.name, ...scopeNode.tree];
|
|
1882
|
+
for (const scopeName of scopesToCheck) {
|
|
1883
|
+
const checkScope = this.scopeNodes[scopeName];
|
|
1884
|
+
if (!checkScope?.analysis?.isolatedEquivalentVariables) continue;
|
|
1885
|
+
|
|
1886
|
+
for (const [subPath, rawSubValue] of Object.entries(
|
|
1887
|
+
checkScope.analysis.isolatedEquivalentVariables,
|
|
1888
|
+
)) {
|
|
1889
|
+
// Normalize to array for consistent handling
|
|
1890
|
+
const subValues = Array.isArray(rawSubValue)
|
|
1891
|
+
? rawSubValue
|
|
1892
|
+
: rawSubValue
|
|
1893
|
+
? [rawSubValue]
|
|
1894
|
+
: [];
|
|
1895
|
+
|
|
1896
|
+
// Check if this is a sub-property of the equivalentValue variable
|
|
1897
|
+
// e.g., completeDataStructure['Function Arguments'] or completeDataStructure.foo
|
|
1898
|
+
const matchesDot = subPath.startsWith(equivalentValue + '.');
|
|
1899
|
+
const matchesBracket = subPath.startsWith(
|
|
1900
|
+
equivalentValue + '[',
|
|
1829
1901
|
);
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
allPaths,
|
|
1834
|
-
);
|
|
1835
|
-
|
|
1836
|
-
if (
|
|
1837
|
-
newEquivalentValue &&
|
|
1838
|
-
this.isValidPath(newEquivalentValue)
|
|
1839
|
-
) {
|
|
1840
|
-
this.addEquivalency(
|
|
1841
|
-
newPath,
|
|
1842
|
-
newEquivalentValue,
|
|
1843
|
-
checkScope.name, // Use the scope where the sub-property was found
|
|
1844
|
-
scopeNode,
|
|
1845
|
-
'propagated sub-property equivalency',
|
|
1902
|
+
if (matchesDot || matchesBracket) {
|
|
1903
|
+
const subPropertyPath = subPath.substring(
|
|
1904
|
+
equivalentValue.length,
|
|
1846
1905
|
);
|
|
1906
|
+
const newPath = cleanPath(path + subPropertyPath, allPaths);
|
|
1907
|
+
|
|
1908
|
+
for (const subValue of subValues) {
|
|
1909
|
+
if (typeof subValue !== 'string') continue;
|
|
1910
|
+
const newEquivalentValue = cleanPath(
|
|
1911
|
+
subValue.replace(/::cyDuplicateKey\d+::/g, ''),
|
|
1912
|
+
allPaths,
|
|
1913
|
+
);
|
|
1914
|
+
|
|
1915
|
+
if (
|
|
1916
|
+
newEquivalentValue &&
|
|
1917
|
+
this.isValidPath(newEquivalentValue)
|
|
1918
|
+
) {
|
|
1919
|
+
this.addEquivalency(
|
|
1920
|
+
newPath,
|
|
1921
|
+
newEquivalentValue,
|
|
1922
|
+
checkScope.name, // Use the scope where the sub-property was found
|
|
1923
|
+
scopeNode,
|
|
1924
|
+
'propagated sub-property equivalency',
|
|
1925
|
+
);
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1847
1928
|
}
|
|
1848
|
-
}
|
|
1849
1929
|
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1930
|
+
// Also check if equivalentValue itself maps to a functionCallReturnValue
|
|
1931
|
+
// e.g., result = useMemo(...).functionCallReturnValue
|
|
1932
|
+
for (const subValue of subValues) {
|
|
1933
|
+
if (
|
|
1934
|
+
subPath === equivalentValue &&
|
|
1935
|
+
typeof subValue === 'string' &&
|
|
1936
|
+
subValue.endsWith('.functionCallReturnValue')
|
|
1937
|
+
) {
|
|
1938
|
+
this.propagateFunctionCallReturnSubProperties(
|
|
1939
|
+
path,
|
|
1940
|
+
subValue,
|
|
1941
|
+
scopeNode,
|
|
1942
|
+
allPaths,
|
|
1943
|
+
);
|
|
1944
|
+
}
|
|
1945
|
+
}
|
|
1863
1946
|
}
|
|
1864
1947
|
}
|
|
1865
1948
|
}
|
|
1866
|
-
}
|
|
1867
1949
|
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1950
|
+
// Handle function call return values by propagating returnValue.* sub-properties
|
|
1951
|
+
// from the callback scope to the usage path
|
|
1952
|
+
if (equivalentValue.endsWith('.functionCallReturnValue')) {
|
|
1953
|
+
this.propagateFunctionCallReturnSubProperties(
|
|
1954
|
+
path,
|
|
1955
|
+
equivalentValue,
|
|
1956
|
+
scopeNode,
|
|
1957
|
+
allPaths,
|
|
1958
|
+
);
|
|
1877
1959
|
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1960
|
+
// Track which variable receives the return value of each function call
|
|
1961
|
+
// This enables generating separate mock data for each call site
|
|
1962
|
+
this.trackReceivingVariable(path, equivalentValue);
|
|
1963
|
+
}
|
|
1882
1964
|
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1965
|
+
// Also track variables that receive destructured properties from function call return values
|
|
1966
|
+
// e.g., "userData" -> "db.query('users').functionCallReturnValue.data"
|
|
1967
|
+
if (equivalentValue.includes('.functionCallReturnValue.')) {
|
|
1968
|
+
this.trackReceivingVariable(path, equivalentValue);
|
|
1969
|
+
}
|
|
1887
1970
|
}
|
|
1888
1971
|
}
|
|
1889
1972
|
}
|
|
@@ -2064,9 +2147,18 @@ export class ScopeDataStructure {
|
|
|
2064
2147
|
const checkScope = this.scopeNodes[scopeName];
|
|
2065
2148
|
if (!checkScope?.analysis?.isolatedEquivalentVariables) continue;
|
|
2066
2149
|
|
|
2067
|
-
const
|
|
2150
|
+
const rawFunctionRef =
|
|
2068
2151
|
checkScope.analysis.isolatedEquivalentVariables[functionName];
|
|
2069
|
-
|
|
2152
|
+
// Normalize to array and find first string ending with 'F'
|
|
2153
|
+
const functionRefs = Array.isArray(rawFunctionRef)
|
|
2154
|
+
? rawFunctionRef
|
|
2155
|
+
: rawFunctionRef
|
|
2156
|
+
? [rawFunctionRef]
|
|
2157
|
+
: [];
|
|
2158
|
+
const functionRef = functionRefs.find(
|
|
2159
|
+
(r) => typeof r === 'string' && r.endsWith('F'),
|
|
2160
|
+
);
|
|
2161
|
+
if (typeof functionRef === 'string') {
|
|
2070
2162
|
callbackScopeName = functionRef.slice(0, -1);
|
|
2071
2163
|
break;
|
|
2072
2164
|
}
|
|
@@ -2094,19 +2186,24 @@ export class ScopeDataStructure {
|
|
|
2094
2186
|
|
|
2095
2187
|
const isolatedVars = callbackScope.analysis.isolatedEquivalentVariables;
|
|
2096
2188
|
|
|
2189
|
+
// Get the first returnValue equivalency (normalize array to single value for these checks)
|
|
2190
|
+
const rawReturnValue = isolatedVars.returnValue;
|
|
2191
|
+
const firstReturnValue = Array.isArray(rawReturnValue)
|
|
2192
|
+
? rawReturnValue[0]
|
|
2193
|
+
: rawReturnValue;
|
|
2194
|
+
|
|
2097
2195
|
// First, check if returnValue is an alias to another variable (e.g., returnValue = intermediate)
|
|
2098
2196
|
// If so, we need to look for that variable's sub-properties too
|
|
2099
2197
|
const returnValueAlias =
|
|
2100
|
-
typeof
|
|
2101
|
-
|
|
2102
|
-
? isolatedVars.returnValue
|
|
2198
|
+
typeof firstReturnValue === 'string' && !firstReturnValue.includes('.')
|
|
2199
|
+
? firstReturnValue
|
|
2103
2200
|
: undefined;
|
|
2104
2201
|
|
|
2105
2202
|
// Pattern 3: Object.keys(X).reduce() - the reduce result has the same sub-properties as X
|
|
2106
2203
|
// When returnValue = "Object.keys(source).reduce(...).functionCallReturnValue", look for source.* sub-properties
|
|
2107
2204
|
let reduceSourceVar: string | undefined;
|
|
2108
|
-
if (typeof
|
|
2109
|
-
const reduceMatch =
|
|
2205
|
+
if (typeof firstReturnValue === 'string') {
|
|
2206
|
+
const reduceMatch = firstReturnValue.match(
|
|
2110
2207
|
/^Object\.keys\((\w+)\)\.reduce\(.*\)\.functionCallReturnValue$/,
|
|
2111
2208
|
);
|
|
2112
2209
|
if (reduceMatch) {
|
|
@@ -2114,7 +2211,14 @@ export class ScopeDataStructure {
|
|
|
2114
2211
|
}
|
|
2115
2212
|
}
|
|
2116
2213
|
|
|
2117
|
-
for (const [subPath,
|
|
2214
|
+
for (const [subPath, rawSubValue] of Object.entries(isolatedVars)) {
|
|
2215
|
+
// Normalize to array for consistent handling
|
|
2216
|
+
const subValues = Array.isArray(rawSubValue)
|
|
2217
|
+
? rawSubValue
|
|
2218
|
+
: rawSubValue
|
|
2219
|
+
? [rawSubValue]
|
|
2220
|
+
: [];
|
|
2221
|
+
|
|
2118
2222
|
// Check for direct returnValue.* sub-properties
|
|
2119
2223
|
const isReturnValueSub =
|
|
2120
2224
|
subPath.startsWith('returnValue.') ||
|
|
@@ -2132,57 +2236,59 @@ export class ScopeDataStructure {
|
|
|
2132
2236
|
(subPath.startsWith(reduceSourceVar + '.') ||
|
|
2133
2237
|
subPath.startsWith(reduceSourceVar + '['));
|
|
2134
2238
|
|
|
2135
|
-
if (
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2239
|
+
if (!isReturnValueSub && !isAliasSub && !isReduceSourceSub) continue;
|
|
2240
|
+
|
|
2241
|
+
for (const subValue of subValues) {
|
|
2242
|
+
if (typeof subValue !== 'string') continue;
|
|
2243
|
+
|
|
2244
|
+
// Convert alias/reduceSource paths to returnValue paths
|
|
2245
|
+
let effectiveSubPath = subPath;
|
|
2246
|
+
if (isAliasSub && !isReturnValueSub) {
|
|
2247
|
+
// Replace the alias prefix with returnValue
|
|
2248
|
+
effectiveSubPath =
|
|
2249
|
+
'returnValue' + subPath.substring(returnValueAlias!.length);
|
|
2250
|
+
} else if (isReduceSourceSub && !isReturnValueSub && !isAliasSub) {
|
|
2251
|
+
// Replace the reduce source prefix with returnValue
|
|
2252
|
+
effectiveSubPath =
|
|
2253
|
+
'returnValue' + subPath.substring(reduceSourceVar!.length);
|
|
2254
|
+
}
|
|
2255
|
+
const subPropertyPath = effectiveSubPath.substring(
|
|
2256
|
+
'returnValue'.length,
|
|
2257
|
+
);
|
|
2258
|
+
const newPath = cleanPath(path + subPropertyPath, allPaths);
|
|
2259
|
+
let newEquivalentValue = cleanPath(
|
|
2260
|
+
subValue.replace(/::cyDuplicateKey\d+::/g, ''),
|
|
2261
|
+
allPaths,
|
|
2262
|
+
);
|
|
2158
2263
|
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2264
|
+
// Resolve variable references through parent scope equivalencies
|
|
2265
|
+
const resolved = this.resolveVariableThroughParentScopes(
|
|
2266
|
+
newEquivalentValue,
|
|
2267
|
+
callbackScope,
|
|
2268
|
+
allPaths,
|
|
2269
|
+
);
|
|
2270
|
+
newEquivalentValue = resolved.resolvedPath;
|
|
2271
|
+
const equivalentScopeName = resolved.scopeName;
|
|
2167
2272
|
|
|
2168
|
-
|
|
2169
|
-
|
|
2273
|
+
if (!newEquivalentValue || !this.isValidPath(newEquivalentValue))
|
|
2274
|
+
continue;
|
|
2170
2275
|
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2276
|
+
this.addEquivalency(
|
|
2277
|
+
newPath,
|
|
2278
|
+
newEquivalentValue,
|
|
2279
|
+
equivalentScopeName,
|
|
2280
|
+
scopeNode,
|
|
2281
|
+
'propagated function call return sub-property equivalency',
|
|
2282
|
+
);
|
|
2178
2283
|
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2284
|
+
// Ensure the database entry has the usage path
|
|
2285
|
+
this.addUsageToEquivalencyDatabaseEntry(
|
|
2286
|
+
newPath,
|
|
2287
|
+
newEquivalentValue,
|
|
2288
|
+
equivalentScopeName,
|
|
2289
|
+
scopeNode.name,
|
|
2290
|
+
);
|
|
2291
|
+
}
|
|
2186
2292
|
}
|
|
2187
2293
|
}
|
|
2188
2294
|
|
|
@@ -2222,8 +2328,15 @@ export class ScopeDataStructure {
|
|
|
2222
2328
|
const parentScope = this.scopeNodes[parentScopeName];
|
|
2223
2329
|
if (!parentScope?.analysis?.isolatedEquivalentVariables) continue;
|
|
2224
2330
|
|
|
2225
|
-
const
|
|
2331
|
+
const rawRootEquiv =
|
|
2226
2332
|
parentScope.analysis.isolatedEquivalentVariables[rootVar];
|
|
2333
|
+
// Normalize to array and use first string value
|
|
2334
|
+
const rootEquivs = Array.isArray(rawRootEquiv)
|
|
2335
|
+
? rawRootEquiv
|
|
2336
|
+
: rawRootEquiv
|
|
2337
|
+
? [rawRootEquiv]
|
|
2338
|
+
: [];
|
|
2339
|
+
const rootEquiv = rootEquivs.find((r) => typeof r === 'string');
|
|
2227
2340
|
if (typeof rootEquiv === 'string') {
|
|
2228
2341
|
return {
|
|
2229
2342
|
resolvedPath: cleanPath(rootEquiv + restOfPath, allPaths),
|
|
@@ -2498,6 +2611,7 @@ export class ScopeDataStructure {
|
|
|
2498
2611
|
relevantSubPathParts.every((part, i) => part === schemaPathParts[i]) &&
|
|
2499
2612
|
equivalentValue.scopeNodeName === scopeNode.name
|
|
2500
2613
|
) {
|
|
2614
|
+
// DEBUG
|
|
2501
2615
|
continue;
|
|
2502
2616
|
}
|
|
2503
2617
|
|
|
@@ -2684,6 +2798,8 @@ export class ScopeDataStructure {
|
|
|
2684
2798
|
usageEquivalency.scopeNodeName,
|
|
2685
2799
|
) as ScopeNode;
|
|
2686
2800
|
|
|
2801
|
+
if (!usageScopeNode) continue;
|
|
2802
|
+
|
|
2687
2803
|
// Guard against infinite recursion by tracking which paths we've already
|
|
2688
2804
|
// added from addComplexSourcePathVariables
|
|
2689
2805
|
if (
|
|
@@ -2763,6 +2879,8 @@ export class ScopeDataStructure {
|
|
|
2763
2879
|
usageEquivalency.scopeNodeName,
|
|
2764
2880
|
) as ScopeNode;
|
|
2765
2881
|
|
|
2882
|
+
if (!usageScopeNode) continue;
|
|
2883
|
+
|
|
2766
2884
|
// This is put in place to avoid propagating array functions like 'filter' through complex equivalencies
|
|
2767
2885
|
// but may cause problems if the funtion call is not on a known object (e.g. string or array)
|
|
2768
2886
|
if (
|
|
@@ -2889,10 +3007,105 @@ export class ScopeDataStructure {
|
|
|
2889
3007
|
this.intermediatesOrderIndex.set(pathId, databaseEntry);
|
|
2890
3008
|
|
|
2891
3009
|
if (intermediateIndex === 0) {
|
|
2892
|
-
|
|
3010
|
+
let isValidSourceCandidate =
|
|
2893
3011
|
pathInfo.schemaPath.startsWith('signature[') ||
|
|
2894
3012
|
pathInfo.schemaPath.includes('functionCallReturnValue');
|
|
2895
|
-
|
|
3013
|
+
|
|
3014
|
+
// Check if path STARTS with a spread pattern like [...var]
|
|
3015
|
+
// This handles cases like [...files][][0] or [...files].sort(...).functionCallReturnValue[][0]
|
|
3016
|
+
// where the spread source variable needs to be resolved to a signature path.
|
|
3017
|
+
// We do this REGARDLESS of isValidSourceCandidate because even paths containing
|
|
3018
|
+
// functionCallReturnValue may need spread resolution to trace back to the signature.
|
|
3019
|
+
const spreadMatch = pathInfo.schemaPath.match(/^\[\.\.\.(\w+)\]/);
|
|
3020
|
+
if (spreadMatch) {
|
|
3021
|
+
const spreadVar = spreadMatch[1];
|
|
3022
|
+
const spreadPattern = spreadMatch[0]; // The full [...var] match
|
|
3023
|
+
const scopeNode = this.scopeNodes[pathInfo.scopeNodeName];
|
|
3024
|
+
|
|
3025
|
+
if (scopeNode?.equivalencies) {
|
|
3026
|
+
// Follow the equivalency chain to find a signature path
|
|
3027
|
+
// e.g., files (cyScope1) → files (root) → signature[0].files
|
|
3028
|
+
const resolveToSignature = (
|
|
3029
|
+
varName: string,
|
|
3030
|
+
currentScopeName: string,
|
|
3031
|
+
visited: Set<string>,
|
|
3032
|
+
): { schemaPath: string; scopeNodeName: string } | null => {
|
|
3033
|
+
const visitKey = `${currentScopeName}::${varName}`;
|
|
3034
|
+
if (visited.has(visitKey)) return null;
|
|
3035
|
+
visited.add(visitKey);
|
|
3036
|
+
|
|
3037
|
+
const currentScope = this.scopeNodes[currentScopeName];
|
|
3038
|
+
if (!currentScope?.equivalencies) return null;
|
|
3039
|
+
|
|
3040
|
+
const varEquivs = currentScope.equivalencies[varName];
|
|
3041
|
+
if (!varEquivs) return null;
|
|
3042
|
+
|
|
3043
|
+
// First check if any equivalency directly points to a signature path
|
|
3044
|
+
const signatureEquiv = varEquivs.find((eq) =>
|
|
3045
|
+
eq.schemaPath.startsWith('signature['),
|
|
3046
|
+
);
|
|
3047
|
+
if (signatureEquiv) {
|
|
3048
|
+
return signatureEquiv;
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
// Otherwise, follow the chain to other scopes
|
|
3052
|
+
for (const equiv of varEquivs) {
|
|
3053
|
+
// If the equivalency points to the same variable in a different scope,
|
|
3054
|
+
// follow the chain
|
|
3055
|
+
if (
|
|
3056
|
+
equiv.schemaPath === varName &&
|
|
3057
|
+
equiv.scopeNodeName !== currentScopeName
|
|
3058
|
+
) {
|
|
3059
|
+
const result = resolveToSignature(
|
|
3060
|
+
varName,
|
|
3061
|
+
equiv.scopeNodeName,
|
|
3062
|
+
visited,
|
|
3063
|
+
);
|
|
3064
|
+
if (result) return result;
|
|
3065
|
+
}
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3068
|
+
return null;
|
|
3069
|
+
};
|
|
3070
|
+
|
|
3071
|
+
const signatureEquiv = resolveToSignature(
|
|
3072
|
+
spreadVar,
|
|
3073
|
+
pathInfo.scopeNodeName,
|
|
3074
|
+
new Set(),
|
|
3075
|
+
);
|
|
3076
|
+
if (signatureEquiv) {
|
|
3077
|
+
// Replace ONLY the [...var] part with the resolved signature path
|
|
3078
|
+
// This preserves any suffix like .sort(...).functionCallReturnValue[][0]
|
|
3079
|
+
const resolvedPath = pathInfo.schemaPath.replace(
|
|
3080
|
+
spreadPattern,
|
|
3081
|
+
signatureEquiv.schemaPath,
|
|
3082
|
+
);
|
|
3083
|
+
// Add the resolved path as a source candidate
|
|
3084
|
+
if (
|
|
3085
|
+
!databaseEntry.sourceCandidates.some(
|
|
3086
|
+
(sc) =>
|
|
3087
|
+
sc.schemaPath === resolvedPath &&
|
|
3088
|
+
sc.scopeNodeName === pathInfo.scopeNodeName,
|
|
3089
|
+
)
|
|
3090
|
+
) {
|
|
3091
|
+
databaseEntry.sourceCandidates.push({
|
|
3092
|
+
scopeNodeName: pathInfo.scopeNodeName,
|
|
3093
|
+
schemaPath: resolvedPath,
|
|
3094
|
+
});
|
|
3095
|
+
}
|
|
3096
|
+
isValidSourceCandidate = true;
|
|
3097
|
+
}
|
|
3098
|
+
}
|
|
3099
|
+
}
|
|
3100
|
+
|
|
3101
|
+
if (
|
|
3102
|
+
isValidSourceCandidate &&
|
|
3103
|
+
!databaseEntry.sourceCandidates.some(
|
|
3104
|
+
(sc) =>
|
|
3105
|
+
sc.schemaPath === pathInfo.schemaPath &&
|
|
3106
|
+
sc.scopeNodeName === pathInfo.scopeNodeName,
|
|
3107
|
+
)
|
|
3108
|
+
) {
|
|
2896
3109
|
databaseEntry.sourceCandidates.push(pathInfo);
|
|
2897
3110
|
}
|
|
2898
3111
|
} else {
|
|
@@ -3120,6 +3333,14 @@ export class ScopeDataStructure {
|
|
|
3120
3333
|
}
|
|
3121
3334
|
}
|
|
3122
3335
|
|
|
3336
|
+
// Ensure parameter-to-signature equivalencies are fully propagated.
|
|
3337
|
+
// When a parameter variable (e.g., `node`) is equivalenced to `signature[N]`,
|
|
3338
|
+
// all sub-paths of that variable should also appear under `signature[N]`.
|
|
3339
|
+
// This handles cases where the sub-path was added to the schema via a propagation
|
|
3340
|
+
// chain that already included the variable↔signature equivalency, causing the
|
|
3341
|
+
// cycle detection to prevent the reverse mapping.
|
|
3342
|
+
this.propagateParameterToSignaturePaths(scopeNode);
|
|
3343
|
+
|
|
3123
3344
|
fillInSchemaGapsAndUnknowns(scopeNode, fillInUnknowns);
|
|
3124
3345
|
|
|
3125
3346
|
if (final) {
|
|
@@ -3134,6 +3355,50 @@ export class ScopeDataStructure {
|
|
|
3134
3355
|
}
|
|
3135
3356
|
}
|
|
3136
3357
|
|
|
3358
|
+
/**
|
|
3359
|
+
* For each equivalency where a simple variable maps to signature[N],
|
|
3360
|
+
* ensure all sub-paths of that variable are reflected under signature[N].
|
|
3361
|
+
*/
|
|
3362
|
+
private propagateParameterToSignaturePaths(scopeNode: ScopeNode) {
|
|
3363
|
+
// Find variable → signature[N] equivalencies
|
|
3364
|
+
for (const [varName, equivalencies] of Object.entries(
|
|
3365
|
+
scopeNode.equivalencies,
|
|
3366
|
+
)) {
|
|
3367
|
+
// Only process simple variable names (no dots, brackets, or parens)
|
|
3368
|
+
if (
|
|
3369
|
+
varName.includes('.') ||
|
|
3370
|
+
varName.includes('[') ||
|
|
3371
|
+
varName.includes('(')
|
|
3372
|
+
) {
|
|
3373
|
+
continue;
|
|
3374
|
+
}
|
|
3375
|
+
|
|
3376
|
+
for (const equiv of equivalencies) {
|
|
3377
|
+
if (
|
|
3378
|
+
equiv.scopeNodeName === scopeNode.name &&
|
|
3379
|
+
equiv.schemaPath.startsWith('signature[')
|
|
3380
|
+
) {
|
|
3381
|
+
const signaturePath = equiv.schemaPath;
|
|
3382
|
+
const varPrefix = varName + '.';
|
|
3383
|
+
const varBracketPrefix = varName + '[';
|
|
3384
|
+
|
|
3385
|
+
// Find all schema keys starting with the variable
|
|
3386
|
+
for (const key in scopeNode.schema) {
|
|
3387
|
+
if (key.startsWith(varPrefix) || key.startsWith(varBracketPrefix)) {
|
|
3388
|
+
const suffix = key.slice(varName.length);
|
|
3389
|
+
const sigKey = signaturePath + suffix;
|
|
3390
|
+
|
|
3391
|
+
// Only add if the signature path doesn't already exist
|
|
3392
|
+
if (!scopeNode.schema[sigKey]) {
|
|
3393
|
+
scopeNode.schema[sigKey] = scopeNode.schema[key];
|
|
3394
|
+
}
|
|
3395
|
+
}
|
|
3396
|
+
}
|
|
3397
|
+
}
|
|
3398
|
+
}
|
|
3399
|
+
}
|
|
3400
|
+
}
|
|
3401
|
+
|
|
3137
3402
|
private filterAndConvertSchema({
|
|
3138
3403
|
filterPath,
|
|
3139
3404
|
newPath,
|
|
@@ -3220,6 +3485,9 @@ export class ScopeDataStructure {
|
|
|
3220
3485
|
equivalentValueSchemaPathParts.length,
|
|
3221
3486
|
),
|
|
3222
3487
|
]);
|
|
3488
|
+
// PERF: Skip keys with repeated function-call signature patterns
|
|
3489
|
+
// to prevent recursive type expansion (e.g., string.localeCompare returns string)
|
|
3490
|
+
if (this.hasExcessivePatternRepetition(newKey)) continue;
|
|
3223
3491
|
resolvedSchema[newKey] = value;
|
|
3224
3492
|
}
|
|
3225
3493
|
}
|
|
@@ -3242,6 +3510,8 @@ export class ScopeDataStructure {
|
|
|
3242
3510
|
if (!subSchema) continue;
|
|
3243
3511
|
|
|
3244
3512
|
for (const resolvedKey in subSchema) {
|
|
3513
|
+
// PERF: Skip keys with repeated function-call signature patterns
|
|
3514
|
+
if (this.hasExcessivePatternRepetition(resolvedKey)) continue;
|
|
3245
3515
|
if (
|
|
3246
3516
|
!resolvedSchema[resolvedKey] ||
|
|
3247
3517
|
subSchema[resolvedKey] === 'unknown'
|
|
@@ -3479,26 +3749,270 @@ export class ScopeDataStructure {
|
|
|
3479
3749
|
return {};
|
|
3480
3750
|
}
|
|
3481
3751
|
|
|
3752
|
+
// Collect all descendant scope names (including the scope itself)
|
|
3753
|
+
// This ensures we include external calls from nested scopes like cyScope2
|
|
3754
|
+
const getAllDescendantScopeNames = (
|
|
3755
|
+
node: import('./helpers/ScopeTreeManager').ScopeTreeNode,
|
|
3756
|
+
): Set<string> => {
|
|
3757
|
+
const names = new Set<string>([node.name]);
|
|
3758
|
+
for (const child of node.children) {
|
|
3759
|
+
for (const name of getAllDescendantScopeNames(child)) {
|
|
3760
|
+
names.add(name);
|
|
3761
|
+
}
|
|
3762
|
+
}
|
|
3763
|
+
return names;
|
|
3764
|
+
};
|
|
3765
|
+
|
|
3766
|
+
const treeNode = this.scopeTreeManager.findNode(scopeNode.name);
|
|
3767
|
+
const descendantScopeNames = treeNode
|
|
3768
|
+
? getAllDescendantScopeNames(treeNode)
|
|
3769
|
+
: new Set<string>([scopeNode.name]);
|
|
3770
|
+
|
|
3771
|
+
// Get all external function calls made from this scope or any descendant scope
|
|
3772
|
+
// This allows us to include prop equivalencies from JSX components
|
|
3773
|
+
// that were rendered in nested scopes (e.g., FileTableRow called from cyScope2)
|
|
3774
|
+
const externalCallsFromScope = this.externalFunctionCalls.filter((efc) =>
|
|
3775
|
+
descendantScopeNames.has(efc.callScope),
|
|
3776
|
+
);
|
|
3777
|
+
const externalCallNames = new Set(
|
|
3778
|
+
externalCallsFromScope.map((efc) => efc.name),
|
|
3779
|
+
);
|
|
3780
|
+
|
|
3781
|
+
// Helper to check if a usage belongs to this scope (directly, via descendant, or via external call)
|
|
3782
|
+
const usageMatchesScope = (usage: { scopeNodeName: string }) =>
|
|
3783
|
+
descendantScopeNames.has(usage.scopeNodeName) ||
|
|
3784
|
+
externalCallNames.has(usage.scopeNodeName);
|
|
3785
|
+
|
|
3482
3786
|
const entries = this.equivalencyDatabase.filter((entry) =>
|
|
3483
|
-
entry.usages.some(
|
|
3787
|
+
entry.usages.some(usageMatchesScope),
|
|
3484
3788
|
);
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3789
|
+
|
|
3790
|
+
// Helper to resolve a source candidate through equivalency chains to find signature paths
|
|
3791
|
+
const resolveToSignature = (
|
|
3792
|
+
source: Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>,
|
|
3793
|
+
visited: Set<string>,
|
|
3794
|
+
): Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[] => {
|
|
3795
|
+
const visitKey = `${source.scopeNodeName}::${source.schemaPath}`;
|
|
3796
|
+
if (visited.has(visitKey)) return [];
|
|
3797
|
+
visited.add(visitKey);
|
|
3798
|
+
|
|
3799
|
+
// If already a signature path, return as-is
|
|
3800
|
+
if (source.schemaPath.startsWith('signature[')) {
|
|
3801
|
+
return [source];
|
|
3802
|
+
}
|
|
3803
|
+
|
|
3804
|
+
const currentScope = this.scopeNodes[source.scopeNodeName];
|
|
3805
|
+
if (!currentScope?.equivalencies) return [source];
|
|
3806
|
+
|
|
3807
|
+
// Check for direct equivalencies FIRST (full path match)
|
|
3808
|
+
// This ensures paths like "useMemo(...).functionCallReturnValue" follow to "cyScope1::returnValue"
|
|
3809
|
+
// before prefix matching tries "useMemo(...)" which goes to the useMemo scope
|
|
3810
|
+
const directEquivs = currentScope.equivalencies[source.schemaPath];
|
|
3811
|
+
if (directEquivs?.length > 0) {
|
|
3812
|
+
const results: Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[] =
|
|
3813
|
+
[];
|
|
3814
|
+
for (const equiv of directEquivs) {
|
|
3815
|
+
const resolved = resolveToSignature(
|
|
3816
|
+
{
|
|
3817
|
+
scopeNodeName: equiv.scopeNodeName,
|
|
3818
|
+
schemaPath: equiv.schemaPath,
|
|
3819
|
+
},
|
|
3820
|
+
visited,
|
|
3821
|
+
);
|
|
3822
|
+
results.push(...resolved);
|
|
3823
|
+
}
|
|
3824
|
+
if (results.length > 0) return results;
|
|
3825
|
+
}
|
|
3826
|
+
|
|
3827
|
+
// Handle spread patterns like [...items].sort().functionCallReturnValue
|
|
3828
|
+
// Extract the spread variable and resolve it through the equivalency chain
|
|
3829
|
+
const spreadMatch = source.schemaPath.match(/^\[\.\.\.(\w+)\]/);
|
|
3830
|
+
if (spreadMatch) {
|
|
3831
|
+
const spreadVar = spreadMatch[1];
|
|
3832
|
+
const spreadPattern = spreadMatch[0];
|
|
3833
|
+
const varEquivs = currentScope.equivalencies[spreadVar];
|
|
3834
|
+
|
|
3835
|
+
if (varEquivs?.length > 0) {
|
|
3836
|
+
const results: Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[] =
|
|
3837
|
+
[];
|
|
3838
|
+
for (const equiv of varEquivs) {
|
|
3839
|
+
// Follow the variable equivalency and then resolve from there
|
|
3840
|
+
const resolvedVar = resolveToSignature(
|
|
3841
|
+
{
|
|
3842
|
+
scopeNodeName: equiv.scopeNodeName,
|
|
3843
|
+
schemaPath: equiv.schemaPath,
|
|
3844
|
+
},
|
|
3845
|
+
visited,
|
|
3846
|
+
);
|
|
3847
|
+
// For each resolved variable path, create the full path with array element suffix
|
|
3848
|
+
for (const rv of resolvedVar) {
|
|
3849
|
+
if (rv.schemaPath.startsWith('signature[')) {
|
|
3850
|
+
// Get the suffix after the spread pattern
|
|
3851
|
+
let suffix = source.schemaPath.slice(spreadPattern.length);
|
|
3852
|
+
|
|
3853
|
+
// Clean the suffix: strip array method chains like .sort(...).functionCallReturnValue[]
|
|
3854
|
+
// These don't change the data identity, just transform it.
|
|
3855
|
+
// Keep only the final element access parts like [0], [1], etc.
|
|
3856
|
+
// Pattern: strip everything from a method call up through functionCallReturnValue[]
|
|
3857
|
+
suffix = suffix.replace(
|
|
3858
|
+
/\.\w+\([^)]*\)\.functionCallReturnValue\[\]/g,
|
|
3859
|
+
'',
|
|
3860
|
+
);
|
|
3861
|
+
// Also handle simpler case without nested parens
|
|
3862
|
+
suffix = suffix.replace(
|
|
3863
|
+
/\.sort\(\w*\(\)\)\.functionCallReturnValue\[\]/g,
|
|
3864
|
+
'',
|
|
3865
|
+
);
|
|
3866
|
+
|
|
3867
|
+
// Add [] to indicate array element access from the spread
|
|
3868
|
+
const resolvedPath = rv.schemaPath + '[]' + suffix;
|
|
3869
|
+
results.push({
|
|
3870
|
+
scopeNodeName: rv.scopeNodeName,
|
|
3871
|
+
schemaPath: resolvedPath,
|
|
3872
|
+
});
|
|
3873
|
+
}
|
|
3874
|
+
}
|
|
3875
|
+
}
|
|
3876
|
+
if (results.length > 0) return results;
|
|
3877
|
+
}
|
|
3878
|
+
}
|
|
3879
|
+
|
|
3880
|
+
// Try to find prefix equivalencies that can resolve this path
|
|
3881
|
+
// For path like "cyScope3().signature[0][0]", check "cyScope3().signature[0]", etc.
|
|
3882
|
+
const pathParts = this.splitPath(source.schemaPath);
|
|
3883
|
+
for (let i = pathParts.length - 1; i > 0; i--) {
|
|
3884
|
+
const prefix = this.joinPathParts(pathParts.slice(0, i));
|
|
3885
|
+
const suffix = this.joinPathParts(pathParts.slice(i));
|
|
3886
|
+
const prefixEquivs = currentScope.equivalencies[prefix];
|
|
3887
|
+
|
|
3888
|
+
if (prefixEquivs?.length > 0) {
|
|
3889
|
+
const results: Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[] =
|
|
3890
|
+
[];
|
|
3891
|
+
for (const equiv of prefixEquivs) {
|
|
3892
|
+
const newPath = this.joinPathParts([equiv.schemaPath, suffix]);
|
|
3893
|
+
const resolved = resolveToSignature(
|
|
3894
|
+
{ scopeNodeName: equiv.scopeNodeName, schemaPath: newPath },
|
|
3895
|
+
visited,
|
|
3896
|
+
);
|
|
3897
|
+
results.push(...resolved);
|
|
3898
|
+
}
|
|
3899
|
+
if (results.length > 0) return results;
|
|
3900
|
+
}
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
return [source];
|
|
3904
|
+
};
|
|
3905
|
+
|
|
3906
|
+
const acc = entries.reduce(
|
|
3907
|
+
(result, entry) => {
|
|
3908
|
+
if (entry.sourceCandidates.length === 0) return result;
|
|
3909
|
+
const usages = entry.usages.filter(usageMatchesScope);
|
|
3491
3910
|
for (const usage of usages) {
|
|
3492
|
-
|
|
3493
|
-
|
|
3911
|
+
result[usage.schemaPath] ||= [];
|
|
3912
|
+
// Resolve each source candidate through the equivalency chain
|
|
3913
|
+
for (const source of entry.sourceCandidates) {
|
|
3914
|
+
const resolvedSources = resolveToSignature(source, new Set());
|
|
3915
|
+
result[usage.schemaPath].push(...resolvedSources);
|
|
3916
|
+
}
|
|
3494
3917
|
}
|
|
3495
|
-
return
|
|
3918
|
+
return result;
|
|
3496
3919
|
},
|
|
3497
3920
|
{} as Record<
|
|
3498
3921
|
string,
|
|
3499
3922
|
Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[]
|
|
3500
3923
|
>,
|
|
3501
3924
|
);
|
|
3925
|
+
|
|
3926
|
+
// Post-processing: enrich useState-backed sources with co-located external
|
|
3927
|
+
// function calls. When a useState value resolves to a setter variable that
|
|
3928
|
+
// lives in the same scope as a fetch/API call, that fetch is a data source.
|
|
3929
|
+
this.enrichUseStateSourcesWithCoLocatedCalls(acc);
|
|
3930
|
+
|
|
3931
|
+
return acc;
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
/**
|
|
3935
|
+
* For each source that ends at a useState path, check if the setter was called
|
|
3936
|
+
* from a scope that also contains external function calls (like fetch).
|
|
3937
|
+
* If so, add those external calls as additional source candidates.
|
|
3938
|
+
*/
|
|
3939
|
+
private enrichUseStateSourcesWithCoLocatedCalls(
|
|
3940
|
+
acc: Record<string, Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[]>,
|
|
3941
|
+
) {
|
|
3942
|
+
const rootScopeName = this.scopeTreeManager.getRootName();
|
|
3943
|
+
const rootScope = this.scopeNodes[rootScopeName];
|
|
3944
|
+
if (!rootScope) return;
|
|
3945
|
+
|
|
3946
|
+
// Collect all descendants for each scope node
|
|
3947
|
+
const getAllDescendants = (
|
|
3948
|
+
node: import('./helpers/ScopeTreeManager').ScopeTreeNode,
|
|
3949
|
+
): Set<string> => {
|
|
3950
|
+
const names = new Set<string>([node.name]);
|
|
3951
|
+
for (const child of node.children) {
|
|
3952
|
+
for (const name of getAllDescendants(child)) {
|
|
3953
|
+
names.add(name);
|
|
3954
|
+
}
|
|
3955
|
+
}
|
|
3956
|
+
return names;
|
|
3957
|
+
};
|
|
3958
|
+
|
|
3959
|
+
for (const [usagePath, sources] of Object.entries(acc)) {
|
|
3960
|
+
const additionalSources: Pick<
|
|
3961
|
+
ScopeVariable,
|
|
3962
|
+
'scopeNodeName' | 'schemaPath'
|
|
3963
|
+
>[] = [];
|
|
3964
|
+
|
|
3965
|
+
for (const source of sources) {
|
|
3966
|
+
// Check if this source is a useState-related terminal path
|
|
3967
|
+
// (e.g., useState(X).functionCallReturnValue[1] or useState(X).signature[0])
|
|
3968
|
+
if (!source.schemaPath.match(/^useState\([^)]*\)\./)) continue;
|
|
3969
|
+
|
|
3970
|
+
// Find the useState call from the source path
|
|
3971
|
+
const useStateCallMatch = source.schemaPath.match(
|
|
3972
|
+
/^(useState\([^)]*\))\./,
|
|
3973
|
+
);
|
|
3974
|
+
if (!useStateCallMatch) continue;
|
|
3975
|
+
const useStateCall = useStateCallMatch[1];
|
|
3976
|
+
|
|
3977
|
+
// Look in the root scope for the useState value equivalency
|
|
3978
|
+
// which tells us where the setter was called from
|
|
3979
|
+
const valuePath = `${useStateCall}.functionCallReturnValue[0]`;
|
|
3980
|
+
const valueEquivs = rootScope.equivalencies[valuePath];
|
|
3981
|
+
if (!valueEquivs) continue;
|
|
3982
|
+
|
|
3983
|
+
for (const equiv of valueEquivs) {
|
|
3984
|
+
// Find the scope where the setter was called
|
|
3985
|
+
const setterScopeName = equiv.scopeNodeName;
|
|
3986
|
+
const setterScopeTree =
|
|
3987
|
+
this.scopeTreeManager.findNode(setterScopeName);
|
|
3988
|
+
if (!setterScopeTree) continue;
|
|
3989
|
+
|
|
3990
|
+
// Get all descendant scope names from the setter scope
|
|
3991
|
+
const relatedScopes = getAllDescendants(setterScopeTree);
|
|
3992
|
+
|
|
3993
|
+
// Find external function calls in those scopes whose return values
|
|
3994
|
+
// are actually consumed (assigned to a variable). This excludes
|
|
3995
|
+
// fire-and-forget calls like analytics.track() or console.log().
|
|
3996
|
+
const coLocatedCalls = this.externalFunctionCalls.filter(
|
|
3997
|
+
(efc) =>
|
|
3998
|
+
relatedScopes.has(efc.callScope) &&
|
|
3999
|
+
efc.receivingVariableNames &&
|
|
4000
|
+
efc.receivingVariableNames.length > 0,
|
|
4001
|
+
);
|
|
4002
|
+
|
|
4003
|
+
for (const call of coLocatedCalls) {
|
|
4004
|
+
additionalSources.push({
|
|
4005
|
+
scopeNodeName: call.callScope,
|
|
4006
|
+
schemaPath: `${call.callSignature}.functionCallReturnValue`,
|
|
4007
|
+
});
|
|
4008
|
+
}
|
|
4009
|
+
}
|
|
4010
|
+
}
|
|
4011
|
+
|
|
4012
|
+
if (additionalSources.length > 0) {
|
|
4013
|
+
acc[usagePath].push(...additionalSources);
|
|
4014
|
+
}
|
|
4015
|
+
}
|
|
3502
4016
|
}
|
|
3503
4017
|
|
|
3504
4018
|
getUsageEquivalencies(functionName?: string) {
|
|
@@ -3603,6 +4117,54 @@ export class ScopeDataStructure {
|
|
|
3603
4117
|
}
|
|
3604
4118
|
}
|
|
3605
4119
|
|
|
4120
|
+
// Enrich schema with deeply nested paths from internal function call scopes.
|
|
4121
|
+
// When a function call like traverse(tree) exists, and traverse's scope has
|
|
4122
|
+
// signature[0].children[path][entityName] (from propagateParameterToSignaturePaths),
|
|
4123
|
+
// we need to map those paths back to the argument variable (tree) in this scope.
|
|
4124
|
+
// This handles cases where cycle detection prevented the equivalency chain from
|
|
4125
|
+
// propagating deep paths during Phase 2 batch queue processing.
|
|
4126
|
+
for (const equivalenceKey in equivalencies ?? {}) {
|
|
4127
|
+
// Look for keys matching function call pattern: funcName(...).signature[N]
|
|
4128
|
+
const funcCallMatch = equivalenceKey.match(
|
|
4129
|
+
/^([^(]+)\(.*?\)\.(signature\[\d+\])$/,
|
|
4130
|
+
);
|
|
4131
|
+
if (!funcCallMatch) continue;
|
|
4132
|
+
|
|
4133
|
+
const calledFunctionName = funcCallMatch[1];
|
|
4134
|
+
const signatureParam = funcCallMatch[2]; // e.g., "signature[0]"
|
|
4135
|
+
|
|
4136
|
+
for (const equivalenceValue of equivalencies[equivalenceKey]) {
|
|
4137
|
+
if (equivalenceValue.scopeNodeName !== scopeName) continue;
|
|
4138
|
+
|
|
4139
|
+
const targetVariable = equivalenceValue.schemaPath;
|
|
4140
|
+
|
|
4141
|
+
// Get the called function's schema (includes propagated parameter paths)
|
|
4142
|
+
const childSchema = this.getSchema({
|
|
4143
|
+
scopeName: calledFunctionName,
|
|
4144
|
+
});
|
|
4145
|
+
if (!childSchema) continue;
|
|
4146
|
+
|
|
4147
|
+
// Map child function's signature paths to parent variable paths
|
|
4148
|
+
const sigPrefix = signatureParam + '.';
|
|
4149
|
+
const sigBracketPrefix = signatureParam + '[';
|
|
4150
|
+
for (const childKey in childSchema) {
|
|
4151
|
+
let suffix: string | null = null;
|
|
4152
|
+
if (childKey.startsWith(sigPrefix)) {
|
|
4153
|
+
suffix = childKey.slice(signatureParam.length);
|
|
4154
|
+
} else if (childKey.startsWith(sigBracketPrefix)) {
|
|
4155
|
+
suffix = childKey.slice(signatureParam.length);
|
|
4156
|
+
}
|
|
4157
|
+
|
|
4158
|
+
if (suffix !== null) {
|
|
4159
|
+
const parentKey = targetVariable + suffix;
|
|
4160
|
+
if (!schema[parentKey]) {
|
|
4161
|
+
schema[parentKey] = childSchema[childKey];
|
|
4162
|
+
}
|
|
4163
|
+
}
|
|
4164
|
+
}
|
|
4165
|
+
}
|
|
4166
|
+
}
|
|
4167
|
+
|
|
3606
4168
|
// Propagate nested paths from variables to their signature equivalents
|
|
3607
4169
|
// e.g., if workouts = signature[0].workouts, then workouts[].title becomes
|
|
3608
4170
|
// signature[0].workouts[].title
|
|
@@ -3875,10 +4437,32 @@ export class ScopeDataStructure {
|
|
|
3875
4437
|
return scopeText;
|
|
3876
4438
|
}
|
|
3877
4439
|
|
|
3878
|
-
getEquivalentSignatureVariables() {
|
|
4440
|
+
getEquivalentSignatureVariables(): Record<string, string | string[]> {
|
|
3879
4441
|
const scopeNode = this.scopeNodes[this.scopeTreeManager.getRootName()];
|
|
3880
4442
|
|
|
3881
|
-
const equivalentSignatureVariables: Record<string, string> = {};
|
|
4443
|
+
const equivalentSignatureVariables: Record<string, string | string[]> = {};
|
|
4444
|
+
|
|
4445
|
+
// Helper to add equivalencies - accumulates into array if multiple values for same key
|
|
4446
|
+
// This is critical for OR expressions like `x = a || b` where x should map to both a and b
|
|
4447
|
+
const addEquivalency = (key: string, value: string) => {
|
|
4448
|
+
const existing = equivalentSignatureVariables[key];
|
|
4449
|
+
if (existing === undefined) {
|
|
4450
|
+
// First value - store as string
|
|
4451
|
+
equivalentSignatureVariables[key] = value;
|
|
4452
|
+
} else if (typeof existing === 'string') {
|
|
4453
|
+
if (existing !== value) {
|
|
4454
|
+
// Second different value - convert to array
|
|
4455
|
+
equivalentSignatureVariables[key] = [existing, value];
|
|
4456
|
+
}
|
|
4457
|
+
// Same value - no change needed
|
|
4458
|
+
} else {
|
|
4459
|
+
// Already an array - add if not already present
|
|
4460
|
+
if (!existing.includes(value)) {
|
|
4461
|
+
existing.push(value);
|
|
4462
|
+
}
|
|
4463
|
+
}
|
|
4464
|
+
};
|
|
4465
|
+
|
|
3882
4466
|
for (const [path, equivalentValues] of Object.entries(
|
|
3883
4467
|
scopeNode.equivalencies,
|
|
3884
4468
|
)) {
|
|
@@ -3887,7 +4471,7 @@ export class ScopeDataStructure {
|
|
|
3887
4471
|
// Maps local variable names to their signature paths
|
|
3888
4472
|
// e.g., "propValue" -> "signature[0].prop"
|
|
3889
4473
|
if (path.startsWith('signature[')) {
|
|
3890
|
-
|
|
4474
|
+
addEquivalency(equivalentValue.schemaPath, path);
|
|
3891
4475
|
}
|
|
3892
4476
|
|
|
3893
4477
|
// Case 2: Hook variable equivalencies (new behavior)
|
|
@@ -3921,7 +4505,7 @@ export class ScopeDataStructure {
|
|
|
3921
4505
|
hookCallPath = dbEntry.sourceCandidates[0].schemaPath;
|
|
3922
4506
|
}
|
|
3923
4507
|
}
|
|
3924
|
-
|
|
4508
|
+
addEquivalency(path, hookCallPath);
|
|
3925
4509
|
}
|
|
3926
4510
|
}
|
|
3927
4511
|
|
|
@@ -3935,10 +4519,17 @@ export class ScopeDataStructure {
|
|
|
3935
4519
|
!equivalentValue.schemaPath.startsWith('signature[') && // not a signature path
|
|
3936
4520
|
!equivalentValue.schemaPath.endsWith('.functionCallReturnValue') // not already handled above
|
|
3937
4521
|
) {
|
|
3938
|
-
//
|
|
3939
|
-
|
|
3940
|
-
|
|
4522
|
+
// Skip bare "returnValue" from child scopes — this is the child's return value,
|
|
4523
|
+
// not a meaningful data source path in the parent scope
|
|
4524
|
+
if (
|
|
4525
|
+
equivalentValue.schemaPath === 'returnValue' &&
|
|
4526
|
+
equivalentValue.scopeNodeName !==
|
|
4527
|
+
this.scopeTreeManager.getRootName()
|
|
4528
|
+
) {
|
|
4529
|
+
continue;
|
|
3941
4530
|
}
|
|
4531
|
+
// Add equivalency (will accumulate if multiple values for OR expressions)
|
|
4532
|
+
addEquivalency(path, equivalentValue.schemaPath);
|
|
3942
4533
|
}
|
|
3943
4534
|
|
|
3944
4535
|
// Case 4: Child component prop mappings (Fix 22)
|
|
@@ -3951,7 +4542,7 @@ export class ScopeDataStructure {
|
|
|
3951
4542
|
path.includes('().signature[') &&
|
|
3952
4543
|
!equivalentValue.schemaPath.includes('()') // schemaPath is a simple variable, not a function call
|
|
3953
4544
|
) {
|
|
3954
|
-
|
|
4545
|
+
addEquivalency(path, equivalentValue.schemaPath);
|
|
3955
4546
|
}
|
|
3956
4547
|
|
|
3957
4548
|
// Case 5: Destructured function parameters (Fix 25)
|
|
@@ -3966,7 +4557,7 @@ export class ScopeDataStructure {
|
|
|
3966
4557
|
!path.includes('.') && // path is a simple identifier (destructured prop name)
|
|
3967
4558
|
equivalentValue.schemaPath.startsWith('signature[') // schemaPath IS a signature path
|
|
3968
4559
|
) {
|
|
3969
|
-
|
|
4560
|
+
addEquivalency(path, equivalentValue.schemaPath);
|
|
3970
4561
|
}
|
|
3971
4562
|
|
|
3972
4563
|
// Case 7: Method calls on variables that result in .functionCallReturnValue (Fix 33)
|
|
@@ -3980,8 +4571,7 @@ export class ScopeDataStructure {
|
|
|
3980
4571
|
if (
|
|
3981
4572
|
!path.includes('.') && // path is a simple identifier
|
|
3982
4573
|
equivalentValue.schemaPath.endsWith('.functionCallReturnValue') && // ends with function return
|
|
3983
|
-
equivalentValue.schemaPath.includes('.')
|
|
3984
|
-
!(path in equivalentSignatureVariables) // not already captured
|
|
4574
|
+
equivalentValue.schemaPath.includes('.') // has property access (method call)
|
|
3985
4575
|
) {
|
|
3986
4576
|
// Check if this looks like a method call on a variable (not a hook call)
|
|
3987
4577
|
// Hook calls look like: hookName() or hookName<T>()
|
|
@@ -3995,7 +4585,7 @@ export class ScopeDataStructure {
|
|
|
3995
4585
|
const parenPos = hookCallPath.indexOf('(');
|
|
3996
4586
|
if (dotBeforeParen !== -1 && dotBeforeParen < parenPos) {
|
|
3997
4587
|
// This is a method call like "splat.split('/')", not a hook call
|
|
3998
|
-
|
|
4588
|
+
addEquivalency(path, equivalentValue.schemaPath);
|
|
3999
4589
|
}
|
|
4000
4590
|
}
|
|
4001
4591
|
}
|
|
@@ -4026,8 +4616,9 @@ export class ScopeDataStructure {
|
|
|
4026
4616
|
!equivalentValue.schemaPath.includes('()') // schemaPath is a simple variable
|
|
4027
4617
|
) {
|
|
4028
4618
|
// Only add if not already present from the root scope
|
|
4619
|
+
// Root scope values take precedence over child scope values
|
|
4029
4620
|
if (!(path in equivalentSignatureVariables)) {
|
|
4030
|
-
|
|
4621
|
+
addEquivalency(path, equivalentValue.schemaPath);
|
|
4031
4622
|
}
|
|
4032
4623
|
}
|
|
4033
4624
|
}
|
|
@@ -4039,12 +4630,83 @@ export class ScopeDataStructure {
|
|
|
4039
4630
|
// We need multiple passes because resolutions can depend on each other
|
|
4040
4631
|
const maxIterations = 5; // Prevent infinite loops
|
|
4041
4632
|
|
|
4633
|
+
// Helper function to resolve a single source path using equivalencies
|
|
4634
|
+
const resolveSourcePath = (
|
|
4635
|
+
sourcePath: string,
|
|
4636
|
+
equivMap: Record<string, string | string[]>,
|
|
4637
|
+
): string | null => {
|
|
4638
|
+
// Extract base variable from the path
|
|
4639
|
+
const dotIndex = sourcePath.indexOf('.');
|
|
4640
|
+
const bracketIndex = sourcePath.indexOf('[');
|
|
4641
|
+
|
|
4642
|
+
let baseVar: string;
|
|
4643
|
+
let rest: string;
|
|
4644
|
+
|
|
4645
|
+
if (dotIndex === -1 && bracketIndex === -1) {
|
|
4646
|
+
baseVar = sourcePath;
|
|
4647
|
+
rest = '';
|
|
4648
|
+
} else if (dotIndex === -1) {
|
|
4649
|
+
baseVar = sourcePath.slice(0, bracketIndex);
|
|
4650
|
+
rest = sourcePath.slice(bracketIndex);
|
|
4651
|
+
} else if (bracketIndex === -1) {
|
|
4652
|
+
baseVar = sourcePath.slice(0, dotIndex);
|
|
4653
|
+
rest = sourcePath.slice(dotIndex);
|
|
4654
|
+
} else {
|
|
4655
|
+
const firstIndex = Math.min(dotIndex, bracketIndex);
|
|
4656
|
+
baseVar = sourcePath.slice(0, firstIndex);
|
|
4657
|
+
rest = sourcePath.slice(firstIndex);
|
|
4658
|
+
}
|
|
4659
|
+
|
|
4660
|
+
// Look up the base variable in equivalencies
|
|
4661
|
+
if (baseVar in equivMap && equivMap[baseVar] !== sourcePath) {
|
|
4662
|
+
const baseResolved = equivMap[baseVar];
|
|
4663
|
+
// Skip if baseResolved is an array (handle later)
|
|
4664
|
+
if (Array.isArray(baseResolved)) return null;
|
|
4665
|
+
// If it resolves to a signature path, build the full resolved path
|
|
4666
|
+
if (
|
|
4667
|
+
baseResolved.startsWith('signature[') ||
|
|
4668
|
+
baseResolved.includes('()')
|
|
4669
|
+
) {
|
|
4670
|
+
if (baseResolved.endsWith('()')) {
|
|
4671
|
+
return baseResolved + '.functionCallReturnValue' + rest;
|
|
4672
|
+
}
|
|
4673
|
+
return baseResolved + rest;
|
|
4674
|
+
}
|
|
4675
|
+
}
|
|
4676
|
+
return null;
|
|
4677
|
+
};
|
|
4678
|
+
|
|
4042
4679
|
for (let iteration = 0; iteration < maxIterations; iteration++) {
|
|
4043
4680
|
let changed = false;
|
|
4044
4681
|
|
|
4045
|
-
for (const [varName,
|
|
4682
|
+
for (const [varName, sourcePathOrArray] of Object.entries(
|
|
4046
4683
|
equivalentSignatureVariables,
|
|
4047
4684
|
)) {
|
|
4685
|
+
// Handle arrays (OR expressions) by resolving each element
|
|
4686
|
+
if (Array.isArray(sourcePathOrArray)) {
|
|
4687
|
+
const resolvedArray: string[] = [];
|
|
4688
|
+
let arrayChanged = false;
|
|
4689
|
+
for (const sourcePath of sourcePathOrArray) {
|
|
4690
|
+
// Try to resolve this path using transitive resolution
|
|
4691
|
+
const resolved = resolveSourcePath(
|
|
4692
|
+
sourcePath,
|
|
4693
|
+
equivalentSignatureVariables,
|
|
4694
|
+
);
|
|
4695
|
+
if (resolved && resolved !== sourcePath) {
|
|
4696
|
+
resolvedArray.push(resolved);
|
|
4697
|
+
arrayChanged = true;
|
|
4698
|
+
} else {
|
|
4699
|
+
resolvedArray.push(sourcePath);
|
|
4700
|
+
}
|
|
4701
|
+
}
|
|
4702
|
+
if (arrayChanged) {
|
|
4703
|
+
equivalentSignatureVariables[varName] = resolvedArray;
|
|
4704
|
+
changed = true;
|
|
4705
|
+
}
|
|
4706
|
+
continue;
|
|
4707
|
+
}
|
|
4708
|
+
const sourcePath = sourcePathOrArray;
|
|
4709
|
+
|
|
4048
4710
|
// Skip if already fully resolved (contains function call syntax)
|
|
4049
4711
|
// BUT first check for computed value patterns that need resolution (Fix 28)
|
|
4050
4712
|
// AND method call patterns that need base variable resolution (Fix 33)
|
|
@@ -4106,6 +4768,8 @@ export class ScopeDataStructure {
|
|
|
4106
4768
|
baseVar !== varName
|
|
4107
4769
|
) {
|
|
4108
4770
|
const baseResolved = equivalentSignatureVariables[baseVar];
|
|
4771
|
+
// Skip if baseResolved is an array (OR expression)
|
|
4772
|
+
if (Array.isArray(baseResolved)) continue;
|
|
4109
4773
|
// Only resolve if the base resolved to something useful (contains () or .)
|
|
4110
4774
|
if (baseResolved.includes('()') || baseResolved.includes('.')) {
|
|
4111
4775
|
const newPath = baseResolved + rest;
|
|
@@ -4170,7 +4834,12 @@ export class ScopeDataStructure {
|
|
|
4170
4834
|
}
|
|
4171
4835
|
|
|
4172
4836
|
if (baseVar in equivalentSignatureVariables && baseVar !== varName) {
|
|
4173
|
-
|
|
4837
|
+
// Handle array case (OR expressions) - use first element
|
|
4838
|
+
const rawBaseResolved = equivalentSignatureVariables[baseVar];
|
|
4839
|
+
const baseResolved = Array.isArray(rawBaseResolved)
|
|
4840
|
+
? rawBaseResolved[0]
|
|
4841
|
+
: rawBaseResolved;
|
|
4842
|
+
if (!baseResolved) continue;
|
|
4174
4843
|
// If the base resolves to a hook call, add .functionCallReturnValue
|
|
4175
4844
|
if (baseResolved.endsWith('()')) {
|
|
4176
4845
|
const newPath = baseResolved + '.functionCallReturnValue' + rest;
|
|
@@ -4390,7 +5059,7 @@ export class ScopeDataStructure {
|
|
|
4390
5059
|
path: string;
|
|
4391
5060
|
conditionType: 'truthiness' | 'comparison' | 'switch';
|
|
4392
5061
|
comparedValues?: string[];
|
|
4393
|
-
location: 'if' | 'ternary' | 'logical-and' | 'switch';
|
|
5062
|
+
location: 'if' | 'ternary' | 'logical-and' | 'switch' | 'unconditional';
|
|
4394
5063
|
}>
|
|
4395
5064
|
>,
|
|
4396
5065
|
): void {
|
|
@@ -4555,6 +5224,10 @@ export class ScopeDataStructure {
|
|
|
4555
5224
|
getEnrichedConditionalUsages(): Record<string, EnrichedConditionalUsage[]> {
|
|
4556
5225
|
const enriched: Record<string, EnrichedConditionalUsage[]> = {};
|
|
4557
5226
|
|
|
5227
|
+
console.log(
|
|
5228
|
+
`[getEnrichedConditionalUsages] Processing ${Object.keys(this.rawConditionalUsages).length} conditional paths: [${Object.keys(this.rawConditionalUsages).join(', ')}]`,
|
|
5229
|
+
);
|
|
5230
|
+
|
|
4558
5231
|
for (const [path, usages] of Object.entries(this.rawConditionalUsages)) {
|
|
4559
5232
|
// Try to trace this path back to a data source
|
|
4560
5233
|
// First, try the root scope
|
|
@@ -4563,10 +5236,69 @@ export class ScopeDataStructure {
|
|
|
4563
5236
|
|
|
4564
5237
|
let sourceDataPath: string | undefined;
|
|
4565
5238
|
if (explanation.source) {
|
|
4566
|
-
|
|
4567
|
-
|
|
5239
|
+
const { scope, path: sourcePath } = explanation.source;
|
|
5240
|
+
|
|
5241
|
+
// Build initial path — avoid redundant prefix when path already contains the scope call
|
|
5242
|
+
let fullPath: string;
|
|
5243
|
+
if (sourcePath.startsWith(`${scope}(`)) {
|
|
5244
|
+
fullPath = sourcePath;
|
|
5245
|
+
} else {
|
|
5246
|
+
fullPath = `${scope}.${sourcePath}`;
|
|
5247
|
+
}
|
|
5248
|
+
|
|
5249
|
+
sourceDataPath = fullPath;
|
|
5250
|
+
console.log(
|
|
5251
|
+
`[getEnrichedConditionalUsages] "${path}" explainPath → scope="${scope}", sourcePath="${sourcePath}" → sourceDataPath="${sourceDataPath}"`,
|
|
5252
|
+
);
|
|
5253
|
+
} else {
|
|
5254
|
+
console.log(
|
|
5255
|
+
`[getEnrichedConditionalUsages] "${path}" explainPath → no source found`,
|
|
5256
|
+
);
|
|
4568
5257
|
}
|
|
4569
5258
|
|
|
5259
|
+
// If explainPath didn't find a useful external source (e.g., it traced to
|
|
5260
|
+
// useState or just to the component scope itself), check sourceEquivalencies
|
|
5261
|
+
// for an external function call source like a fetch call
|
|
5262
|
+
const hasExternalSource = sourceDataPath?.includes(
|
|
5263
|
+
'.functionCallReturnValue',
|
|
5264
|
+
);
|
|
5265
|
+
if (!hasExternalSource) {
|
|
5266
|
+
console.log(
|
|
5267
|
+
`[getEnrichedConditionalUsages] "${path}" no external source (sourceDataPath="${sourceDataPath}"), checking sourceEquivalencies fallback...`,
|
|
5268
|
+
);
|
|
5269
|
+
const sourceEquiv = this.getSourceEquivalencies();
|
|
5270
|
+
const returnValueKey = `returnValue.${path}`;
|
|
5271
|
+
const sources = sourceEquiv[returnValueKey];
|
|
5272
|
+
if (sources) {
|
|
5273
|
+
console.log(
|
|
5274
|
+
`[getEnrichedConditionalUsages] "${path}" sourceEquivalencies["${returnValueKey}"] has ${sources.length} sources: [${sources.map((s: { schemaPath: string }) => s.schemaPath).join(', ')}]`,
|
|
5275
|
+
);
|
|
5276
|
+
const externalSource = sources.find(
|
|
5277
|
+
(s: { schemaPath: string }) =>
|
|
5278
|
+
s.schemaPath.includes('.functionCallReturnValue') &&
|
|
5279
|
+
!s.schemaPath.startsWith('useState('),
|
|
5280
|
+
);
|
|
5281
|
+
if (externalSource) {
|
|
5282
|
+
console.log(
|
|
5283
|
+
`[getEnrichedConditionalUsages] "${path}" sourceEquivalencies fallback found external source: "${externalSource.schemaPath}"`,
|
|
5284
|
+
);
|
|
5285
|
+
sourceDataPath = externalSource.schemaPath;
|
|
5286
|
+
} else {
|
|
5287
|
+
console.log(
|
|
5288
|
+
`[getEnrichedConditionalUsages] "${path}" sourceEquivalencies fallback found no external function call source`,
|
|
5289
|
+
);
|
|
5290
|
+
}
|
|
5291
|
+
} else {
|
|
5292
|
+
console.log(
|
|
5293
|
+
`[getEnrichedConditionalUsages] "${path}" sourceEquivalencies["${returnValueKey}"] not found`,
|
|
5294
|
+
);
|
|
5295
|
+
}
|
|
5296
|
+
}
|
|
5297
|
+
|
|
5298
|
+
console.log(
|
|
5299
|
+
`[getEnrichedConditionalUsages] "${path}" FINAL sourceDataPath="${sourceDataPath ?? '(none)'}" (${usages.length} usages)`,
|
|
5300
|
+
);
|
|
5301
|
+
|
|
4570
5302
|
enriched[path] = usages.map((usage) => ({
|
|
4571
5303
|
...usage,
|
|
4572
5304
|
sourceDataPath,
|
|
@@ -4914,11 +5646,22 @@ export class ScopeDataStructure {
|
|
|
4914
5646
|
}
|
|
4915
5647
|
}
|
|
4916
5648
|
|
|
5649
|
+
// Enrich the schema with inferred types by applying fillInSchemaGapsAndUnknowns.
|
|
5650
|
+
// This ensures the serialized schema has the same type inference as getReturnValue().
|
|
5651
|
+
// Without this, evidence like "entities[].analyses: array" becomes "unknown".
|
|
5652
|
+
const enrichedSchema = { ...efc.schema };
|
|
5653
|
+
const tempScopeNode = {
|
|
5654
|
+
name: efc.name,
|
|
5655
|
+
schema: enrichedSchema,
|
|
5656
|
+
equivalencies: efc.equivalencies ?? {},
|
|
5657
|
+
};
|
|
5658
|
+
fillInSchemaGapsAndUnknowns(tempScopeNode, true);
|
|
5659
|
+
|
|
4917
5660
|
return {
|
|
4918
5661
|
name: efc.name,
|
|
4919
5662
|
callSignature: efc.callSignature,
|
|
4920
5663
|
callScope: efc.callScope,
|
|
4921
|
-
schema:
|
|
5664
|
+
schema: enrichedSchema,
|
|
4922
5665
|
equivalencies: efc.equivalencies
|
|
4923
5666
|
? Object.entries(efc.equivalencies).reduce(
|
|
4924
5667
|
(acc, [key, vars]) => {
|