File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1742,7 +1742,7 @@ module ts {
1742
1742
return ( SyntaxKind . FirstPunctuation <= kind && kind <= SyntaxKind . LastPunctuation ) ;
1743
1743
}
1744
1744
1745
- function isVisibleWithenDeclaration ( symbol : Symbol , containingClass : Declaration ) : boolean {
1745
+ function isVisibleWithinDeclaration ( symbol : Symbol , containingClass : Declaration ) : boolean {
1746
1746
var declaration = symbol . declarations && symbol . declarations [ 0 ] ;
1747
1747
return ! ( declaration && declaration . flags & NodeFlags . Private && containingClass !== declaration . parent ) ;
1748
1748
}
@@ -1859,7 +1859,7 @@ module ts {
1859
1859
if ( symbol && symbol . flags & SymbolFlags . HasExports ) {
1860
1860
// Extract module or enum members
1861
1861
forEachValue ( symbol . exports , symbol => {
1862
- if ( isVisibleWithenDeclaration ( symbol , containingClass ) ) {
1862
+ if ( isVisibleWithinDeclaration ( symbol , containingClass ) ) {
1863
1863
symbols . push ( symbol ) ;
1864
1864
}
1865
1865
} ) ;
@@ -1871,7 +1871,7 @@ module ts {
1871
1871
if ( apparentType ) {
1872
1872
// Filter private properties
1873
1873
forEach ( apparentType . getApparentProperties ( ) , symbol => {
1874
- if ( isVisibleWithenDeclaration ( symbol , containingClass ) ) {
1874
+ if ( isVisibleWithinDeclaration ( symbol , containingClass ) ) {
1875
1875
symbols . push ( symbol ) ;
1876
1876
}
1877
1877
} ) ;
You can’t perform that action at this time.
0 commit comments