mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
Converted about 25 *.test.ts files to --strictNullChecks (mostly automatically) (#65581)
* Manually added strict null checks in around 70 files * Fixed tsconfig.strictNullChecks.json merge fail * Touched up a few unnecessary type changes * Removed files already in other PRs
This commit is contained in:
committed by
Matt Bierner
parent
cb674e7d11
commit
d659000852
@@ -491,7 +491,7 @@ export class TextEdit {
|
||||
|
||||
constructor(range: Range, newText: string) {
|
||||
this.range = range;
|
||||
this.newText = newText;
|
||||
this.newText = newText || '';
|
||||
}
|
||||
|
||||
toJSON(): any {
|
||||
|
||||
Reference in New Issue
Block a user