(functionName, calleeFunctionName, args)
| 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); |