/** * Constant Propagation Engine * * This module re-exports from the modular constant-propagation/ directory. * For new code, import directly from './constant-propagation/index.js'. * * @module constant-propagation */ export { type ConstantType, type ConstantValue, type ConstantPropagatorResult, type ConstantPropagationOptions, isKnown, createUnknown, createConstant, getNodeText, getNodeLine, TAINT_PATTERNS, TAINT_PATTERN_REGEX, SANITIZER_METHODS, PROPAGATOR_METHODS, ExpressionEvaluator, ConstantPropagator, analyzeConstantPropagation, isFalsePositive, isCorrelatedPredicateFP, } from './constant-propagation/index.js'; //# sourceMappingURL=constant-propagation.d.ts.map