(blockId: string, output: NormalizedBlockOutput, executionTime = 0)
| 148 | } |
| 149 | |
| 150 | setBlockOutput(blockId: string, output: NormalizedBlockOutput, executionTime = 0): void { |
| 151 | this.blockStates.set(blockId, { output, executed: true, executionTime }) |
| 152 | this.executedBlocks.add(blockId) |
| 153 | } |
| 154 | |
| 155 | setBlockState(blockId: string, state: BlockState): void { |
| 156 | this.blockStates.set(blockId, state) |