@@ -585,7 +585,7 @@ namespace FourSlash {
585585 }
586586
587587 private getGoToDefinition ( ) : ts . DefinitionInfo [ ] {
588- return this . languageService . getDefinitionAtPosition ( this . activeFile . fileName , this . currentCaretPosition )
588+ return this . languageService . getDefinitionAtPosition ( this . activeFile . fileName , this . currentCaretPosition ) ;
589589 }
590590
591591 public verifyGoToType ( arg0 : any , endMarkerNames ?: string | string [ ] ) {
@@ -926,7 +926,7 @@ namespace FourSlash {
926926 function rangeToReferenceEntry ( r : Range ) {
927927 let { isWriteAccess, isDefinition } = ( r . marker && r . marker . data ) || { isWriteAccess : false , isDefinition : false } ;
928928 isWriteAccess = ! ! isWriteAccess ; isDefinition = ! ! isDefinition ;
929- return { fileName : r . fileName , textSpan : { start : r . start , length : r . end - r . start } , isWriteAccess, isDefinition }
929+ return { fileName : r . fileName , textSpan : { start : r . start , length : r . end - r . start } , isWriteAccess, isDefinition } ;
930930 }
931931 }
932932
@@ -2136,7 +2136,7 @@ namespace FourSlash {
21362136
21372137 const result = includeWhiteSpace
21382138 ? actualText === expectedText
2139- : this . removeWhitespace ( actualText ) === this . removeWhitespace ( expectedText )
2139+ : this . removeWhitespace ( actualText ) === this . removeWhitespace ( expectedText ) ;
21402140
21412141 if ( ! result ) {
21422142 this . raiseError ( `Actual text doesn't match expected text. Actual:\n'${ actualText } '\nExpected:\n'${ expectedText } '` ) ;
@@ -2173,7 +2173,7 @@ namespace FourSlash {
21732173 start : diagnostic . start ,
21742174 length : diagnostic . length ,
21752175 code : diagnostic . code
2176- }
2176+ } ;
21772177 } ) ;
21782178 const dedupedDiagnositcs = ts . deduplicate ( diagnosticsForCodeFix , ts . equalOwnProperties ) ;
21792179
0 commit comments