File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1337,21 +1337,21 @@ namespace ts {
13371337 // However we should still skip a pinned comment at the top
13381338 if ( ranges . length && ranges [ 0 ] . kind === SyntaxKind . MultiLineCommentTrivia && isPinnedComment ( text , ranges [ 0 ] ) ) {
13391339 position = ranges [ 0 ] . end ;
1340- AdvancePastLineBreak ( ) ;
1340+ advancePastLineBreak ( ) ;
13411341 ranges = ranges . slice ( 1 ) ;
13421342 }
13431343 // As well as any triple slash references
13441344 for ( const range of ranges ) {
13451345 if ( range . kind === SyntaxKind . SingleLineCommentTrivia && isRecognizedTripleSlashComment ( node . text , range . pos , range . end ) ) {
13461346 position = range . end ;
1347- AdvancePastLineBreak ( ) ;
1347+ advancePastLineBreak ( ) ;
13481348 continue ;
13491349 }
13501350 break ;
13511351 }
13521352 return position ;
13531353
1354- function AdvancePastLineBreak ( ) {
1354+ function advancePastLineBreak ( ) {
13551355 if ( position < textLength ) {
13561356 const charCode = text . charCodeAt ( position ) ;
13571357 if ( isLineBreak ( charCode ) ) {
You can’t perform that action at this time.
0 commit comments