* Get a function in the module. * @param name The name of the function. * @param queryImports Whether to also query imports * @returns The result function.
(name: string, queryImports = true)
| 721 | * @returns The result function. |
| 722 | */ |
| 723 | getFunction(name: string, queryImports = true): PackedFunc { |
| 724 | return this.ctx.moduleGetFunction(this, name, queryImports) as PackedFunc; |
| 725 | } |
| 726 | |
| 727 | /** |
| 728 | * Import another module into the current runtime module. |
no outgoing calls
no test coverage detected