Fix infinite loop when node doesnt have non comment children. #27763

This commit is contained in:
Ramya Achutha Rao
2017-06-28 16:02:46 -07:00
parent 9fa2a2538c
commit 280ea0b10c
+1 -1
View File
@@ -116,7 +116,7 @@ export function getOpenCloseRange(document: vscode.TextDocument, position: vscod
}
export function getDeepestNode(node: Node): Node {
if (!node || !node.children || node.children.length === 0) {
if (!node || !node.children || node.children.length === 0 || !node.children.find(x => x.type !== 'comment')) {
return node;
}
for (let i = node.children.length - 1; i >= 0; i--) {