(scope: Scope, ...data: Data[])
| 19 | } |
| 20 | |
| 21 | export function addData(scope: Scope, ...data: Data[]) { |
| 22 | if (!scope.data) { |
| 23 | scope.data = []; |
| 24 | } |
| 25 | scope.data.push(...data); |
| 26 | } |
| 27 | |
| 28 | export function addMarks(scope: Scope, ...marks: Mark[]) { |
| 29 | if (!scope.marks) { |
no outgoing calls
no test coverage detected