(block, context: BuilderContext)
| 734 | } |
| 735 | |
| 736 | function buildStrata(block, context: BuilderContext) { |
| 737 | let scans = []; |
| 738 | buildExpressions(block, context, block.expressions, scans); |
| 739 | buildScans(block, context, block.scanLike, scans); |
| 740 | |
| 741 | let binds = buildActions(block, context, block.binds, scans); |
| 742 | let commits = buildActions(block, context, block.commits, scans); |
| 743 | |
| 744 | let strata = stratify(scans); |
| 745 | |
| 746 | return {strata, binds, commits}; |
| 747 | } |
| 748 | |
| 749 | //----------------------------------------------------------- |
| 750 | // Block and Doc |
no test coverage detected