MCPcopy Index your code
hub / github.com/gpujs/gpu.js / trackFunctionCall

Method trackFunctionCall

src/backend/function-builder.js:583–590  ·  view source on GitHub ↗
(functionName, calleeFunctionName, args)

Source from the content-addressed store, hash-verified

581 }
582
583 trackFunctionCall(functionName, calleeFunctionName, args) {
584 if (!this.functionNodeDependencies[functionName]) {
585 this.functionNodeDependencies[functionName] = new Set();
586 this.functionCalls[functionName] = [];
587 }
588 this.functionNodeDependencies[functionName].add(calleeFunctionName);
589 this.functionCalls[functionName].push(args);
590 }
591
592 getKernelResultType() {
593 return this.rootNode.returnType || this.rootNode.getType(this.rootNode.ast);

Callers 1

onFunctionCallMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected