You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Part of #345. Depends on #350. Optional for the property-directed sequential baseline in #354; required before claiming c8/V8 branch-guided search. Selection of a conversion tool should follow the measured cases below, without creating a general converter framework.
Goal
Map branch coverage produced by the pinned c8/V8 backend to TypeScript branch arms and EtsIR CFG edges.
Why
#350 and #381 map backend-neutral binary Istanbul if records to ordered true/false EtsIR successors. The current c8@10.1.3 path uses v8-to-istanbul@9.3.0, which converts every V8 block range into an independent Istanbul-shaped record with type: "branch" and exactly one location/count.
For example, when only the true side of an if/else runs, raw V8 coverage contains a zero-count range for the unexecuted else. When only the false side runs, it contains a zero-count range for the true body. The converted report does not preserve the originating if, the relationship between its arms, or the true/false outcome. It also emits similar records for function and script ranges. Therefore #381 reports these records as UNSUPPORTED instead of guessing CFG edges, while retaining usable statement mappings.
Statement coverage cannot reveal every missed edge. For example, if only the true side of an if without an else runs, every statement may be covered while the false edge remains untested.
Scope
Evaluate an AST-aware V8-to-Istanbul converter, including Monocart, before implementing a custom conversion.
Preserve enough raw V8 range hierarchy and source-map information to associate coverage with original TypeScript constructs.
Produce backend-neutral binary if coverage with explicit true and false arms when the association is exact.
Report ambiguous or unsupported cases instead of inferring an edge.
Keep successfully mapped statement coverage available when branch reconstruction is not possible.
Document which TypeScript branch constructs are supported; do not silently treat switch, conditional expressions, or logical short-circuit ranges as binary if records.
Definition of Done
A real c8 run over a TypeScript if/else produces two correctly ordered backend-neutral arms and maps them to the true and false EtsIR successors.
Separate true-only, false-only, and mixed executions preserve correct hit counts.
Nested conditions, an if without else, source-map remapping, and ambiguous ranges have explicit tests and behavior.
Function-level and script-level V8 block ranges are not misclassified as EtsIR conditional edges.
Partial failures do not discard exact statement mappings.
Part of #345. Depends on #350. Optional for the property-directed sequential baseline in #354; required before claiming c8/V8 branch-guided search. Selection of a conversion tool should follow the measured cases below, without creating a general converter framework.
Goal
Map branch coverage produced by the pinned c8/V8 backend to TypeScript branch arms and EtsIR CFG edges.
Why
#350 and #381 map backend-neutral binary Istanbul
ifrecords to ordered true/false EtsIR successors. The currentc8@10.1.3path usesv8-to-istanbul@9.3.0, which converts every V8 block range into an independent Istanbul-shaped record withtype: "branch"and exactly one location/count.For example, when only the true side of an
if/elseruns, raw V8 coverage contains a zero-count range for the unexecutedelse. When only the false side runs, it contains a zero-count range for the true body. The converted report does not preserve the originatingif, the relationship between its arms, or the true/false outcome. It also emits similar records for function and script ranges. Therefore #381 reports these records asUNSUPPORTEDinstead of guessing CFG edges, while retaining usable statement mappings.Statement coverage cannot reveal every missed edge. For example, if only the true side of an
ifwithout anelseruns, every statement may be covered while the false edge remains untested.Scope
ifcoverage with explicit true and false arms when the association is exact.switch, conditional expressions, or logical short-circuit ranges as binaryifrecords.Definition of Done
if/elseproduces two correctly ordered backend-neutral arms and maps them to the true and false EtsIR successors.ifwithoutelse, source-map remapping, and ambiguous ranges have explicit tests and behavior.Follow-up to #350 and #381.