* * @param {IGPUNativeFunction[]} nativeFunctions * @return {this}
(nativeFunctions)
| 533 | * @return {this} |
| 534 | */ |
| 535 | setNativeFunctions(nativeFunctions) { |
| 536 | for (let i = 0; i < nativeFunctions.length; i++) { |
| 537 | const settings = nativeFunctions[i]; |
| 538 | const { name, source } = settings; |
| 539 | this.addNativeFunction(name, source, settings); |
| 540 | } |
| 541 | return this; |
| 542 | } |
| 543 | |
| 544 | /** |
| 545 | * |
nothing calls this directly
no test coverage detected