@wyw-in-js/transform 1.1.0 → 2.0.0-alpha.1
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/esm/cache.js +433 -289
- package/esm/cache.js.map +1 -1
- package/esm/debug/fileReporter.js +171 -134
- package/esm/debug/fileReporter.js.map +1 -1
- package/esm/eval/broker.js +2275 -0
- package/esm/eval/broker.js.map +1 -0
- package/esm/eval/lru.js +36 -0
- package/esm/eval/lru.js.map +1 -0
- package/esm/eval/prepareModuleOnDemand.js +21 -0
- package/esm/eval/prepareModuleOnDemand.js.map +1 -0
- package/esm/eval/protocol.js +2 -0
- package/esm/eval/protocol.js.map +1 -0
- package/esm/eval/runner.js +1878 -0
- package/esm/eval/runner.js.map +1 -0
- package/esm/eval/serialize.js +333 -0
- package/esm/eval/serialize.js.map +1 -0
- package/esm/eval/writeQueue.js +81 -0
- package/esm/eval/writeQueue.js.map +1 -0
- package/esm/evaluators/index.js +11 -12
- package/esm/evaluators/index.js.map +1 -1
- package/esm/index.js +25 -29
- package/esm/index.js.map +1 -1
- package/esm/module.js +923 -520
- package/esm/module.js.map +1 -1
- package/esm/shaker.js +14 -80
- package/esm/shaker.js.map +1 -1
- package/esm/transform/BaseEntrypoint.js +162 -164
- package/esm/transform/BaseEntrypoint.js.map +1 -1
- package/esm/transform/Entrypoint.helpers.js +96 -253
- package/esm/transform/Entrypoint.helpers.js.map +1 -1
- package/esm/transform/Entrypoint.js +336 -270
- package/esm/transform/Entrypoint.js.map +1 -1
- package/esm/transform/Entrypoint.types.js +1 -1
- package/esm/transform/Entrypoint.types.js.map +1 -1
- package/esm/transform/EvaluatedEntrypoint.js +10 -4
- package/esm/transform/EvaluatedEntrypoint.js.map +1 -1
- package/esm/transform/actions/AbortError.js +6 -6
- package/esm/transform/actions/AbortError.js.map +1 -1
- package/esm/transform/actions/BaseAction.js +140 -136
- package/esm/transform/actions/BaseAction.js.map +1 -1
- package/esm/transform/actions/UnprocessedEntrypointError.js +6 -6
- package/esm/transform/actions/UnprocessedEntrypointError.js.map +1 -1
- package/esm/transform/actions/actionRunner.js +63 -66
- package/esm/transform/actions/actionRunner.js.map +1 -1
- package/esm/transform/actions/types.js +1 -1
- package/esm/transform/actions/types.js.map +1 -1
- package/esm/transform/barrelManifest.types.js +2 -0
- package/esm/transform/barrelManifest.types.js.map +1 -0
- package/esm/transform/generators/baseProcessingHandlers.js +15 -17
- package/esm/transform/generators/baseProcessingHandlers.js.map +1 -1
- package/esm/transform/generators/collect.js +27 -55
- package/esm/transform/generators/collect.js.map +1 -1
- package/esm/transform/generators/createStylisPreprocessor.js +353 -321
- package/esm/transform/generators/createStylisPreprocessor.js.map +1 -1
- package/esm/transform/generators/evalFile.js +48 -47
- package/esm/transform/generators/evalFile.js.map +1 -1
- package/esm/transform/generators/extract.js +78 -90
- package/esm/transform/generators/extract.js.map +1 -1
- package/esm/transform/generators/getExports.js +57 -74
- package/esm/transform/generators/getExports.js.map +1 -1
- package/esm/transform/generators/index.js +11 -11
- package/esm/transform/generators/index.js.map +1 -1
- package/esm/transform/generators/processEntrypoint.js +93 -67
- package/esm/transform/generators/processEntrypoint.js.map +1 -1
- package/esm/transform/generators/processImports.js +102 -67
- package/esm/transform/generators/processImports.js.map +1 -1
- package/esm/transform/generators/resolveImports.js +212 -197
- package/esm/transform/generators/resolveImports.js.map +1 -1
- package/esm/transform/generators/resolveStaticOxcValues/cache.js +182 -0
- package/esm/transform/generators/resolveStaticOxcValues/cache.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/candidateResolver.js +146 -0
- package/esm/transform/generators/resolveStaticOxcValues/candidateResolver.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/dependencies.js +33 -0
- package/esm/transform/generators/resolveStaticOxcValues/dependencies.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/environment.js +29 -0
- package/esm/transform/generators/resolveStaticOxcValues/environment.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/exportResolver.js +351 -0
- package/esm/transform/generators/resolveStaticOxcValues/exportResolver.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/exportTargets.js +253 -0
- package/esm/transform/generators/resolveStaticOxcValues/exportTargets.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/objectAssign.js +310 -0
- package/esm/transform/generators/resolveStaticOxcValues/objectAssign.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/objectAssignStaticExport.js +74 -0
- package/esm/transform/generators/resolveStaticOxcValues/objectAssignStaticExport.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/opaqueRuntime.js +229 -0
- package/esm/transform/generators/resolveStaticOxcValues/opaqueRuntime.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/processorStaticExport.js +172 -0
- package/esm/transform/generators/resolveStaticOxcValues/processorStaticExport.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/processorStaticModel.js +476 -0
- package/esm/transform/generators/resolveStaticOxcValues/processorStaticModel.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/processorTarget.js +55 -0
- package/esm/transform/generators/resolveStaticOxcValues/processorTarget.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/programAnalysis.js +123 -0
- package/esm/transform/generators/resolveStaticOxcValues/programAnalysis.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/prune.js +186 -0
- package/esm/transform/generators/resolveStaticOxcValues/prune.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/resolveStaticOxcPreevalValues.js +183 -0
- package/esm/transform/generators/resolveStaticOxcValues/resolveStaticOxcPreevalValues.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/staticExpression.js +298 -0
- package/esm/transform/generators/resolveStaticOxcValues/staticExpression.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/staticExpressionDependencies.js +298 -0
- package/esm/transform/generators/resolveStaticOxcValues/staticExpressionDependencies.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/types.js +3 -0
- package/esm/transform/generators/resolveStaticOxcValues/types.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues/zeroArgFunctionStaticExport.js +59 -0
- package/esm/transform/generators/resolveStaticOxcValues/zeroArgFunctionStaticExport.js.map +1 -0
- package/esm/transform/generators/resolveStaticOxcValues.js +2 -0
- package/esm/transform/generators/resolveStaticOxcValues.js.map +1 -0
- package/esm/transform/generators/rewriteOxcBarrelImports.js +822 -0
- package/esm/transform/generators/rewriteOxcBarrelImports.js.map +1 -0
- package/esm/transform/generators/transform.js +251 -248
- package/esm/transform/generators/transform.js.map +1 -1
- package/esm/transform/generators/workflow.js +87 -90
- package/esm/transform/generators/workflow.js.map +1 -1
- package/esm/transform/helpers/loadWywOptions.js +183 -74
- package/esm/transform/helpers/loadWywOptions.js.map +1 -1
- package/esm/transform/helpers/withDefaultServices.js +13 -22
- package/esm/transform/helpers/withDefaultServices.js.map +1 -1
- package/esm/transform/isStaticallyEvaluatableModule.js +140 -152
- package/esm/transform/isStaticallyEvaluatableModule.js.map +1 -1
- package/esm/transform/oxcBarrelManifest.js +349 -0
- package/esm/transform/oxcBarrelManifest.js.map +1 -0
- package/esm/transform/rootLog.js +3 -3
- package/esm/transform/rootLog.js.map +1 -1
- package/esm/transform/syntax.js +2 -0
- package/esm/transform/syntax.js.map +1 -0
- package/esm/transform/types.js +2 -2
- package/esm/transform/types.js.map +1 -1
- package/esm/transform.js +125 -147
- package/esm/transform.js.map +1 -1
- package/esm/types.js +4 -1
- package/esm/types.js.map +1 -1
- package/esm/utils/EventEmitter.js +79 -48
- package/esm/utils/EventEmitter.js.map +1 -1
- package/esm/utils/ShakerMetadata.js +2 -2
- package/esm/utils/ShakerMetadata.js.map +1 -1
- package/esm/utils/TransformDiagnostics.js +9 -9
- package/esm/utils/TransformDiagnostics.js.map +1 -1
- package/esm/utils/TransformMetadata.js +24 -26
- package/esm/utils/TransformMetadata.js.map +1 -1
- package/esm/utils/applyOxcProcessors/applyOxcProcessors.js +160 -0
- package/esm/utils/applyOxcProcessors/applyOxcProcessors.js.map +1 -0
- package/esm/utils/applyOxcProcessors/cleanupBindings.js +157 -0
- package/esm/utils/applyOxcProcessors/cleanupBindings.js.map +1 -0
- package/esm/utils/applyOxcProcessors/cleanupRemovals.js +431 -0
- package/esm/utils/applyOxcProcessors/cleanupRemovals.js.map +1 -0
- package/esm/utils/applyOxcProcessors/displayName.js +93 -0
- package/esm/utils/applyOxcProcessors/displayName.js.map +1 -0
- package/esm/utils/applyOxcProcessors/expressionValues.js +152 -0
- package/esm/utils/applyOxcProcessors/expressionValues.js.map +1 -0
- package/esm/utils/applyOxcProcessors/processorFactory.js +62 -0
- package/esm/utils/applyOxcProcessors/processorFactory.js.map +1 -0
- package/esm/utils/applyOxcProcessors/processorUsages.js +143 -0
- package/esm/utils/applyOxcProcessors/processorUsages.js.map +1 -0
- package/esm/utils/applyOxcProcessors/sameFileStaticValues.js +207 -0
- package/esm/utils/applyOxcProcessors/sameFileStaticValues.js.map +1 -0
- package/esm/utils/applyOxcProcessors/shared.js +29 -0
- package/esm/utils/applyOxcProcessors/shared.js.map +1 -0
- package/esm/utils/applyOxcProcessors/types.js +2 -0
- package/esm/utils/applyOxcProcessors/types.js.map +1 -0
- package/esm/utils/applyOxcProcessors.js +2 -0
- package/esm/utils/applyOxcProcessors.js.map +1 -0
- package/esm/utils/collectOxcExportsAndImports.js +934 -0
- package/esm/utils/collectOxcExportsAndImports.js.map +1 -0
- package/esm/utils/collectOxcRuntime/normalizeRuntimeCode.js +157 -0
- package/esm/utils/collectOxcRuntime/normalizeRuntimeCode.js.map +1 -0
- package/esm/utils/collectOxcRuntime/sourceMap.js +36 -0
- package/esm/utils/collectOxcRuntime/sourceMap.js.map +1 -0
- package/esm/utils/collectOxcRuntime/types.js +2 -0
- package/esm/utils/collectOxcRuntime/types.js.map +1 -0
- package/esm/utils/collectOxcRuntime.js +32 -0
- package/esm/utils/collectOxcRuntime.js.map +1 -0
- package/esm/utils/collectOxcTemplateDependencies/expressionExtraction.js +496 -0
- package/esm/utils/collectOxcTemplateDependencies/expressionExtraction.js.map +1 -0
- package/esm/utils/collectOxcTemplateDependencies/expressionReplacements.js +113 -0
- package/esm/utils/collectOxcTemplateDependencies/expressionReplacements.js.map +1 -0
- package/esm/utils/collectOxcTemplateDependencies/scopeAnalysis.js +387 -0
- package/esm/utils/collectOxcTemplateDependencies/scopeAnalysis.js.map +1 -0
- package/esm/utils/collectOxcTemplateDependencies/staticBindings.js +17 -0
- package/esm/utils/collectOxcTemplateDependencies/staticBindings.js.map +1 -0
- package/esm/utils/collectOxcTemplateDependencies/staticEvaluator.js +540 -0
- package/esm/utils/collectOxcTemplateDependencies/staticEvaluator.js.map +1 -0
- package/esm/utils/collectOxcTemplateDependencies/types.js +2 -0
- package/esm/utils/collectOxcTemplateDependencies/types.js.map +1 -0
- package/esm/utils/collectOxcTemplateDependencies.js +4 -0
- package/esm/utils/collectOxcTemplateDependencies.js.map +1 -0
- package/esm/utils/dispose-polyfill.js +3 -4
- package/esm/utils/dispose-polyfill.js.map +1 -1
- package/esm/utils/getFileIdx.js +6 -6
- package/esm/utils/getFileIdx.js.map +1 -1
- package/esm/utils/getPluginKey.js +12 -12
- package/esm/utils/getPluginKey.js.map +1 -1
- package/esm/utils/getVisitorKeys.js +9 -3
- package/esm/utils/getVisitorKeys.js.map +1 -1
- package/esm/utils/hasCachedWywPrevalExport.js +23 -0
- package/esm/utils/hasCachedWywPrevalExport.js.map +1 -0
- package/esm/utils/hasWywPreval.js +5 -5
- package/esm/utils/hasWywPreval.js.map +1 -1
- package/esm/utils/importOverrides.js +75 -90
- package/esm/utils/importOverrides.js.map +1 -1
- package/esm/utils/isNode.js +2 -2
- package/esm/utils/isNode.js.map +1 -1
- package/esm/utils/isNotNull.js +2 -2
- package/esm/utils/isNotNull.js.map +1 -1
- package/esm/utils/isSerializable.js +11 -11
- package/esm/utils/isSerializable.js.map +1 -1
- package/esm/utils/nativeResolver.js +93 -0
- package/esm/utils/nativeResolver.js.map +1 -0
- package/esm/utils/oxc/ast.js +28 -0
- package/esm/utils/oxc/ast.js.map +1 -0
- package/esm/utils/oxc/parse.js +3 -0
- package/esm/utils/oxc/parse.js.map +1 -0
- package/esm/utils/oxc/replacements.js +14 -0
- package/esm/utils/oxc/replacements.js.map +1 -0
- package/esm/utils/oxc/sourceLocations.js +59 -0
- package/esm/utils/oxc/sourceLocations.js.map +1 -0
- package/esm/utils/oxcAstService.js +121 -0
- package/esm/utils/oxcAstService.js.map +1 -0
- package/esm/utils/oxcEmit.js +447 -0
- package/esm/utils/oxcEmit.js.map +1 -0
- package/esm/utils/oxcPreevalStage/evalStrategy.js +3 -0
- package/esm/utils/oxcPreevalStage/evalStrategy.js.map +1 -0
- package/esm/utils/oxcPreevalStage/prepareCode.js +21 -0
- package/esm/utils/oxcPreevalStage/prepareCode.js.map +1 -0
- package/esm/utils/oxcPreevalStage/prevalExport.js +23 -0
- package/esm/utils/oxcPreevalStage/prevalExport.js.map +1 -0
- package/esm/utils/oxcPreevalStage/processors.js +17 -0
- package/esm/utils/oxcPreevalStage/processors.js.map +1 -0
- package/esm/utils/oxcPreevalStage/staticOverlay.js +18 -0
- package/esm/utils/oxcPreevalStage/staticOverlay.js.map +1 -0
- package/esm/utils/oxcPreevalStage/types.js +2 -0
- package/esm/utils/oxcPreevalStage/types.js.map +1 -0
- package/esm/utils/oxcPreevalStage.js +41 -0
- package/esm/utils/oxcPreevalStage.js.map +1 -0
- package/esm/utils/oxcPreevalTransforms.js +1065 -0
- package/esm/utils/oxcPreevalTransforms.js.map +1 -0
- package/esm/utils/oxcShaker.js +662 -0
- package/esm/utils/oxcShaker.js.map +1 -0
- package/esm/utils/parseOxc.js +37 -0
- package/esm/utils/parseOxc.js.map +1 -0
- package/esm/utils/parseRequest.js +27 -27
- package/esm/utils/parseRequest.js.map +1 -1
- package/esm/utils/peek.js +1 -1
- package/esm/utils/peek.js.map +1 -1
- package/esm/utils/processorLookup.js +125 -0
- package/esm/utils/processorLookup.js.map +1 -0
- package/esm/utils/processorStaticSemantics.js +157 -0
- package/esm/utils/processorStaticSemantics.js.map +1 -0
- package/esm/utils/resolveWithConditions.js +99 -0
- package/esm/utils/resolveWithConditions.js.map +1 -0
- package/esm/vm/createVmContext.js +140 -141
- package/esm/vm/createVmContext.js.map +1 -1
- package/esm/vm/process.js +11 -13
- package/esm/vm/process.js.map +1 -1
- package/package.json +19 -26
- package/types/cache.d.ts +17 -8
- package/types/cache.js +245 -95
- package/types/debug/fileReporter.js +68 -23
- package/types/eval/broker.d.ts +92 -0
- package/types/eval/broker.js +2411 -0
- package/types/eval/lru.d.ts +10 -0
- package/types/eval/lru.js +36 -0
- package/types/eval/prepareModuleOnDemand.d.ts +7 -0
- package/types/eval/prepareModuleOnDemand.js +24 -0
- package/types/eval/protocol.d.ts +111 -0
- package/types/eval/protocol.js +1 -0
- package/types/eval/serialize.d.ts +78 -0
- package/types/eval/serialize.js +357 -0
- package/types/eval/writeQueue.d.ts +13 -0
- package/types/eval/writeQueue.js +80 -0
- package/types/evaluators/index.d.ts +2 -2
- package/types/evaluators/index.js +6 -9
- package/types/index.d.ts +3 -6
- package/types/index.js +24 -82
- package/types/module.d.ts +38 -7
- package/types/module.js +613 -192
- package/types/shaker.d.ts +2 -10
- package/types/shaker.js +10 -100
- package/types/transform/BaseEntrypoint.js +6 -11
- package/types/transform/Entrypoint.d.ts +15 -15
- package/types/transform/Entrypoint.helpers.d.ts +2 -5
- package/types/transform/Entrypoint.helpers.js +43 -203
- package/types/transform/Entrypoint.js +130 -53
- package/types/transform/Entrypoint.types.d.ts +31 -6
- package/types/transform/Entrypoint.types.js +1 -2
- package/types/transform/EvaluatedEntrypoint.d.ts +13 -2
- package/types/transform/EvaluatedEntrypoint.js +7 -6
- package/types/transform/actions/AbortError.js +2 -7
- package/types/transform/actions/BaseAction.js +4 -8
- package/types/transform/actions/UnprocessedEntrypointError.js +2 -7
- package/types/transform/actions/actionRunner.js +8 -12
- package/types/transform/actions/types.d.ts +2 -2
- package/types/transform/actions/types.js +1 -2
- package/types/transform/{barrelManifest.d.ts → barrelManifest.types.d.ts} +0 -2
- package/types/transform/barrelManifest.types.js +1 -0
- package/types/transform/generators/baseProcessingHandlers.d.ts +4 -5
- package/types/transform/generators/baseProcessingHandlers.js +10 -14
- package/types/transform/generators/collect.js +13 -39
- package/types/transform/generators/createStylisPreprocessor.js +19 -60
- package/types/transform/generators/evalFile.d.ts +2 -2
- package/types/transform/generators/evalFile.js +26 -28
- package/types/transform/generators/extract.js +5 -8
- package/types/transform/generators/getExports.js +23 -30
- package/types/transform/generators/index.d.ts +2 -2
- package/types/transform/generators/index.js +11 -14
- package/types/transform/generators/processEntrypoint.d.ts +2 -2
- package/types/transform/generators/processEntrypoint.js +60 -26
- package/types/transform/generators/processImports.d.ts +0 -3
- package/types/transform/generators/processImports.js +60 -20
- package/types/transform/generators/resolveImports.d.ts +3 -1
- package/types/transform/generators/resolveImports.js +66 -23
- package/types/transform/generators/resolveStaticOxcValues/cache.d.ts +25 -0
- package/types/transform/generators/resolveStaticOxcValues/cache.js +182 -0
- package/types/transform/generators/resolveStaticOxcValues/candidateResolver.d.ts +5 -0
- package/types/transform/generators/resolveStaticOxcValues/candidateResolver.js +149 -0
- package/types/transform/generators/resolveStaticOxcValues/dependencies.d.ts +6 -0
- package/types/transform/generators/resolveStaticOxcValues/dependencies.js +37 -0
- package/types/transform/generators/resolveStaticOxcValues/environment.d.ts +12 -0
- package/types/transform/generators/resolveStaticOxcValues/environment.js +32 -0
- package/types/transform/generators/resolveStaticOxcValues/exportResolver.d.ts +4 -0
- package/types/transform/generators/resolveStaticOxcValues/exportResolver.js +358 -0
- package/types/transform/generators/resolveStaticOxcValues/exportTargets.d.ts +20 -0
- package/types/transform/generators/resolveStaticOxcValues/exportTargets.js +285 -0
- package/types/transform/generators/resolveStaticOxcValues/objectAssign.d.ts +41 -0
- package/types/transform/generators/resolveStaticOxcValues/objectAssign.js +352 -0
- package/types/transform/generators/resolveStaticOxcValues/objectAssignStaticExport.d.ts +6 -0
- package/types/transform/generators/resolveStaticOxcValues/objectAssignStaticExport.js +88 -0
- package/types/transform/generators/resolveStaticOxcValues/opaqueRuntime.d.ts +13 -0
- package/types/transform/generators/resolveStaticOxcValues/opaqueRuntime.js +263 -0
- package/types/transform/generators/resolveStaticOxcValues/processorStaticExport.d.ts +4 -0
- package/types/transform/generators/resolveStaticOxcValues/processorStaticExport.js +191 -0
- package/types/transform/generators/resolveStaticOxcValues/processorStaticModel.d.ts +40 -0
- package/types/transform/generators/resolveStaticOxcValues/processorStaticModel.js +516 -0
- package/types/transform/generators/resolveStaticOxcValues/processorTarget.d.ts +5 -0
- package/types/transform/generators/resolveStaticOxcValues/processorTarget.js +62 -0
- package/types/transform/generators/resolveStaticOxcValues/programAnalysis.d.ts +11 -0
- package/types/transform/generators/resolveStaticOxcValues/programAnalysis.js +133 -0
- package/types/transform/generators/resolveStaticOxcValues/prune.d.ts +15 -0
- package/types/transform/generators/resolveStaticOxcValues/prune.js +220 -0
- package/types/transform/generators/resolveStaticOxcValues/resolveStaticOxcPreevalValues.d.ts +2 -0
- package/types/transform/generators/resolveStaticOxcValues/resolveStaticOxcPreevalValues.js +197 -0
- package/types/transform/generators/resolveStaticOxcValues/staticExpression.d.ts +25 -0
- package/types/transform/generators/resolveStaticOxcValues/staticExpression.js +391 -0
- package/types/transform/generators/resolveStaticOxcValues/staticExpressionDependencies.d.ts +14 -0
- package/types/transform/generators/resolveStaticOxcValues/staticExpressionDependencies.js +304 -0
- package/types/transform/generators/resolveStaticOxcValues/types.d.ts +99 -0
- package/types/transform/generators/resolveStaticOxcValues/types.js +2 -0
- package/types/transform/generators/resolveStaticOxcValues/zeroArgFunctionStaticExport.d.ts +7 -0
- package/types/transform/generators/resolveStaticOxcValues/zeroArgFunctionStaticExport.js +64 -0
- package/types/transform/generators/resolveStaticOxcValues.d.ts +1 -0
- package/types/transform/generators/resolveStaticOxcValues.js +1 -0
- package/types/transform/generators/{rewriteBarrelImports.d.ts → rewriteOxcBarrelImports.d.ts} +2 -3
- package/types/transform/generators/{rewriteBarrelImports.js → rewriteOxcBarrelImports.js} +282 -225
- package/types/transform/generators/transform.d.ts +3 -7
- package/types/transform/generators/transform.js +217 -199
- package/types/transform/generators/workflow.js +62 -45
- package/types/transform/helpers/loadWywOptions.js +115 -21
- package/types/transform/helpers/withDefaultServices.d.ts +1 -1
- package/types/transform/helpers/withDefaultServices.js +6 -44
- package/types/transform/isStaticallyEvaluatableModule.d.ts +1 -2
- package/types/transform/isStaticallyEvaluatableModule.js +125 -126
- package/types/transform/oxcBarrelManifest.d.ts +2 -0
- package/types/transform/{barrelManifest.js → oxcBarrelManifest.js} +156 -97
- package/types/transform/rootLog.js +2 -5
- package/types/transform/syntax.d.ts +38 -0
- package/types/transform/syntax.js +1 -0
- package/types/transform/types.d.ts +9 -6
- package/types/transform/types.js +1 -4
- package/types/transform.d.ts +2 -2
- package/types/transform.js +90 -101
- package/types/types.d.ts +0 -23
- package/types/types.js +1 -2
- package/types/utils/EventEmitter.d.ts +16 -1
- package/types/utils/EventEmitter.js +47 -18
- package/types/utils/ShakerMetadata.js +1 -5
- package/types/utils/TransformDiagnostics.js +3 -7
- package/types/utils/TransformMetadata.js +8 -16
- package/types/utils/applyOxcProcessors/applyOxcProcessors.d.ts +8 -0
- package/types/utils/applyOxcProcessors/applyOxcProcessors.js +167 -0
- package/types/utils/applyOxcProcessors/cleanupBindings.d.ts +12 -0
- package/types/utils/applyOxcProcessors/cleanupBindings.js +189 -0
- package/types/utils/applyOxcProcessors/cleanupRemovals.d.ts +16 -0
- package/types/utils/applyOxcProcessors/cleanupRemovals.js +482 -0
- package/types/utils/applyOxcProcessors/displayName.d.ts +9 -0
- package/types/utils/applyOxcProcessors/displayName.js +113 -0
- package/types/utils/applyOxcProcessors/expressionValues.d.ts +11 -0
- package/types/utils/applyOxcProcessors/expressionValues.js +170 -0
- package/types/utils/applyOxcProcessors/processorFactory.d.ts +7 -0
- package/types/utils/applyOxcProcessors/processorFactory.js +70 -0
- package/types/utils/applyOxcProcessors/processorUsages.d.ts +16 -0
- package/types/utils/applyOxcProcessors/processorUsages.js +163 -0
- package/types/utils/applyOxcProcessors/sameFileStaticValues.d.ts +23 -0
- package/types/utils/applyOxcProcessors/sameFileStaticValues.js +211 -0
- package/types/utils/applyOxcProcessors/shared.d.ts +10 -0
- package/types/utils/applyOxcProcessors/shared.js +37 -0
- package/types/utils/applyOxcProcessors/types.d.ts +88 -0
- package/types/utils/applyOxcProcessors/types.js +1 -0
- package/types/utils/applyOxcProcessors.d.ts +1 -0
- package/types/utils/applyOxcProcessors.js +1 -0
- package/types/utils/collectOxcExportsAndImports.d.ts +35 -0
- package/types/utils/collectOxcExportsAndImports.js +957 -0
- package/types/utils/collectOxcRuntime/normalizeRuntimeCode.d.ts +1 -0
- package/types/utils/collectOxcRuntime/normalizeRuntimeCode.js +185 -0
- package/types/utils/collectOxcRuntime/sourceMap.d.ts +2 -0
- package/types/utils/collectOxcRuntime/sourceMap.js +37 -0
- package/types/utils/collectOxcRuntime/types.d.ts +16 -0
- package/types/utils/collectOxcRuntime/types.js +1 -0
- package/types/utils/collectOxcRuntime.d.ts +4 -0
- package/types/utils/collectOxcRuntime.js +31 -0
- package/types/utils/collectOxcTemplateDependencies/expressionExtraction.d.ts +6 -0
- package/types/utils/collectOxcTemplateDependencies/expressionExtraction.js +550 -0
- package/types/utils/collectOxcTemplateDependencies/expressionReplacements.d.ts +11 -0
- package/types/utils/collectOxcTemplateDependencies/expressionReplacements.js +131 -0
- package/types/utils/collectOxcTemplateDependencies/scopeAnalysis.d.ts +20 -0
- package/types/utils/collectOxcTemplateDependencies/scopeAnalysis.js +434 -0
- package/types/utils/collectOxcTemplateDependencies/staticBindings.d.ts +7 -0
- package/types/utils/collectOxcTemplateDependencies/staticBindings.js +13 -0
- package/types/utils/collectOxcTemplateDependencies/staticEvaluator.d.ts +13 -0
- package/types/utils/collectOxcTemplateDependencies/staticEvaluator.js +626 -0
- package/types/utils/collectOxcTemplateDependencies/types.d.ts +116 -0
- package/types/utils/collectOxcTemplateDependencies/types.js +1 -0
- package/types/utils/collectOxcTemplateDependencies.d.ts +4 -0
- package/types/utils/collectOxcTemplateDependencies.js +3 -0
- package/types/utils/getFileIdx.js +1 -4
- package/types/utils/getPluginKey.d.ts +5 -2
- package/types/utils/getPluginKey.js +2 -6
- package/types/utils/getVisitorKeys.d.ts +4 -4
- package/types/utils/getVisitorKeys.js +9 -6
- package/types/utils/hasCachedWywPrevalExport.d.ts +14 -0
- package/types/utils/hasCachedWywPrevalExport.js +30 -0
- package/types/utils/hasWywPreval.js +1 -4
- package/types/utils/importOverrides.js +17 -27
- package/types/utils/isNode.d.ts +2 -2
- package/types/utils/isNode.js +2 -6
- package/types/utils/isNotNull.js +1 -4
- package/types/utils/isSerializable.js +3 -6
- package/types/utils/nativeResolver.d.ts +13 -0
- package/types/utils/nativeResolver.js +91 -0
- package/types/utils/oxc/ast.d.ts +4 -0
- package/types/utils/oxc/ast.js +37 -0
- package/types/utils/oxc/parse.d.ts +3 -0
- package/types/utils/oxc/parse.js +2 -0
- package/types/utils/oxc/replacements.d.ts +12 -0
- package/types/utils/oxc/replacements.js +18 -0
- package/types/utils/oxc/sourceLocations.d.ts +5 -0
- package/types/utils/oxc/sourceLocations.js +63 -0
- package/types/utils/oxcAstService.d.ts +11 -0
- package/types/utils/oxcAstService.js +79 -0
- package/types/utils/oxcEmit.d.ts +19 -0
- package/types/utils/oxcEmit.js +506 -0
- package/types/utils/oxcPreevalStage/evalStrategy.d.ts +3 -0
- package/types/utils/oxcPreevalStage/evalStrategy.js +2 -0
- package/types/utils/oxcPreevalStage/prepareCode.d.ts +3 -0
- package/types/utils/oxcPreevalStage/prepareCode.js +20 -0
- package/types/utils/oxcPreevalStage/prevalExport.d.ts +1 -0
- package/types/utils/oxcPreevalStage/prevalExport.js +22 -0
- package/types/utils/oxcPreevalStage/processors.d.ts +10 -0
- package/types/utils/oxcPreevalStage/processors.js +16 -0
- package/types/utils/oxcPreevalStage/staticOverlay.d.ts +3 -0
- package/types/utils/oxcPreevalStage/staticOverlay.js +23 -0
- package/types/utils/oxcPreevalStage/types.d.ts +22 -0
- package/types/utils/oxcPreevalStage/types.js +1 -0
- package/types/utils/oxcPreevalStage.d.ts +4 -0
- package/types/utils/oxcPreevalStage.js +40 -0
- package/types/utils/oxcPreevalTransforms.d.ts +13 -0
- package/types/utils/oxcPreevalTransforms.js +1192 -0
- package/types/utils/oxcShaker.d.ts +13 -0
- package/types/utils/oxcShaker.js +751 -0
- package/types/utils/parseOxc.d.ts +11 -0
- package/types/utils/parseOxc.js +38 -0
- package/types/utils/parseRequest.js +2 -7
- package/types/utils/peek.js +1 -5
- package/types/utils/processorLookup.d.ts +8 -0
- package/types/utils/processorLookup.js +135 -0
- package/types/utils/processorStaticSemantics.d.ts +13 -0
- package/types/utils/processorStaticSemantics.js +191 -0
- package/types/utils/resolveWithConditions.d.ts +12 -0
- package/types/utils/resolveWithConditions.js +103 -0
- package/types/vm/createVmContext.d.ts +2 -2
- package/types/vm/createVmContext.js +25 -62
- package/types/vm/process.js +20 -26
- package/esm/babel.js +0 -2
- package/esm/babel.js.map +0 -1
- package/esm/options/buildOptions.js +0 -168
- package/esm/options/buildOptions.js.map +0 -1
- package/esm/options/buildOptions.test.js +0 -138
- package/esm/options/buildOptions.test.js.map +0 -1
- package/esm/options/loadBabelOptions.js +0 -24
- package/esm/options/loadBabelOptions.js.map +0 -1
- package/esm/plugins/babel-transform.js +0 -53
- package/esm/plugins/babel-transform.js.map +0 -1
- package/esm/plugins/collector.js +0 -60
- package/esm/plugins/collector.js.map +0 -1
- package/esm/plugins/dynamic-import.js +0 -56
- package/esm/plugins/dynamic-import.js.map +0 -1
- package/esm/plugins/preeval.js +0 -73
- package/esm/plugins/preeval.js.map +0 -1
- package/esm/plugins/shaker.js +0 -680
- package/esm/plugins/shaker.js.map +0 -1
- package/esm/transform/barrelManifest.js +0 -291
- package/esm/transform/barrelManifest.js.map +0 -1
- package/esm/transform/generators/explodeReexports.js +0 -64
- package/esm/transform/generators/explodeReexports.js.map +0 -1
- package/esm/transform/generators/rewriteBarrelImports.js +0 -733
- package/esm/transform/generators/rewriteBarrelImports.js.map +0 -1
- package/esm/utils/addIdentifierToWywPreval.js +0 -68
- package/esm/utils/addIdentifierToWywPreval.js.map +0 -1
- package/esm/utils/collectExportsAndImports.js +0 -1157
- package/esm/utils/collectExportsAndImports.js.map +0 -1
- package/esm/utils/collectTemplateDependencies.js +0 -228
- package/esm/utils/collectTemplateDependencies.js.map +0 -1
- package/esm/utils/createId.js +0 -6
- package/esm/utils/createId.js.map +0 -1
- package/esm/utils/findIdentifiers.js +0 -62
- package/esm/utils/findIdentifiers.js.map +0 -1
- package/esm/utils/getConstantStringValue.js +0 -58
- package/esm/utils/getConstantStringValue.js.map +0 -1
- package/esm/utils/getMemberExpressionPropertyName.js +0 -11
- package/esm/utils/getMemberExpressionPropertyName.js.map +0 -1
- package/esm/utils/getScope.js +0 -6
- package/esm/utils/getScope.js.map +0 -1
- package/esm/utils/getSource.js +0 -15
- package/esm/utils/getSource.js.map +0 -1
- package/esm/utils/getTagProcessor.js +0 -404
- package/esm/utils/getTagProcessor.js.map +0 -1
- package/esm/utils/isExports.js +0 -22
- package/esm/utils/isExports.js.map +0 -1
- package/esm/utils/isGlobal.js +0 -6
- package/esm/utils/isGlobal.js.map +0 -1
- package/esm/utils/isNodePath.js +0 -4
- package/esm/utils/isNodePath.js.map +0 -1
- package/esm/utils/isRemoved.js +0 -46
- package/esm/utils/isRemoved.js.map +0 -1
- package/esm/utils/isRequire.js +0 -13
- package/esm/utils/isRequire.js.map +0 -1
- package/esm/utils/isTypedNode.js +0 -6
- package/esm/utils/isTypedNode.js.map +0 -1
- package/esm/utils/isUnnecessaryReactCall.js +0 -72
- package/esm/utils/isUnnecessaryReactCall.js.map +0 -1
- package/esm/utils/removeDangerousCode.js +0 -276
- package/esm/utils/removeDangerousCode.js.map +0 -1
- package/esm/utils/replaceImportMetaEnv.js +0 -44
- package/esm/utils/replaceImportMetaEnv.js.map +0 -1
- package/esm/utils/scopeHelpers.js +0 -527
- package/esm/utils/scopeHelpers.js.map +0 -1
- package/esm/utils/traversalCache.js +0 -23
- package/esm/utils/traversalCache.js.map +0 -1
- package/esm/utils/unwrapExpression.js +0 -18
- package/esm/utils/unwrapExpression.js.map +0 -1
- package/esm/utils/unwrapSequence.js +0 -14
- package/esm/utils/unwrapSequence.js.map +0 -1
- package/esm/utils/valueToLiteral.js +0 -59
- package/esm/utils/valueToLiteral.js.map +0 -1
- package/esm/utils/visitors/JSXElementsRemover.js +0 -51
- package/esm/utils/visitors/JSXElementsRemover.js.map +0 -1
- package/lib/babel.js +0 -2
- package/lib/babel.js.map +0 -1
- package/lib/cache.js +0 -308
- package/lib/cache.js.map +0 -1
- package/lib/debug/fileReporter.js +0 -153
- package/lib/debug/fileReporter.js.map +0 -1
- package/lib/evaluators/index.js +0 -20
- package/lib/evaluators/index.js.map +0 -1
- package/lib/index.js +0 -286
- package/lib/index.js.map +0 -1
- package/lib/module.js +0 -552
- package/lib/module.js.map +0 -1
- package/lib/options/buildOptions.js +0 -176
- package/lib/options/buildOptions.js.map +0 -1
- package/lib/options/buildOptions.test.js +0 -141
- package/lib/options/buildOptions.test.js.map +0 -1
- package/lib/options/loadBabelOptions.js +0 -31
- package/lib/options/loadBabelOptions.js.map +0 -1
- package/lib/plugins/babel-transform.js +0 -60
- package/lib/plugins/babel-transform.js.map +0 -1
- package/lib/plugins/collector.js +0 -70
- package/lib/plugins/collector.js.map +0 -1
- package/lib/plugins/dynamic-import.js +0 -61
- package/lib/plugins/dynamic-import.js.map +0 -1
- package/lib/plugins/preeval.js +0 -81
- package/lib/plugins/preeval.js.map +0 -1
- package/lib/plugins/shaker.js +0 -691
- package/lib/plugins/shaker.js.map +0 -1
- package/lib/shaker.js +0 -95
- package/lib/shaker.js.map +0 -1
- package/lib/transform/BaseEntrypoint.js +0 -179
- package/lib/transform/BaseEntrypoint.js.map +0 -1
- package/lib/transform/Entrypoint.helpers.js +0 -279
- package/lib/transform/Entrypoint.helpers.js.map +0 -1
- package/lib/transform/Entrypoint.js +0 -289
- package/lib/transform/Entrypoint.js.map +0 -1
- package/lib/transform/Entrypoint.types.js +0 -2
- package/lib/transform/Entrypoint.types.js.map +0 -1
- package/lib/transform/EvaluatedEntrypoint.js +0 -13
- package/lib/transform/EvaluatedEntrypoint.js.map +0 -1
- package/lib/transform/actions/AbortError.js +0 -16
- package/lib/transform/actions/AbortError.js.map +0 -1
- package/lib/transform/actions/BaseAction.js +0 -150
- package/lib/transform/actions/BaseAction.js.map +0 -1
- package/lib/transform/actions/UnprocessedEntrypointError.js +0 -16
- package/lib/transform/actions/UnprocessedEntrypointError.js.map +0 -1
- package/lib/transform/actions/actionRunner.js +0 -82
- package/lib/transform/actions/actionRunner.js.map +0 -1
- package/lib/transform/actions/types.js +0 -2
- package/lib/transform/actions/types.js.map +0 -1
- package/lib/transform/barrelManifest.js +0 -300
- package/lib/transform/barrelManifest.js.map +0 -1
- package/lib/transform/generators/baseProcessingHandlers.js +0 -27
- package/lib/transform/generators/baseProcessingHandlers.js.map +0 -1
- package/lib/transform/generators/collect.js +0 -66
- package/lib/transform/generators/collect.js.map +0 -1
- package/lib/transform/generators/createStylisPreprocessor.js +0 -372
- package/lib/transform/generators/createStylisPreprocessor.js.map +0 -1
- package/lib/transform/generators/evalFile.js +0 -57
- package/lib/transform/generators/evalFile.js.map +0 -1
- package/lib/transform/generators/explodeReexports.js +0 -71
- package/lib/transform/generators/explodeReexports.js.map +0 -1
- package/lib/transform/generators/extract.js +0 -102
- package/lib/transform/generators/extract.js.map +0 -1
- package/lib/transform/generators/getExports.js +0 -85
- package/lib/transform/generators/getExports.js.map +0 -1
- package/lib/transform/generators/index.js +0 -19
- package/lib/transform/generators/index.js.map +0 -1
- package/lib/transform/generators/processEntrypoint.js +0 -76
- package/lib/transform/generators/processEntrypoint.js.map +0 -1
- package/lib/transform/generators/processImports.js +0 -82
- package/lib/transform/generators/processImports.js.map +0 -1
- package/lib/transform/generators/resolveImports.js +0 -221
- package/lib/transform/generators/resolveImports.js.map +0 -1
- package/lib/transform/generators/rewriteBarrelImports.js +0 -743
- package/lib/transform/generators/rewriteBarrelImports.js.map +0 -1
- package/lib/transform/generators/transform.js +0 -272
- package/lib/transform/generators/transform.js.map +0 -1
- package/lib/transform/generators/workflow.js +0 -100
- package/lib/transform/generators/workflow.js.map +0 -1
- package/lib/transform/helpers/loadWywOptions.js +0 -88
- package/lib/transform/helpers/loadWywOptions.js.map +0 -1
- package/lib/transform/helpers/withDefaultServices.js +0 -31
- package/lib/transform/helpers/withDefaultServices.js.map +0 -1
- package/lib/transform/isStaticallyEvaluatableModule.js +0 -159
- package/lib/transform/isStaticallyEvaluatableModule.js.map +0 -1
- package/lib/transform/rootLog.js +0 -9
- package/lib/transform/rootLog.js.map +0 -1
- package/lib/transform/types.js +0 -8
- package/lib/transform/types.js.map +0 -1
- package/lib/transform.js +0 -160
- package/lib/transform.js.map +0 -1
- package/lib/types.js +0 -2
- package/lib/types.js.map +0 -1
- package/lib/utils/EventEmitter.js +0 -61
- package/lib/utils/EventEmitter.js.map +0 -1
- package/lib/utils/ShakerMetadata.js +0 -9
- package/lib/utils/ShakerMetadata.js.map +0 -1
- package/lib/utils/TransformDiagnostics.js +0 -20
- package/lib/utils/TransformDiagnostics.js.map +0 -1
- package/lib/utils/TransformMetadata.js +0 -45
- package/lib/utils/TransformMetadata.js.map +0 -1
- package/lib/utils/addIdentifierToWywPreval.js +0 -75
- package/lib/utils/addIdentifierToWywPreval.js.map +0 -1
- package/lib/utils/collectExportsAndImports.js +0 -1173
- package/lib/utils/collectExportsAndImports.js.map +0 -1
- package/lib/utils/collectTemplateDependencies.js +0 -242
- package/lib/utils/collectTemplateDependencies.js.map +0 -1
- package/lib/utils/createId.js +0 -13
- package/lib/utils/createId.js.map +0 -1
- package/lib/utils/dispose-polyfill.js +0 -9
- package/lib/utils/dispose-polyfill.js.map +0 -1
- package/lib/utils/findIdentifiers.js +0 -73
- package/lib/utils/findIdentifiers.js.map +0 -1
- package/lib/utils/getConstantStringValue.js +0 -66
- package/lib/utils/getConstantStringValue.js.map +0 -1
- package/lib/utils/getFileIdx.js +0 -16
- package/lib/utils/getFileIdx.js.map +0 -1
- package/lib/utils/getMemberExpressionPropertyName.js +0 -18
- package/lib/utils/getMemberExpressionPropertyName.js.map +0 -1
- package/lib/utils/getPluginKey.js +0 -21
- package/lib/utils/getPluginKey.js.map +0 -1
- package/lib/utils/getScope.js +0 -12
- package/lib/utils/getScope.js.map +0 -1
- package/lib/utils/getSource.js +0 -24
- package/lib/utils/getSource.js.map +0 -1
- package/lib/utils/getTagProcessor.js +0 -424
- package/lib/utils/getTagProcessor.js.map +0 -1
- package/lib/utils/getVisitorKeys.js +0 -11
- package/lib/utils/getVisitorKeys.js.map +0 -1
- package/lib/utils/hasWywPreval.js +0 -13
- package/lib/utils/hasWywPreval.js.map +0 -1
- package/lib/utils/importOverrides.js +0 -119
- package/lib/utils/importOverrides.js.map +0 -1
- package/lib/utils/isExports.js +0 -27
- package/lib/utils/isExports.js.map +0 -1
- package/lib/utils/isGlobal.js +0 -13
- package/lib/utils/isGlobal.js.map +0 -1
- package/lib/utils/isNode.js +0 -9
- package/lib/utils/isNode.js.map +0 -1
- package/lib/utils/isNodePath.js +0 -10
- package/lib/utils/isNodePath.js.map +0 -1
- package/lib/utils/isNotNull.js +0 -10
- package/lib/utils/isNotNull.js.map +0 -1
- package/lib/utils/isRemoved.js +0 -52
- package/lib/utils/isRemoved.js.map +0 -1
- package/lib/utils/isRequire.js +0 -18
- package/lib/utils/isRequire.js.map +0 -1
- package/lib/utils/isSerializable.js +0 -19
- package/lib/utils/isSerializable.js.map +0 -1
- package/lib/utils/isTypedNode.js +0 -13
- package/lib/utils/isTypedNode.js.map +0 -1
- package/lib/utils/isUnnecessaryReactCall.js +0 -81
- package/lib/utils/isUnnecessaryReactCall.js.map +0 -1
- package/lib/utils/parseRequest.js +0 -37
- package/lib/utils/parseRequest.js.map +0 -1
- package/lib/utils/peek.js +0 -9
- package/lib/utils/peek.js.map +0 -1
- package/lib/utils/removeDangerousCode.js +0 -284
- package/lib/utils/removeDangerousCode.js.map +0 -1
- package/lib/utils/replaceImportMetaEnv.js +0 -50
- package/lib/utils/replaceImportMetaEnv.js.map +0 -1
- package/lib/utils/scopeHelpers.js +0 -557
- package/lib/utils/scopeHelpers.js.map +0 -1
- package/lib/utils/traversalCache.js +0 -31
- package/lib/utils/traversalCache.js.map +0 -1
- package/lib/utils/unwrapExpression.js +0 -25
- package/lib/utils/unwrapExpression.js.map +0 -1
- package/lib/utils/unwrapSequence.js +0 -20
- package/lib/utils/unwrapSequence.js.map +0 -1
- package/lib/utils/valueToLiteral.js +0 -65
- package/lib/utils/valueToLiteral.js.map +0 -1
- package/lib/utils/visitors/JSXElementsRemover.js +0 -57
- package/lib/utils/visitors/JSXElementsRemover.js.map +0 -1
- package/lib/vm/createVmContext.js +0 -166
- package/lib/vm/createVmContext.js.map +0 -1
- package/lib/vm/process.js +0 -38
- package/lib/vm/process.js.map +0 -1
- package/types/babel.d.ts +0 -2
- package/types/babel.js +0 -2
- package/types/options/buildOptions.d.ts +0 -6
- package/types/options/buildOptions.js +0 -178
- package/types/options/loadBabelOptions.d.ts +0 -3
- package/types/options/loadBabelOptions.js +0 -26
- package/types/plugins/babel-transform.d.ts +0 -4
- package/types/plugins/babel-transform.js +0 -49
- package/types/plugins/collector.d.ts +0 -23
- package/types/plugins/collector.js +0 -62
- package/types/plugins/dynamic-import.d.ts +0 -6
- package/types/plugins/dynamic-import.js +0 -60
- package/types/plugins/preeval.d.ts +0 -16
- package/types/plugins/preeval.js +0 -69
- package/types/plugins/shaker.d.ts +0 -14
- package/types/plugins/shaker.js +0 -724
- package/types/transform/generators/explodeReexports.d.ts +0 -7
- package/types/transform/generators/explodeReexports.js +0 -65
- package/types/utils/addIdentifierToWywPreval.d.ts +0 -4
- package/types/utils/addIdentifierToWywPreval.js +0 -74
- package/types/utils/collectExportsAndImports.d.ts +0 -31
- package/types/utils/collectExportsAndImports.js +0 -1147
- package/types/utils/collectTemplateDependencies.d.ts +0 -17
- package/types/utils/collectTemplateDependencies.js +0 -220
- package/types/utils/createId.d.ts +0 -2
- package/types/utils/createId.js +0 -9
- package/types/utils/findIdentifiers.d.ts +0 -6
- package/types/utils/findIdentifiers.js +0 -67
- package/types/utils/getConstantStringValue.d.ts +0 -2
- package/types/utils/getConstantStringValue.js +0 -94
- package/types/utils/getMemberExpressionPropertyName.d.ts +0 -2
- package/types/utils/getMemberExpressionPropertyName.js +0 -46
- package/types/utils/getScope.d.ts +0 -2
- package/types/utils/getScope.js +0 -10
- package/types/utils/getSource.d.ts +0 -2
- package/types/utils/getSource.js +0 -22
- package/types/utils/getTagProcessor.d.ts +0 -13
- package/types/utils/getTagProcessor.js +0 -411
- package/types/utils/isExports.d.ts +0 -6
- package/types/utils/isExports.js +0 -19
- package/types/utils/isGlobal.d.ts +0 -2
- package/types/utils/isGlobal.js +0 -9
- package/types/utils/isNodePath.d.ts +0 -3
- package/types/utils/isNodePath.js +0 -6
- package/types/utils/isRemoved.d.ts +0 -5
- package/types/utils/isRemoved.js +0 -41
- package/types/utils/isRequire.d.ts +0 -6
- package/types/utils/isRequire.js +0 -14
- package/types/utils/isTypedNode.d.ts +0 -5
- package/types/utils/isTypedNode.js +0 -9
- package/types/utils/isUnnecessaryReactCall.d.ts +0 -3
- package/types/utils/isUnnecessaryReactCall.js +0 -75
- package/types/utils/removeDangerousCode.d.ts +0 -4
- package/types/utils/removeDangerousCode.js +0 -326
- package/types/utils/replaceImportMetaEnv.d.ts +0 -3
- package/types/utils/replaceImportMetaEnv.js +0 -39
- package/types/utils/scopeHelpers.d.ts +0 -12
- package/types/utils/scopeHelpers.js +0 -580
- package/types/utils/traversalCache.d.ts +0 -4
- package/types/utils/traversalCache.js +0 -27
- package/types/utils/unwrapExpression.d.ts +0 -2
- package/types/utils/unwrapExpression.js +0 -57
- package/types/utils/unwrapSequence.d.ts +0 -8
- package/types/utils/unwrapSequence.js +0 -16
- package/types/utils/valueToLiteral.d.ts +0 -3
- package/types/utils/valueToLiteral.js +0 -63
- package/types/utils/visitors/JSXElementsRemover.d.ts +0 -3
- package/types/utils/visitors/JSXElementsRemover.js +0 -51
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isRequire.js","names":["isGlobal","isRequire","id","isIdentifier","node","name"],"sources":["../../src/utils/isRequire.ts"],"sourcesContent":["import type { NodePath } from '@babel/traverse';\n\nimport { isGlobal } from './isGlobal';\n\n/**\n * Checks that specified Identifier is a global `require`\n * @param id\n */\nexport function isRequire(id: NodePath | null | undefined) {\n if (!id?.isIdentifier() || id.node.name !== 'require') {\n return false;\n }\n\n return isGlobal(id, 'require');\n}\n"],"mappings":"AAEA,SAASA,QAAQ,QAAQ,YAAY;;AAErC;AACA;AACA;AACA;AACA,OAAO,SAASC,SAASA,CAACC,EAA+B,EAAE;EACzD,IAAI,CAACA,EAAE,EAAEC,YAAY,CAAC,CAAC,IAAID,EAAE,CAACE,IAAI,CAACC,IAAI,KAAK,SAAS,EAAE;IACrD,OAAO,KAAK;EACd;EAEA,OAAOL,QAAQ,CAACE,EAAE,EAAE,SAAS,CAAC;AAChC","ignoreList":[]}
|
package/esm/utils/isTypedNode.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isTypedNode.js","names":["isTypedNode","type","p"],"sources":["../../src/utils/isTypedNode.ts"],"sourcesContent":["import type { NodePath } from '@babel/traverse';\nimport type { Node } from '@babel/types';\n\nexport const isTypedNode: <T extends NodePath['type']>(\n type: T\n) => (p: NodePath) => p is NodePath<\n Extract<\n Node,\n {\n type: T;\n }\n >\n> = <T extends NodePath['type']>(type: T) => {\n return (p: NodePath): p is NodePath<Extract<Node, { type: T }>> => {\n return p.type === type;\n };\n};\n"],"mappings":"AAGA,OAAO,MAAMA,WASZ,GAAgCC,IAAO,IAAK;EAC3C,OAAQC,CAAW,IAAgD;IACjE,OAAOA,CAAC,CAACD,IAAI,KAAKA,IAAI;EACxB,CAAC;AACH,CAAC","ignoreList":[]}
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { collectExportsAndImports } from './collectExportsAndImports';
|
|
2
|
-
import { getScope } from './getScope';
|
|
3
|
-
function getCallee(p) {
|
|
4
|
-
const callee = p.get('callee');
|
|
5
|
-
if (callee.isSequenceExpression()) {
|
|
6
|
-
const expressions = callee.get('expressions');
|
|
7
|
-
if (expressions.length === 2 && expressions[0].isNumericLiteral({
|
|
8
|
-
value: 0
|
|
9
|
-
})) {
|
|
10
|
-
return expressions[1];
|
|
11
|
-
}
|
|
12
|
-
return callee;
|
|
13
|
-
}
|
|
14
|
-
return callee;
|
|
15
|
-
}
|
|
16
|
-
const JSXRuntimeSource = 'react/jsx-runtime';
|
|
17
|
-
function isJSXRuntime(p, imports) {
|
|
18
|
-
const jsxRuntime = imports.find(i => i.source === JSXRuntimeSource);
|
|
19
|
-
const jsxRuntimeName = jsxRuntime?.local?.isIdentifier() && jsxRuntime?.local?.node?.name;
|
|
20
|
-
if (jsxRuntime) {
|
|
21
|
-
const callee = getCallee(p);
|
|
22
|
-
if (jsxRuntimeName && callee.isIdentifier({
|
|
23
|
-
name: jsxRuntimeName
|
|
24
|
-
})) {
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
if (callee.isMemberExpression() && imports.find(i => i.source === JSXRuntimeSource && i.local === callee)) {
|
|
28
|
-
return true;
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
return false;
|
|
32
|
-
}
|
|
33
|
-
function isHookOrCreateElement(name) {
|
|
34
|
-
return name === 'createElement' || /use[A-Z]/.test(name);
|
|
35
|
-
}
|
|
36
|
-
function isClassicReactRuntime(p, imports) {
|
|
37
|
-
const reactImports = imports.filter(i => i.source === 'react' && (i.imported === 'default' || i.imported && isHookOrCreateElement(i.imported)));
|
|
38
|
-
if (reactImports.length === 0) return false;
|
|
39
|
-
const callee = getCallee(p);
|
|
40
|
-
if (callee.isIdentifier() && isHookOrCreateElement(callee.node.name)) {
|
|
41
|
-
const bindingPath = getScope(callee).getBinding(callee.node.name)?.path;
|
|
42
|
-
return reactImports.some(i => bindingPath?.isAncestor(i.local));
|
|
43
|
-
}
|
|
44
|
-
if (callee.isMemberExpression()) {
|
|
45
|
-
if (reactImports.some(i => i.local === callee)) {
|
|
46
|
-
// It's React.createElement in CJS
|
|
47
|
-
return true;
|
|
48
|
-
}
|
|
49
|
-
const object = callee.get('object');
|
|
50
|
-
const property = callee.get('property');
|
|
51
|
-
const defaultImport = reactImports.find(i => i.imported === 'default');
|
|
52
|
-
if (!defaultImport || !defaultImport.local.isIdentifier() || !property.isIdentifier() || !isHookOrCreateElement(property.node.name) || !object.isIdentifier({
|
|
53
|
-
name: defaultImport.local.node.name
|
|
54
|
-
})) {
|
|
55
|
-
return false;
|
|
56
|
-
}
|
|
57
|
-
const bindingPath = getScope(object).getBinding(object.node.name)?.path;
|
|
58
|
-
return bindingPath?.isAncestor(defaultImport.local) ?? false;
|
|
59
|
-
}
|
|
60
|
-
return false;
|
|
61
|
-
}
|
|
62
|
-
export function isUnnecessaryReactCall(path) {
|
|
63
|
-
const programPath = path.findParent(p => p.isProgram());
|
|
64
|
-
if (!programPath) {
|
|
65
|
-
return false;
|
|
66
|
-
}
|
|
67
|
-
const {
|
|
68
|
-
imports
|
|
69
|
-
} = collectExportsAndImports(programPath);
|
|
70
|
-
return isJSXRuntime(path, imports) || isClassicReactRuntime(path, imports);
|
|
71
|
-
}
|
|
72
|
-
//# sourceMappingURL=isUnnecessaryReactCall.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"isUnnecessaryReactCall.js","names":["collectExportsAndImports","getScope","getCallee","p","callee","get","isSequenceExpression","expressions","length","isNumericLiteral","value","JSXRuntimeSource","isJSXRuntime","imports","jsxRuntime","find","i","source","jsxRuntimeName","local","isIdentifier","node","name","isMemberExpression","isHookOrCreateElement","test","isClassicReactRuntime","reactImports","filter","imported","bindingPath","getBinding","path","some","isAncestor","object","property","defaultImport","isUnnecessaryReactCall","programPath","findParent","isProgram"],"sources":["../../src/utils/isUnnecessaryReactCall.ts"],"sourcesContent":["import type { NodePath } from '@babel/core';\nimport type { CallExpression, Program } from '@babel/types';\n\nimport type { IImport, ISideEffectImport } from './collectExportsAndImports';\nimport { collectExportsAndImports } from './collectExportsAndImports';\nimport { getScope } from './getScope';\n\nfunction getCallee(p: NodePath<CallExpression>) {\n const callee = p.get('callee');\n if (callee.isSequenceExpression()) {\n const expressions = callee.get('expressions');\n if (\n expressions.length === 2 &&\n expressions[0].isNumericLiteral({ value: 0 })\n ) {\n return expressions[1];\n }\n\n return callee;\n }\n\n return callee;\n}\n\nconst JSXRuntimeSource = 'react/jsx-runtime';\n\nfunction isJSXRuntime(\n p: NodePath<CallExpression>,\n imports: (IImport | ISideEffectImport)[]\n) {\n const jsxRuntime = imports.find((i) => i.source === JSXRuntimeSource);\n const jsxRuntimeName =\n jsxRuntime?.local?.isIdentifier() && jsxRuntime?.local?.node?.name;\n\n if (jsxRuntime) {\n const callee = getCallee(p);\n if (jsxRuntimeName && callee.isIdentifier({ name: jsxRuntimeName })) {\n return true;\n }\n\n if (\n callee.isMemberExpression() &&\n imports.find((i) => i.source === JSXRuntimeSource && i.local === callee)\n ) {\n return true;\n }\n }\n\n return false;\n}\n\nfunction isHookOrCreateElement(name: string): boolean {\n return name === 'createElement' || /use[A-Z]/.test(name);\n}\n\nfunction isClassicReactRuntime(\n p: NodePath<CallExpression>,\n imports: (IImport | ISideEffectImport)[]\n) {\n const reactImports = imports.filter(\n (i) =>\n i.source === 'react' &&\n (i.imported === 'default' ||\n (i.imported && isHookOrCreateElement(i.imported)))\n ) as IImport[];\n\n if (reactImports.length === 0) return false;\n const callee = getCallee(p);\n if (callee.isIdentifier() && isHookOrCreateElement(callee.node.name)) {\n const bindingPath = getScope(callee).getBinding(callee.node.name)?.path;\n return reactImports.some((i) => bindingPath?.isAncestor(i.local));\n }\n\n if (callee.isMemberExpression()) {\n if (reactImports.some((i) => i.local === callee)) {\n // It's React.createElement in CJS\n return true;\n }\n\n const object = callee.get('object');\n const property = callee.get('property');\n const defaultImport = reactImports.find((i) => i.imported === 'default');\n if (\n !defaultImport ||\n !defaultImport.local.isIdentifier() ||\n !property.isIdentifier() ||\n !isHookOrCreateElement(property.node.name) ||\n !object.isIdentifier({ name: defaultImport.local.node.name })\n ) {\n return false;\n }\n\n const bindingPath = getScope(object).getBinding(object.node.name)?.path;\n return bindingPath?.isAncestor(defaultImport.local) ?? false;\n }\n\n return false;\n}\n\nexport function isUnnecessaryReactCall(path: NodePath<CallExpression>) {\n const programPath = path.findParent((p) => p.isProgram()) as\n | NodePath<Program>\n | undefined;\n if (!programPath) {\n return false;\n }\n\n const { imports } = collectExportsAndImports(programPath);\n\n return isJSXRuntime(path, imports) || isClassicReactRuntime(path, imports);\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,276 +0,0 @@
|
|
|
1
|
-
import { types as t } from '@babel/core';
|
|
2
|
-
import { nonType } from './findIdentifiers';
|
|
3
|
-
import { isUnnecessaryReactCall } from './isUnnecessaryReactCall';
|
|
4
|
-
import { applyAction, removeWithRelated } from './scopeHelpers';
|
|
5
|
-
import { JSXElementsRemover } from './visitors/JSXElementsRemover';
|
|
6
|
-
import { collectExportsAndImports } from './collectExportsAndImports';
|
|
7
|
-
const isGlobal = id => {
|
|
8
|
-
if (!nonType(id)) {
|
|
9
|
-
return false;
|
|
10
|
-
}
|
|
11
|
-
const {
|
|
12
|
-
scope
|
|
13
|
-
} = id;
|
|
14
|
-
const {
|
|
15
|
-
name
|
|
16
|
-
} = id.node;
|
|
17
|
-
return !scope.hasBinding(name) && scope.hasGlobal(name);
|
|
18
|
-
};
|
|
19
|
-
const ssrCheckFields = new Set(['document', 'location', 'navigator', 'sessionStorage', 'localStorage', 'window']);
|
|
20
|
-
const forbiddenGlobals = new Set([...ssrCheckFields, '$RefreshReg$', '$RefreshSig$', 'XMLHttpRequest', 'clearImmediate', 'clearInterval', 'clearTimeout', 'fetch', 'navigator', 'setImmediate', 'setInterval', 'setTimeout']);
|
|
21
|
-
const alwaysForbiddenIdentifiers = new Set(['$RefreshReg$', '$RefreshSig$']);
|
|
22
|
-
const isBrowserGlobal = id => {
|
|
23
|
-
const {
|
|
24
|
-
name
|
|
25
|
-
} = id.node;
|
|
26
|
-
if (alwaysForbiddenIdentifiers.has(name)) {
|
|
27
|
-
return nonType(id);
|
|
28
|
-
}
|
|
29
|
-
return forbiddenGlobals.has(name) && isGlobal(id);
|
|
30
|
-
};
|
|
31
|
-
const isSSRCheckField = id => {
|
|
32
|
-
return ssrCheckFields.has(id.node.name) && isGlobal(id);
|
|
33
|
-
};
|
|
34
|
-
const promiseCallbackMethods = new Set(['then', 'catch', 'finally']);
|
|
35
|
-
const getPropertyName = path => {
|
|
36
|
-
if (path.isIdentifier()) {
|
|
37
|
-
return path.node.name;
|
|
38
|
-
}
|
|
39
|
-
if (path.isStringLiteral()) {
|
|
40
|
-
return path.node.value;
|
|
41
|
-
}
|
|
42
|
-
return null;
|
|
43
|
-
};
|
|
44
|
-
const isPromiseCallbackArgument = (path, ref) => {
|
|
45
|
-
return path.get('arguments').some(arg => arg === ref || arg.isAncestor(ref));
|
|
46
|
-
};
|
|
47
|
-
const findPromiseCallbackOwner = path => {
|
|
48
|
-
const owner = path.findParent(parent => {
|
|
49
|
-
if (parent.isNewExpression()) {
|
|
50
|
-
const callee = parent.get('callee');
|
|
51
|
-
return callee.isIdentifier({
|
|
52
|
-
name: 'Promise'
|
|
53
|
-
}) && isPromiseCallbackArgument(parent, path);
|
|
54
|
-
}
|
|
55
|
-
if (parent.isCallExpression()) {
|
|
56
|
-
const callee = parent.get('callee');
|
|
57
|
-
if (!callee.isMemberExpression()) return false;
|
|
58
|
-
const propName = getPropertyName(callee.get('property'));
|
|
59
|
-
return propName !== null && promiseCallbackMethods.has(propName) && isPromiseCallbackArgument(parent, path);
|
|
60
|
-
}
|
|
61
|
-
return false;
|
|
62
|
-
});
|
|
63
|
-
return owner;
|
|
64
|
-
};
|
|
65
|
-
const removeForbiddenGlobal = path => {
|
|
66
|
-
const promiseOwner = findPromiseCallbackOwner(path);
|
|
67
|
-
if (promiseOwner) {
|
|
68
|
-
removeWithRelated([promiseOwner]);
|
|
69
|
-
} else {
|
|
70
|
-
removeWithRelated([path]);
|
|
71
|
-
}
|
|
72
|
-
};
|
|
73
|
-
const getImport = path => {
|
|
74
|
-
const programPath = path.findParent(p => p.isProgram());
|
|
75
|
-
if (!programPath) {
|
|
76
|
-
return undefined;
|
|
77
|
-
}
|
|
78
|
-
const {
|
|
79
|
-
imports
|
|
80
|
-
} = collectExportsAndImports(programPath);
|
|
81
|
-
if (path.isIdentifier()) {
|
|
82
|
-
const binding = path.scope.getBinding(path.node.name);
|
|
83
|
-
const matched = binding && imports.find(imp => imp.imported !== 'side-effect' && binding.path.isAncestor(imp.local));
|
|
84
|
-
if (matched) {
|
|
85
|
-
return [matched.source, matched.imported];
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
if (path.isMemberExpression()) {
|
|
89
|
-
const leftPath = path.get('object');
|
|
90
|
-
if (!leftPath.isIdentifier()) {
|
|
91
|
-
// Nested member expression. Not supported yet.
|
|
92
|
-
return undefined;
|
|
93
|
-
}
|
|
94
|
-
const rightPath = path.get('property');
|
|
95
|
-
if (!rightPath.isIdentifier()) {
|
|
96
|
-
return undefined;
|
|
97
|
-
}
|
|
98
|
-
const binding = path.scope.getBinding(leftPath.node.name);
|
|
99
|
-
const matched = binding && imports.find(imp => imp.imported !== 'side-effect' && binding.path.isAncestor(imp.local));
|
|
100
|
-
if (matched) {
|
|
101
|
-
return [matched.source, rightPath.node.name];
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
return undefined;
|
|
105
|
-
};
|
|
106
|
-
const getTypeImport = path => {
|
|
107
|
-
// We are looking for either Identifier or TSQualifiedName in path
|
|
108
|
-
if (path.isIdentifier()) {
|
|
109
|
-
const binding = path.scope.getBinding(path.node.name);
|
|
110
|
-
if (!binding) {
|
|
111
|
-
return undefined;
|
|
112
|
-
}
|
|
113
|
-
if (!binding.path.isImportSpecifier() || !binding.path.parentPath.isImportDeclaration()) {
|
|
114
|
-
return undefined;
|
|
115
|
-
}
|
|
116
|
-
const importDeclaration = binding.path.parentPath;
|
|
117
|
-
const imported = binding.path.get('imported');
|
|
118
|
-
const source = importDeclaration.node.source.value;
|
|
119
|
-
const importedNode = imported.node;
|
|
120
|
-
return [source, t.isIdentifier(importedNode) ? importedNode.name : importedNode.value];
|
|
121
|
-
}
|
|
122
|
-
if (path.isTSQualifiedName()) {
|
|
123
|
-
const leftPath = path.get('left');
|
|
124
|
-
if (!leftPath.isIdentifier()) {
|
|
125
|
-
// Nested type. Not supported yet.
|
|
126
|
-
return undefined;
|
|
127
|
-
}
|
|
128
|
-
const rightPath = path.get('right');
|
|
129
|
-
const binding = path.scope.getBinding(leftPath.node.name);
|
|
130
|
-
if (!binding) {
|
|
131
|
-
return undefined;
|
|
132
|
-
}
|
|
133
|
-
if (!binding.path.isImportDefaultSpecifier() && !binding.path.isImportNamespaceSpecifier() || !binding.path.parentPath.isImportDeclaration()) {
|
|
134
|
-
return undefined;
|
|
135
|
-
}
|
|
136
|
-
return [binding.path.parentPath.node.source.value, rightPath.node.name];
|
|
137
|
-
}
|
|
138
|
-
return undefined;
|
|
139
|
-
};
|
|
140
|
-
const isTypeMatch = (id, types) => {
|
|
141
|
-
const typeAnnotation = id.get('typeAnnotation');
|
|
142
|
-
if (!typeAnnotation.isTSTypeAnnotation()) {
|
|
143
|
-
return false;
|
|
144
|
-
}
|
|
145
|
-
const typeReference = typeAnnotation.get('typeAnnotation');
|
|
146
|
-
if (!typeReference.isTSTypeReference()) {
|
|
147
|
-
return false;
|
|
148
|
-
}
|
|
149
|
-
const typeName = typeReference.get('typeName');
|
|
150
|
-
const matchedImport = getTypeImport(typeName);
|
|
151
|
-
return matchedImport !== undefined && matchedImport[0] in types && types[matchedImport[0]].includes(matchedImport[1]);
|
|
152
|
-
};
|
|
153
|
-
const isHOC = (path, hocs) => {
|
|
154
|
-
let calleePath = path;
|
|
155
|
-
while (calleePath.isCallExpression()) {
|
|
156
|
-
calleePath = calleePath.get('callee');
|
|
157
|
-
}
|
|
158
|
-
const matchedImport = getImport(calleePath);
|
|
159
|
-
return matchedImport !== undefined && matchedImport[0] in hocs && hocs[matchedImport[0]].includes(matchedImport[1]);
|
|
160
|
-
};
|
|
161
|
-
const defaultPlaceholder = '...';
|
|
162
|
-
const defaultReactComponentTypes = ['ExoticComponent', 'FC', 'ForwardRefExoticComponent', 'FunctionComponent', 'LazyExoticComponent', 'MemoExoticComponent', 'NamedExoticComponent'];
|
|
163
|
-
export const removeDangerousCode = (programPath, options) => {
|
|
164
|
-
const hocs = options?.hocs ?? {};
|
|
165
|
-
const componentTypes = options?.componentTypes ?? {
|
|
166
|
-
react: [defaultPlaceholder]
|
|
167
|
-
};
|
|
168
|
-
if (Array.isArray(componentTypes.react) && componentTypes.react.includes(defaultPlaceholder)) {
|
|
169
|
-
const idx = componentTypes.react.indexOf(defaultPlaceholder);
|
|
170
|
-
componentTypes.react = [...componentTypes.react];
|
|
171
|
-
componentTypes.react.splice(idx, 1, ...defaultReactComponentTypes);
|
|
172
|
-
}
|
|
173
|
-
programPath.traverse({
|
|
174
|
-
// JSX can be replaced with a dummy value,
|
|
175
|
-
// but we have to do it after we processed template tags.
|
|
176
|
-
CallExpression: {
|
|
177
|
-
enter(p) {
|
|
178
|
-
if (isUnnecessaryReactCall(p)) {
|
|
179
|
-
JSXElementsRemover(p);
|
|
180
|
-
}
|
|
181
|
-
if (isHOC(p, hocs)) {
|
|
182
|
-
applyAction(['replace', p, t.arrowFunctionExpression([], t.nullLiteral())]);
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
},
|
|
186
|
-
JSXElement: {
|
|
187
|
-
enter: JSXElementsRemover
|
|
188
|
-
},
|
|
189
|
-
JSXFragment: {
|
|
190
|
-
enter: JSXElementsRemover
|
|
191
|
-
},
|
|
192
|
-
MemberExpression(p, state) {
|
|
193
|
-
const obj = p.get('object');
|
|
194
|
-
const prop = p.get('property');
|
|
195
|
-
if (!obj.isIdentifier({
|
|
196
|
-
name: 'window'
|
|
197
|
-
})) {
|
|
198
|
-
return;
|
|
199
|
-
}
|
|
200
|
-
const name = getPropertyName(prop);
|
|
201
|
-
if (!name) {
|
|
202
|
-
return;
|
|
203
|
-
}
|
|
204
|
-
state.windowScoped.add(name);
|
|
205
|
-
// eslint-disable-next-line no-param-reassign
|
|
206
|
-
state.globals = state.globals.filter(id => {
|
|
207
|
-
if (id.node.name === name) {
|
|
208
|
-
removeWithRelated([id]);
|
|
209
|
-
return false;
|
|
210
|
-
}
|
|
211
|
-
return true;
|
|
212
|
-
});
|
|
213
|
-
},
|
|
214
|
-
MetaProperty(p) {
|
|
215
|
-
// Remove all references to `import.meta`
|
|
216
|
-
removeWithRelated([p]);
|
|
217
|
-
},
|
|
218
|
-
Identifier(p, state) {
|
|
219
|
-
if (p.find(parent => parent.isTSTypeReference())) {
|
|
220
|
-
// don't mess with TS type references
|
|
221
|
-
return;
|
|
222
|
-
}
|
|
223
|
-
if (isBrowserGlobal(p)) {
|
|
224
|
-
if (p.find(parentPath => parentPath.isUnaryExpression({
|
|
225
|
-
operator: 'typeof'
|
|
226
|
-
}) || parentPath.isTSTypeQuery())) {
|
|
227
|
-
// Ignore `typeof window` expressions
|
|
228
|
-
return;
|
|
229
|
-
}
|
|
230
|
-
if (p.parentPath.isClassProperty()) {
|
|
231
|
-
// ignore class property decls
|
|
232
|
-
return;
|
|
233
|
-
}
|
|
234
|
-
if (p.parentPath.isMemberExpression() && p.key === 'property') {
|
|
235
|
-
// ignore e.g this.fetch()
|
|
236
|
-
// window.fetch will be handled by the windowScoped block below
|
|
237
|
-
return;
|
|
238
|
-
}
|
|
239
|
-
removeForbiddenGlobal(p);
|
|
240
|
-
return;
|
|
241
|
-
}
|
|
242
|
-
if (state.windowScoped.has(p.node.name)) {
|
|
243
|
-
removeForbiddenGlobal(p);
|
|
244
|
-
} else if (isGlobal(p)) {
|
|
245
|
-
state.globals.push(p);
|
|
246
|
-
}
|
|
247
|
-
},
|
|
248
|
-
// Since we can use happy-dom, typical SSR checks may not work as expected.
|
|
249
|
-
// We need to detect them and replace with an "undefined" literal.
|
|
250
|
-
UnaryExpression(p) {
|
|
251
|
-
if (p.node.operator !== 'typeof') {
|
|
252
|
-
return;
|
|
253
|
-
}
|
|
254
|
-
const arg = p.get('argument');
|
|
255
|
-
if (!arg.isIdentifier() || !isSSRCheckField(arg)) {
|
|
256
|
-
return;
|
|
257
|
-
}
|
|
258
|
-
applyAction(['replace', p, {
|
|
259
|
-
type: 'StringLiteral',
|
|
260
|
-
value: 'undefined'
|
|
261
|
-
}]);
|
|
262
|
-
},
|
|
263
|
-
VariableDeclarator(p) {
|
|
264
|
-
const id = p.get('id');
|
|
265
|
-
const init = p.get('init');
|
|
266
|
-
if (id.isIdentifier() && isTypeMatch(id, componentTypes) && init.isExpression()) {
|
|
267
|
-
// Variable is typed as a React component. We can replace its value with a null-function.
|
|
268
|
-
applyAction(['replace', init, t.arrowFunctionExpression([], t.nullLiteral())]);
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
}, {
|
|
272
|
-
globals: [],
|
|
273
|
-
windowScoped: new Set()
|
|
274
|
-
});
|
|
275
|
-
};
|
|
276
|
-
//# sourceMappingURL=removeDangerousCode.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"removeDangerousCode.js","names":["types","t","nonType","isUnnecessaryReactCall","applyAction","removeWithRelated","JSXElementsRemover","collectExportsAndImports","isGlobal","id","scope","name","node","hasBinding","hasGlobal","ssrCheckFields","Set","forbiddenGlobals","alwaysForbiddenIdentifiers","isBrowserGlobal","has","isSSRCheckField","promiseCallbackMethods","getPropertyName","path","isIdentifier","isStringLiteral","value","isPromiseCallbackArgument","ref","get","some","arg","isAncestor","findPromiseCallbackOwner","owner","findParent","parent","isNewExpression","callee","isCallExpression","isMemberExpression","propName","removeForbiddenGlobal","promiseOwner","getImport","programPath","p","isProgram","undefined","imports","binding","getBinding","matched","find","imp","imported","local","source","leftPath","rightPath","getTypeImport","isImportSpecifier","parentPath","isImportDeclaration","importDeclaration","importedNode","isTSQualifiedName","isImportDefaultSpecifier","isImportNamespaceSpecifier","isTypeMatch","typeAnnotation","isTSTypeAnnotation","typeReference","isTSTypeReference","typeName","matchedImport","includes","isHOC","hocs","calleePath","defaultPlaceholder","defaultReactComponentTypes","removeDangerousCode","options","componentTypes","react","Array","isArray","idx","indexOf","splice","traverse","CallExpression","enter","arrowFunctionExpression","nullLiteral","JSXElement","JSXFragment","MemberExpression","state","obj","prop","windowScoped","add","globals","filter","MetaProperty","Identifier","isUnaryExpression","operator","isTSTypeQuery","isClassProperty","key","push","UnaryExpression","type","VariableDeclarator","init","isExpression"],"sources":["../../src/utils/removeDangerousCode.ts"],"sourcesContent":["import type { NodePath } from '@babel/core';\nimport { types as t } from '@babel/core';\nimport type {\n CallExpression,\n Expression,\n Identifier,\n NewExpression,\n Program,\n V8IntrinsicIdentifier,\n} from '@babel/types';\n\nimport type { CodeRemoverOptions } from '@wyw-in-js/shared';\nimport { nonType } from './findIdentifiers';\nimport { isUnnecessaryReactCall } from './isUnnecessaryReactCall';\nimport { applyAction, removeWithRelated } from './scopeHelpers';\nimport { JSXElementsRemover } from './visitors/JSXElementsRemover';\nimport type { IImport } from './collectExportsAndImports';\nimport { collectExportsAndImports } from './collectExportsAndImports';\n\nconst isGlobal = (id: NodePath<Identifier>): boolean => {\n if (!nonType(id)) {\n return false;\n }\n\n const { scope } = id;\n const { name } = id.node;\n return !scope.hasBinding(name) && scope.hasGlobal(name);\n};\n\nconst ssrCheckFields = new Set([\n 'document',\n 'location',\n 'navigator',\n 'sessionStorage',\n 'localStorage',\n 'window',\n]);\n\nconst forbiddenGlobals = new Set([\n ...ssrCheckFields,\n '$RefreshReg$',\n '$RefreshSig$',\n 'XMLHttpRequest',\n 'clearImmediate',\n 'clearInterval',\n 'clearTimeout',\n 'fetch',\n 'navigator',\n 'setImmediate',\n 'setInterval',\n 'setTimeout',\n]);\n\nconst alwaysForbiddenIdentifiers = new Set(['$RefreshReg$', '$RefreshSig$']);\n\nconst isBrowserGlobal = (id: NodePath<Identifier>) => {\n const { name } = id.node;\n if (alwaysForbiddenIdentifiers.has(name)) {\n return nonType(id);\n }\n\n return forbiddenGlobals.has(name) && isGlobal(id);\n};\n\nconst isSSRCheckField = (id: NodePath<Identifier>) => {\n return ssrCheckFields.has(id.node.name) && isGlobal(id);\n};\n\nconst promiseCallbackMethods = new Set(['then', 'catch', 'finally']);\n\nconst getPropertyName = (path: NodePath): string | null => {\n if (path.isIdentifier()) {\n return path.node.name;\n }\n\n if (path.isStringLiteral()) {\n return path.node.value;\n }\n\n return null;\n};\n\nconst isPromiseCallbackArgument = (\n path: NodePath<CallExpression | NewExpression>,\n ref: NodePath\n) => {\n return path\n .get('arguments')\n .some((arg) => arg === ref || arg.isAncestor(ref));\n};\n\nconst findPromiseCallbackOwner = (\n path: NodePath\n): NodePath<CallExpression | NewExpression> | null => {\n const owner = path.findParent((parent) => {\n if (parent.isNewExpression()) {\n const callee = parent.get('callee');\n return (\n callee.isIdentifier({ name: 'Promise' }) &&\n isPromiseCallbackArgument(parent, path)\n );\n }\n\n if (parent.isCallExpression()) {\n const callee = parent.get('callee');\n if (!callee.isMemberExpression()) return false;\n const propName = getPropertyName(callee.get('property'));\n return (\n propName !== null &&\n promiseCallbackMethods.has(propName) &&\n isPromiseCallbackArgument(parent, path)\n );\n }\n\n return false;\n });\n\n return owner as NodePath<CallExpression | NewExpression> | null;\n};\n\nconst removeForbiddenGlobal = (path: NodePath) => {\n const promiseOwner = findPromiseCallbackOwner(path);\n if (promiseOwner) {\n removeWithRelated([promiseOwner]);\n } else {\n removeWithRelated([path]);\n }\n};\n\nconst getImport = (path: NodePath): [string, string] | undefined => {\n const programPath = path.findParent((p) => p.isProgram()) as\n | NodePath<Program>\n | undefined;\n if (!programPath) {\n return undefined;\n }\n\n const { imports } = collectExportsAndImports(programPath);\n\n if (path.isIdentifier()) {\n const binding = path.scope.getBinding(path.node.name);\n const matched =\n binding &&\n imports.find(\n (imp): imp is IImport =>\n imp.imported !== 'side-effect' && binding.path.isAncestor(imp.local)\n );\n\n if (matched) {\n return [matched.source, matched.imported];\n }\n }\n\n if (path.isMemberExpression()) {\n const leftPath = path.get('object');\n if (!leftPath.isIdentifier()) {\n // Nested member expression. Not supported yet.\n return undefined;\n }\n\n const rightPath = path.get('property');\n if (!rightPath.isIdentifier()) {\n return undefined;\n }\n\n const binding = path.scope.getBinding(leftPath.node.name);\n const matched =\n binding &&\n imports.find(\n (imp): imp is IImport =>\n imp.imported !== 'side-effect' && binding.path.isAncestor(imp.local)\n );\n\n if (matched) {\n return [matched.source, rightPath.node.name];\n }\n }\n\n return undefined;\n};\n\nconst getTypeImport = (path: NodePath): [string, string] | undefined => {\n // We are looking for either Identifier or TSQualifiedName in path\n if (path.isIdentifier()) {\n const binding = path.scope.getBinding(path.node.name);\n if (!binding) {\n return undefined;\n }\n\n if (\n !binding.path.isImportSpecifier() ||\n !binding.path.parentPath.isImportDeclaration()\n ) {\n return undefined;\n }\n\n const importDeclaration = binding.path.parentPath;\n const imported = binding.path.get('imported');\n const source = importDeclaration.node.source.value;\n const importedNode = imported.node;\n return [\n source,\n t.isIdentifier(importedNode) ? importedNode.name : importedNode.value,\n ];\n }\n\n if (path.isTSQualifiedName()) {\n const leftPath = path.get('left');\n if (!leftPath.isIdentifier()) {\n // Nested type. Not supported yet.\n return undefined;\n }\n\n const rightPath = path.get('right');\n\n const binding = path.scope.getBinding(leftPath.node.name);\n if (!binding) {\n return undefined;\n }\n\n if (\n (!binding.path.isImportDefaultSpecifier() &&\n !binding.path.isImportNamespaceSpecifier()) ||\n !binding.path.parentPath.isImportDeclaration()\n ) {\n return undefined;\n }\n\n return [binding.path.parentPath.node.source.value, rightPath.node.name];\n }\n\n return undefined;\n};\n\nconst isTypeMatch = (\n id: NodePath<Identifier>,\n types: Record<string, string[]>\n): boolean => {\n const typeAnnotation = id.get('typeAnnotation');\n if (!typeAnnotation.isTSTypeAnnotation()) {\n return false;\n }\n\n const typeReference = typeAnnotation.get('typeAnnotation');\n if (!typeReference.isTSTypeReference()) {\n return false;\n }\n\n const typeName = typeReference.get('typeName');\n const matchedImport = getTypeImport(typeName);\n return (\n matchedImport !== undefined &&\n matchedImport[0] in types &&\n types[matchedImport[0]].includes(matchedImport[1])\n );\n};\n\nconst isHOC = (\n path: NodePath<CallExpression>,\n hocs: Record<string, string[]>\n) => {\n let calleePath: NodePath<V8IntrinsicIdentifier | Expression> = path;\n while (calleePath.isCallExpression()) {\n calleePath = calleePath.get('callee');\n }\n\n const matchedImport = getImport(calleePath);\n return (\n matchedImport !== undefined &&\n matchedImport[0] in hocs &&\n hocs[matchedImport[0]].includes(matchedImport[1])\n );\n};\n\nconst defaultPlaceholder = '...';\n\nconst defaultReactComponentTypes = [\n 'ExoticComponent',\n 'FC',\n 'ForwardRefExoticComponent',\n 'FunctionComponent',\n 'LazyExoticComponent',\n 'MemoExoticComponent',\n 'NamedExoticComponent',\n];\n\nexport const removeDangerousCode = (\n programPath: NodePath<Program>,\n options?: CodeRemoverOptions\n) => {\n const hocs = options?.hocs ?? {};\n\n const componentTypes = options?.componentTypes ?? {\n react: [defaultPlaceholder],\n };\n\n if (\n Array.isArray(componentTypes.react) &&\n componentTypes.react.includes(defaultPlaceholder)\n ) {\n const idx = componentTypes.react.indexOf(defaultPlaceholder);\n componentTypes.react = [...componentTypes.react];\n componentTypes.react.splice(idx, 1, ...defaultReactComponentTypes);\n }\n\n programPath.traverse(\n {\n // JSX can be replaced with a dummy value,\n // but we have to do it after we processed template tags.\n CallExpression: {\n enter(p) {\n if (isUnnecessaryReactCall(p)) {\n JSXElementsRemover(p);\n }\n\n if (isHOC(p, hocs)) {\n applyAction([\n 'replace',\n p,\n t.arrowFunctionExpression([], t.nullLiteral()),\n ]);\n }\n },\n },\n JSXElement: {\n enter: JSXElementsRemover,\n },\n JSXFragment: {\n enter: JSXElementsRemover,\n },\n MemberExpression(p, state) {\n const obj = p.get('object');\n const prop = p.get('property');\n if (!obj.isIdentifier({ name: 'window' })) {\n return;\n }\n\n const name = getPropertyName(prop);\n if (!name) {\n return;\n }\n\n state.windowScoped.add(name);\n // eslint-disable-next-line no-param-reassign\n state.globals = state.globals.filter((id) => {\n if (id.node.name === name) {\n removeWithRelated([id]);\n return false;\n }\n\n return true;\n });\n },\n MetaProperty(p) {\n // Remove all references to `import.meta`\n removeWithRelated([p]);\n },\n Identifier(p, state) {\n if (p.find((parent) => parent.isTSTypeReference())) {\n // don't mess with TS type references\n return;\n }\n if (isBrowserGlobal(p)) {\n if (\n p.find(\n (parentPath) =>\n parentPath.isUnaryExpression({ operator: 'typeof' }) ||\n parentPath.isTSTypeQuery()\n )\n ) {\n // Ignore `typeof window` expressions\n return;\n }\n\n if (p.parentPath.isClassProperty()) {\n // ignore class property decls\n return;\n }\n if (p.parentPath.isMemberExpression() && p.key === 'property') {\n // ignore e.g this.fetch()\n // window.fetch will be handled by the windowScoped block below\n return;\n }\n\n removeForbiddenGlobal(p);\n\n return;\n }\n\n if (state.windowScoped.has(p.node.name)) {\n removeForbiddenGlobal(p);\n } else if (isGlobal(p)) {\n state.globals.push(p);\n }\n },\n\n // Since we can use happy-dom, typical SSR checks may not work as expected.\n // We need to detect them and replace with an \"undefined\" literal.\n UnaryExpression(p) {\n if (p.node.operator !== 'typeof') {\n return;\n }\n const arg = p.get('argument');\n if (!arg.isIdentifier() || !isSSRCheckField(arg)) {\n return;\n }\n\n applyAction([\n 'replace',\n p,\n { type: 'StringLiteral', value: 'undefined' },\n ]);\n },\n VariableDeclarator(p) {\n const id = p.get('id');\n const init = p.get('init');\n if (\n id.isIdentifier() &&\n isTypeMatch(id, componentTypes) &&\n init.isExpression()\n ) {\n // Variable is typed as a React component. We can replace its value with a null-function.\n applyAction([\n 'replace',\n init,\n t.arrowFunctionExpression([], t.nullLiteral()),\n ]);\n }\n },\n },\n {\n globals: [] as NodePath<Identifier>[],\n windowScoped: new Set<string>(),\n }\n );\n};\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
const IMPORT_META_ENV = '__wyw_import_meta_env';
|
|
2
|
-
const isRecord = obj => typeof obj === 'object' && obj !== null;
|
|
3
|
-
function isImportMeta(obj) {
|
|
4
|
-
if (!isRecord(obj)) {
|
|
5
|
-
return false;
|
|
6
|
-
}
|
|
7
|
-
const {
|
|
8
|
-
meta,
|
|
9
|
-
property
|
|
10
|
-
} = obj;
|
|
11
|
-
if (!isRecord(meta) || !isRecord(property)) {
|
|
12
|
-
return false;
|
|
13
|
-
}
|
|
14
|
-
return meta.name === 'import' && property.name === 'meta';
|
|
15
|
-
}
|
|
16
|
-
function isImportMetaEnv(node) {
|
|
17
|
-
const {
|
|
18
|
-
computed,
|
|
19
|
-
object,
|
|
20
|
-
property
|
|
21
|
-
} = node;
|
|
22
|
-
if (computed) {
|
|
23
|
-
return false;
|
|
24
|
-
}
|
|
25
|
-
if (!isImportMeta(object)) {
|
|
26
|
-
return false;
|
|
27
|
-
}
|
|
28
|
-
return property.type === 'Identifier' && property.name === 'env';
|
|
29
|
-
}
|
|
30
|
-
export function replaceImportMetaEnv(programPath, t) {
|
|
31
|
-
programPath.traverse({
|
|
32
|
-
MemberExpression(path) {
|
|
33
|
-
if (isImportMetaEnv(path.node)) {
|
|
34
|
-
path.replaceWith(t.identifier(IMPORT_META_ENV));
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
OptionalMemberExpression(path) {
|
|
38
|
-
if (isImportMetaEnv(path.node)) {
|
|
39
|
-
path.replaceWith(t.identifier(IMPORT_META_ENV));
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
//# sourceMappingURL=replaceImportMetaEnv.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"replaceImportMetaEnv.js","names":["IMPORT_META_ENV","isRecord","obj","isImportMeta","meta","property","name","isImportMetaEnv","node","computed","object","type","replaceImportMetaEnv","programPath","t","traverse","MemberExpression","path","replaceWith","identifier","OptionalMemberExpression"],"sources":["../../src/utils/replaceImportMetaEnv.ts"],"sourcesContent":["import type { NodePath } from '@babel/traverse';\nimport type { MemberExpression, OptionalMemberExpression } from '@babel/types';\n\nimport type { Core } from '../babel';\n\nconst IMPORT_META_ENV = '__wyw_import_meta_env';\n\ntype MemberExpressionNode = MemberExpression | OptionalMemberExpression;\n\ntype ImportMetaLike = {\n meta: { name: string };\n property: { name: string };\n};\n\nconst isRecord = (obj: unknown): obj is Record<string, unknown> =>\n typeof obj === 'object' && obj !== null;\n\nfunction isImportMeta(obj: unknown): obj is ImportMetaLike {\n if (!isRecord(obj)) {\n return false;\n }\n\n const { meta, property } = obj;\n\n if (!isRecord(meta) || !isRecord(property)) {\n return false;\n }\n\n return meta.name === 'import' && property.name === 'meta';\n}\n\nfunction isImportMetaEnv(node: MemberExpressionNode): boolean {\n const { computed, object, property } = node;\n\n if (computed) {\n return false;\n }\n\n if (!isImportMeta(object)) {\n return false;\n }\n\n return property.type === 'Identifier' && property.name === 'env';\n}\n\nexport function replaceImportMetaEnv(\n programPath: NodePath,\n t: Core['types']\n): void {\n programPath.traverse({\n MemberExpression(path) {\n if (isImportMetaEnv(path.node)) {\n path.replaceWith(t.identifier(IMPORT_META_ENV));\n }\n },\n OptionalMemberExpression(path) {\n if (isImportMetaEnv(path.node)) {\n path.replaceWith(t.identifier(IMPORT_META_ENV));\n }\n },\n });\n}\n"],"mappings":"AAKA,MAAMA,eAAe,GAAG,uBAAuB;AAS/C,MAAMC,QAAQ,GAAIC,GAAY,IAC5B,OAAOA,GAAG,KAAK,QAAQ,IAAIA,GAAG,KAAK,IAAI;AAEzC,SAASC,YAAYA,CAACD,GAAY,EAAyB;EACzD,IAAI,CAACD,QAAQ,CAACC,GAAG,CAAC,EAAE;IAClB,OAAO,KAAK;EACd;EAEA,MAAM;IAAEE,IAAI;IAAEC;EAAS,CAAC,GAAGH,GAAG;EAE9B,IAAI,CAACD,QAAQ,CAACG,IAAI,CAAC,IAAI,CAACH,QAAQ,CAACI,QAAQ,CAAC,EAAE;IAC1C,OAAO,KAAK;EACd;EAEA,OAAOD,IAAI,CAACE,IAAI,KAAK,QAAQ,IAAID,QAAQ,CAACC,IAAI,KAAK,MAAM;AAC3D;AAEA,SAASC,eAAeA,CAACC,IAA0B,EAAW;EAC5D,MAAM;IAAEC,QAAQ;IAAEC,MAAM;IAAEL;EAAS,CAAC,GAAGG,IAAI;EAE3C,IAAIC,QAAQ,EAAE;IACZ,OAAO,KAAK;EACd;EAEA,IAAI,CAACN,YAAY,CAACO,MAAM,CAAC,EAAE;IACzB,OAAO,KAAK;EACd;EAEA,OAAOL,QAAQ,CAACM,IAAI,KAAK,YAAY,IAAIN,QAAQ,CAACC,IAAI,KAAK,KAAK;AAClE;AAEA,OAAO,SAASM,oBAAoBA,CAClCC,WAAqB,EACrBC,CAAgB,EACV;EACND,WAAW,CAACE,QAAQ,CAAC;IACnBC,gBAAgBA,CAACC,IAAI,EAAE;MACrB,IAAIV,eAAe,CAACU,IAAI,CAACT,IAAI,CAAC,EAAE;QAC9BS,IAAI,CAACC,WAAW,CAACJ,CAAC,CAACK,UAAU,CAACnB,eAAe,CAAC,CAAC;MACjD;IACF,CAAC;IACDoB,wBAAwBA,CAACH,IAAI,EAAE;MAC7B,IAAIV,eAAe,CAACU,IAAI,CAACT,IAAI,CAAC,EAAE;QAC9BS,IAAI,CAACC,WAAW,CAACJ,CAAC,CAACK,UAAU,CAACnB,eAAe,CAAC,CAAC;MACjD;IACF;EACF,CAAC,CAAC;AACJ","ignoreList":[]}
|