File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -485,17 +485,18 @@ export class LaunchConfig implements LaunchRequestArguments {
485
485
throw new Error ( ) ;
486
486
} else {
487
487
logger . debug ( `syntaxCheck-promise: ${ fileUri . fsPath } ` ) ;
488
- return clientTools . syntaxCheck ( fileUri . fsPath , [ "-syntax" , ...this . eclccSyntaxArgs ] ) . then ( ( errors ) => {
488
+ const args = [ ...this . eclccSyntaxArgs ] ;
489
+ return clientTools . syntaxCheck ( fileUri . fsPath , args ) . then ( ( errors ) => {
489
490
if ( errors . hasUnknown ( ) ) {
490
491
logger . warning ( `syntaxCheck-warning: ${ fileUri . fsPath } ${ errors . unknown ( ) . toString ( ) } ` ) ;
491
492
}
492
493
logger . debug ( `syntaxCheck-resolve: ${ fileUri . fsPath } ${ errors . errors ( ) . length } total.` ) ;
493
494
reporter . sendTelemetryEvent ( "launchConfig.checkSyntax.success" , { } , { "errorCount" : errors . all ( ) . length } ) ;
494
495
return { errors : errors . all ( ) , checked : errors . checked ( ) } ;
495
496
} ) . catch ( e => {
496
- logger . debug ( `syntaxCheck-reject : ${ fileUri . fsPath } ${ e . msg } ` ) ;
497
- reporter . sendTelemetryErrorEvent ( "launchConfig.checkSyntax.fail" , { "message" : e ?. msg } ) ;
498
- vscode . window . showInformationMessage ( `${ localize ( "Syntax check exception" ) } : ${ fileUri . fsPath } ${ e . msg } ` ) ;
497
+ logger . debug ( `checkSyntax-exception : ${ fileUri . fsPath } ${ e . message } ` ) ;
498
+ reporter . sendTelemetryErrorEvent ( "launchConfig.checkSyntax.fail" , { "message" : e ?. message } ) ;
499
+ vscode . window . showErrorMessage ( `${ localize ( "Syntax check exception" ) } : ${ e . message } (eclcc -syntax ${ args . join ( " " ) } ${ fileUri . fsPath } ) ` ) ;
499
500
return Promise . resolve ( { errors : [ ] , checked : [ ] } ) ;
500
501
} ) ;
501
502
}
You can’t perform that action at this time.
0 commit comments