Merge pull request #12898 from Microsoft/NavigateToFixForIIFE

NavigateTo is not working correctly for declarations in IIFEs
This commit is contained in:
jramsay
2016-12-14 10:56:44 -08:00
committed by GitHub
2 changed files with 20 additions and 2 deletions

View File

@@ -592,9 +592,8 @@ namespace ts {
else {
declarations.push(functionDeclaration);
}
forEachChild(node, visit);
}
forEachChild(node, visit);
break;
case SyntaxKind.ClassDeclaration: