(node)
| 45 | } |
| 46 | |
| 47 | function getIdentifierArgument(node) { |
| 48 | const arg = node.arguments[0]; |
| 49 | return arg?.type === 'Identifier' ? arg.name : undefined; |
| 50 | } |
| 51 | |
| 52 | function isNodeWithin(node, ancestor) { |
| 53 | return node.range[0] >= ancestor.range[0] && |
no outgoing calls
no test coverage detected
searching dependent graphs…