File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -589,7 +589,7 @@ export let parseCompilerLogOutput = (
589
589
code : undefined ,
590
590
severity : t . DiagnosticSeverity . Error ,
591
591
tag : undefined ,
592
- content : [ lines [ i ] , lines [ i + 1 ] ] ,
592
+ content : [ lines [ i ] , lines [ i + 1 ] ] ,
593
593
} ) ;
594
594
i ++ ;
595
595
} else if ( / ^ + ( [ 0 - 9 ] + | + | \. ) ( │ | ┆ ) / . test ( line ) ) {
@@ -603,9 +603,9 @@ export let parseCompilerLogOutput = (
603
603
// 10 ┆
604
604
} else if ( line . startsWith ( " " ) ) {
605
605
// part of the actual diagnostics message
606
- parsedDiagnostics [ parsedDiagnostics . length - 1 ] . content . push (
607
- line . slice ( 2 )
608
- ) ;
606
+ parsedDiagnostics [ parsedDiagnostics . length - 1 ] . content . push (
607
+ line . slice ( 2 )
608
+ ) ;
609
609
} else if ( line . trim ( ) != "" ) {
610
610
// We'll assume that everything else is also part of the diagnostics too.
611
611
// Most of these should have been indented 2 spaces; sadly, some of them
You can’t perform that action at this time.
0 commit comments