(block)
| 18 | alwaysTrue: boolean; |
| 19 | |
| 20 | constructor(block) { |
| 21 | this.alwaysTrue = block.singleRun; |
| 22 | let map = this.buildVariableMap(block); |
| 23 | this.dependencies = this.buildDependencies(map); |
| 24 | } |
| 25 | |
| 26 | buildVariableMap(block, variableMap = {"any": {attributes: {}}}) { |
| 27 | for(let level of block.strata) { |
nothing calls this directly
no test coverage detected