* @desc Get string from function names * @param {String[]} functionList - List of function to build string * @returns {String} The string, of all the various functions. Trace optimized if functionName given
(functionList)
| 339 | * @returns {String} The string, of all the various functions. Trace optimized if functionName given |
| 340 | */ |
| 341 | getStringFromFunctionNames(functionList) { |
| 342 | const ret = []; |
| 343 | for (let i = 0; i < functionList.length; ++i) { |
| 344 | const node = this.functionMap[functionList[i]]; |
| 345 | if (node) { |
| 346 | ret.push(this.functionMap[functionList[i]].toString()); |
| 347 | } |
| 348 | } |
| 349 | return ret.join('\n'); |
| 350 | } |
| 351 | |
| 352 | /** |
| 353 | * @desc Return string of all functions converted |
no test coverage detected