(owner, statement)
| 135688 | return result; |
| 135689 | } |
| 135690 | function ownsBreakOrContinueStatement(owner, statement) { |
| 135691 | var actualOwner = getBreakOrContinueOwner(statement); |
| 135692 | return !!actualOwner && actualOwner === owner; |
| 135693 | } |
| 135694 | function getBreakOrContinueOwner(statement) { |
| 135695 | return ts.findAncestor(statement, function (node) { |
| 135696 | switch (node.kind) { |
no test coverage detected