* Get a function in the VM module. * @param name The name of the function. * @returns The result function.
(name: string)
| 807 | * @returns The result function. |
| 808 | */ |
| 809 | getFunction(name: string): PackedFunc { |
| 810 | return this.mod.getFunction(name); |
| 811 | } |
| 812 | |
| 813 | /** |
| 814 | * Get the internal module. |
nothing calls this directly
no test coverage detected