File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ namespace ts {
140
140
const { line : firstLine , character : firstLineChar } = getLineAndCharacterOfPosition ( file , start ) ;
141
141
const { line : lastLine , character : lastLineChar } = getLineAndCharacterOfPosition ( file , start + length ) ;
142
142
const lastLineInFile = getLineAndCharacterOfPosition ( file , file . text . length ) . line ;
143
- const relativeFileName = host ? convertToRelativePath ( file . fileName , host . getCurrentDirectory ( ) , fileName => host . getCanonicalFileName ( fileName ) ) : file . fileName ; ;
143
+ const relativeFileName = host ? convertToRelativePath ( file . fileName , host . getCurrentDirectory ( ) , fileName => host . getCanonicalFileName ( fileName ) ) : file . fileName ;
144
144
145
145
const hasMoreThanFiveLines = ( lastLine - firstLine ) >= 4 ;
146
146
let gutterWidth = ( lastLine + 1 + "" ) . length ;
You can’t perform that action at this time.
0 commit comments