(node)
| 161632 | } |
| 161633 | } |
| 161634 | function getExtractableParent(node) { |
| 161635 | return ts.findAncestor(node, function (node) { return node.parent && isExtractableExpression(node) && !ts.isBinaryExpression(node.parent); }); |
| 161636 | } |
| 161637 | /** |
| 161638 | * Computes whether or not a node represents an expression in a position where it could |
| 161639 | * be extracted. |
no test coverage detected