(param: StageHandlerProgressParams, context: SeriesTaskContext)
| 802 | } |
| 803 | |
| 804 | function dataTaskProgress(param: StageHandlerProgressParams, context: SeriesTaskContext): void { |
| 805 | // Avoid repeat cloneShallow when data just created in reset. |
| 806 | if (context.outputData && param.end > context.outputData.count()) { |
| 807 | context.model.getRawData().cloneShallow(context.outputData); |
| 808 | } |
| 809 | } |
| 810 | |
| 811 | // TODO refactor |
| 812 | function wrapData(data: SeriesData, seriesModel: SeriesModel): void { |
nothing calls this directly
no test coverage detected