(node, ancestor)
| 42 | } |
| 43 | |
| 44 | function isNodeWithin(node, ancestor) { |
| 45 | return node.range[0] >= ancestor.range[0] && |
| 46 | node.range[1] <= ancestor.range[1]; |
| 47 | } |
| 48 | |
| 49 | function exits(statement) { |
| 50 | if (!statement) return false; |
no outgoing calls
no test coverage detected
searching dependent graphs…