(func: Function, autoAttachToScope: boolean)
| 1163 | } |
| 1164 | |
| 1165 | private toPackedFuncInternal(func: Function, autoAttachToScope: boolean): PackedFunc { |
| 1166 | if (this.isPackedFunc(func)) return func as PackedFunc; |
| 1167 | const ret = this.createPackedFuncFromSafeCallType(this.wrapJSFuncAsSafeCallType(func)); |
| 1168 | if (autoAttachToScope) return this.ctx.attachToCurrentScope(ret); |
| 1169 | return ret; |
| 1170 | } |
| 1171 | |
| 1172 | /** |
| 1173 | * Setup a virtual machine module with given device. |
no test coverage detected