(node)
| 16 | |
| 17 | const functionParametersCache = new WeakMap(); |
| 18 | function getFunctionParameters(node) { |
| 19 | return getOrInsertComputed( |
| 20 | functionParametersCache, |
| 21 | node, |
| 22 | getFunctionParametersWithoutCache, |
| 23 | ); |
| 24 | } |
| 25 | |
| 26 | function iterateFunctionParametersPath(path, iteratee) { |
| 27 | const { node } = path; |
no test coverage detected
searching dependent graphs…