()
| 395 | } |
| 396 | |
| 397 | _resultKernelHeader() { |
| 398 | if (this.graphical) return ''; |
| 399 | if (this.immutable) return ''; |
| 400 | if (!this.pipeline) return ''; |
| 401 | switch (this.output.length) { |
| 402 | case 1: |
| 403 | return this._mutableKernel1DResults(); |
| 404 | case 2: |
| 405 | return this._mutableKernel2DResults(); |
| 406 | case 3: |
| 407 | return this._mutableKernel3DResults(); |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | _resultKernelBody(kernelString) { |
| 412 | switch (this.output.length) { |
no test coverage detected