MCPcopy Index your code
hub / github.com/apache/tvm / getHandle

Method getHandle

web/src/runtime.ts:466–471  ·  view source on GitHub ↗

* Get handle of module, check it is not null. * * @param requireNotNull require handle is not null. * @returns The handle.

(requireNotNull = true)

Source from the content-addressed store, hash-verified

464 * @returns The handle.
465 */
466 getHandle(requireNotNull = true): Pointer {
467 if (requireNotNull && this.handle === 0) {
468 throw Error("Object has already been disposed");
469 }
470 return this.handle;
471 }
472
473 /** get the type index of the object */
474 typeIndex(): number {

Callers 8

retValueToJSMethod · 0.95
registerFuncMethod · 0.80
setPackedArgumentsMethod · 0.80
packedFuncMethod · 0.80
test_vm.jsFile · 0.80
test_object.jsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected