File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15066,7 +15066,7 @@ namespace ts {
1506615066 }
1506715067 diagnostic = !noImplicitAny ? Diagnostics._0_implicitly_has_an_1_return_type_but_a_better_type_may_be_inferred_from_usage :
1506815068 wideningKind === WideningKind.GeneratorYield ? Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_yield_type :
15069- Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type;
15069+ Diagnostics._0_which_lacks_return_type_annotation_implicitly_has_an_1_return_type;
1507015070 break;
1507115071 case SyntaxKind.MappedType:
1507215072 if (noImplicitAny) {
Original file line number Diff line number Diff line change @@ -291,8 +291,8 @@ namespace Harness.Parallel.Host {
291291 worker . accumulatedOutput += d . toString ( ) ;
292292 console . log ( `[Worker ${ i } ]` , d . toString ( ) ) ;
293293 } ;
294- worker . process . stderr ! . on ( "data" , appendOutput ) ;
295- worker . process . stdout ! . on ( "data" , appendOutput ) ;
294+ worker . process . stderr . on ( "data" , appendOutput ) ;
295+ worker . process . stdout . on ( "data" , appendOutput ) ;
296296 const killChild = ( timeout : TaskTimeout ) => {
297297 worker . process . kill ( ) ;
298298 console . error ( `Worker exceeded ${ timeout . duration } ms timeout ${ worker . currentTasks && worker . currentTasks . length ? `while running test '${ worker . currentTasks [ 0 ] . file } '.` : `during test setup.` } ` ) ;
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ namespace ts {
317317 * @see {@link second link text} and {@link Foo|a foo} as well.
318318 */` ) ;
319319 parsesCorrectly ( "authorTag" ,
320- `/**
320+ `/**
321321 * @author John Doe <john.doe@example.com>
322322 * @author John Doe <john.doe@example.com> unexpected comment
323323 */` ) ;
You can’t perform that action at this time.
0 commit comments