* @desc Return the string for a function * @param {String} functionName - Function name to trace from. If null, it returns the WHOLE builder stack * @returns {String} The full string, of all the various functions. Trace optimized if functionName given
(functionName)
| 315 | * @returns {String} The full string, of all the various functions. Trace optimized if functionName given |
| 316 | */ |
| 317 | getPrototypeString(functionName) { |
| 318 | return this.getPrototypes(functionName).join('\n'); |
| 319 | } |
| 320 | |
| 321 | /** |
| 322 | * @desc Return the string for a function |
no test coverage detected