API ReferenceFunctions
conservativeTaint
function conservativeTaint(): TaintFacet;Defined in: packages/core/src/symbols.ts:51
Conservative taint for COMPILE-TIME params: they are resolved and spliced at
compile time and are never derived from runtime-tainted inputs, so the safe
(conservative) facet here is { tainted: false }.
NOTE: the name describes the compile-time-param stance, NOT a general "assume tainted" helper. Downstream runtime / shared-output passes (e.g. #23) must NOT assume this propagates taint — they have to compute and thread taint through their own derivations rather than reuse this constant.