Skip to content

Commit 1a03e53

Browse files
TypeScript BotRyanCavanaugh
TypeScript Bot
andauthored
🤖 Pick PR #59761 (this can be nullish) into release-5.6 (#59762)
Co-authored-by: Ryan Cavanaugh <RyanCavanaugh@users.noreply.github.com>
1 parent 6212132 commit 1a03e53

File tree

6 files changed

+44
-2
lines changed

6 files changed

+44
-2
lines changed

src/compiler/checker.ts

+1
Original file line numberDiff line numberDiff line change
@@ -39725,6 +39725,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
3972539725
case SyntaxKind.NewExpression:
3972639726
case SyntaxKind.PropertyAccessExpression:
3972739727
case SyntaxKind.YieldExpression:
39728+
case SyntaxKind.ThisKeyword:
3972839729
return PredicateSemantics.Sometimes;
3972939730
case SyntaxKind.BinaryExpression:
3973039731
// List of operators that can produce null/undefined:

tests/baselines/reference/predicateSemantics.errors.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,8 @@ predicateSemantics.ts(36,8): error TS2872: This kind of expression is always tru
7373

7474
// Should be OK
7575
console.log((cond || undefined) && 1 / cond);
76-
76+
77+
function foo(this: Object | undefined) {
78+
// Should be OK
79+
return this ?? 0;
80+
}

tests/baselines/reference/predicateSemantics.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ while ((({}))) { }
4040

4141
// Should be OK
4242
console.log((cond || undefined) && 1 / cond);
43-
43+
44+
function foo(this: Object | undefined) {
45+
// Should be OK
46+
return this ?? 0;
47+
}
4448

4549
//// [predicateSemantics.js]
4650
var _a, _b, _c, _d, _e, _f;
@@ -80,3 +84,7 @@ while (({})) { }
8084
while ((({}))) { }
8185
// Should be OK
8286
console.log((cond || undefined) && 1 / cond);
87+
function foo() {
88+
// Should be OK
89+
return this !== null && this !== void 0 ? this : 0;
90+
}

tests/baselines/reference/predicateSemantics.symbols

+9
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,12 @@ console.log((cond || undefined) && 1 / cond);
7070
>undefined : Symbol(undefined)
7171
>cond : Symbol(cond, Decl(predicateSemantics.ts, 0, 11))
7272

73+
function foo(this: Object | undefined) {
74+
>foo : Symbol(foo, Decl(predicateSemantics.ts, 38, 45))
75+
>this : Symbol(this, Decl(predicateSemantics.ts, 40, 13))
76+
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
77+
78+
// Should be OK
79+
return this ?? 0;
80+
>this : Symbol(this, Decl(predicateSemantics.ts, 40, 13))
81+
}

tests/baselines/reference/predicateSemantics.types

+15
Original file line numberDiff line numberDiff line change
@@ -219,3 +219,18 @@ console.log((cond || undefined) && 1 / cond);
219219
>cond : any
220220
> : ^^^
221221

222+
function foo(this: Object | undefined) {
223+
>foo : (this: Object | undefined) => Object | 0
224+
> : ^ ^^ ^^^^^^^^^^^^^^^
225+
>this : Object
226+
> : ^^^^^^
227+
228+
// Should be OK
229+
return this ?? 0;
230+
>this ?? 0 : 0 | Object
231+
> : ^^^^^^^^^^
232+
>this : Object
233+
> : ^^^^^^
234+
>0 : 0
235+
> : ^
236+
}

tests/cases/compiler/predicateSemantics.ts

+5
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,8 @@ while ((({}))) { }
3737

3838
// Should be OK
3939
console.log((cond || undefined) && 1 / cond);
40+
41+
function foo(this: Object | undefined) {
42+
// Should be OK
43+
return this ?? 0;
44+
}

0 commit comments

Comments
 (0)