* @return {IKernelJSON}
()
| 629 | * @return {IKernelJSON} |
| 630 | */ |
| 631 | toJSON() { |
| 632 | const json = super.toJSON(); |
| 633 | json.functionNodes = FunctionBuilder.fromKernel(this, WebGL2FunctionNode).toJSON(); |
| 634 | json.settings.threadDim = this.threadDim; |
| 635 | return json; |
| 636 | } |
| 637 | } |
| 638 | |
| 639 | module.exports = { |
nothing calls this directly
no test coverage detected