@@ -3876,7 +3876,7 @@ module ts {
38763876 } ;
38773877 }
38783878
3879- function getDefintionFromSymbol ( symbol : Symbol , node : Node ) : DefinitionInfo [ ] {
3879+ function getDefinitionFromSymbol ( symbol : Symbol , node : Node ) : DefinitionInfo [ ] {
38803880 let typeChecker = program . getTypeChecker ( ) ;
38813881 let result : DefinitionInfo [ ] = [ ] ;
38823882 let declarations = symbol . getDeclarations ( ) ;
@@ -3939,7 +3939,6 @@ module ts {
39393939
39403940 return false ;
39413941 }
3942-
39433942 }
39443943
39453944 /// Goto definition
@@ -4016,7 +4015,7 @@ module ts {
40164015 declaration => createDefinitionInfo ( declaration , shorthandSymbolKind , shorthandSymbolName , shorthandContainerName ) ) ;
40174016 }
40184017
4019- return getDefintionFromSymbol ( symbol , node ) ;
4018+ return getDefinitionFromSymbol ( symbol , node ) ;
40204019 }
40214020
40224021 /// Goto type
@@ -4046,7 +4045,7 @@ module ts {
40464045 var result : DefinitionInfo [ ] = [ ] ;
40474046 forEach ( ( < UnionType > type ) . types , t => {
40484047 if ( t . symbol ) {
4049- result . push ( ...getDefintionFromSymbol ( t . symbol , node ) ) ;
4048+ result . push ( ...getDefinitionFromSymbol ( t . symbol , node ) ) ;
40504049 }
40514050 } ) ;
40524051 return result ;
@@ -4056,7 +4055,7 @@ module ts {
40564055 return undefined ;
40574056 }
40584057
4059- return getDefintionFromSymbol ( type . symbol , node ) ;
4058+ return getDefinitionFromSymbol ( type . symbol , node ) ;
40604059 }
40614060
40624061 function getOccurrencesAtPosition ( fileName : string , position : number ) : ReferenceEntry [ ] {
0 commit comments