Skip to content

Add test for #21317 #21349

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/harness/fourslash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -880,6 +880,14 @@ namespace FourSlash {
});
}

public verifyTypeAtLocation(markerName: string, type: string) {
const marker = this.getMarkerByName(markerName);
const file = this.getProgram().getSourceFile(marker.fileName)!;
const node = ts.findPrecedingToken(marker.position, file);
const checker = this.getProgram().getTypeChecker();
assert.equal(checker.typeToString(checker.getTypeAtLocation(node)), type);
}

public verifyCompletionListContains(entryId: ts.Completions.CompletionEntryIdentifier, text?: string, documentation?: string, kind?: string | { kind?: string, kindModifiers?: string }, spanIndex?: number, hasAction?: boolean, options?: FourSlashInterface.VerifyCompletionListContainsOptions) {
const completions = this.getCompletionListAtCaret(options);
if (completions) {
Expand Down Expand Up @@ -3989,6 +3997,10 @@ namespace FourSlashInterface {
super(state);
}

public typeAtLocation(markerName: string, type: string) {
this.state.verifyTypeAtLocation(markerName, type);
}

public completionsAt(markerName: string, completions: ReadonlyArray<ExpectedCompletionEntry>, options?: CompletionsAtOptions) {
this.state.verifyCompletionsAt(markerName, completions, options);
}
Expand Down
9 changes: 9 additions & 0 deletions tests/cases/fourslash/typeAtLocation.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/// <reference path="fourslash.ts" />

// @strictNullChecks: true

////function test<T extends string | undefined>(x: T) {
//// x/**/!;
////}

verify.typeAtLocation("", "string | undefined"); // TODO: GH#21317: should be "T".
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should remove the TODO (and maybe the PR?), the new type at this position is intended, not a bug; see my comment.

We now consider the type at a location of a generic with a nullable constraint that is nonnull-asserted as having been narrowed to the nonnull part of its constraint (since usually you'd do this to access some member or call on it, like a cast).

Also, I'm pretty sure this is exactly what our type baselines test. We knew this changed and intended it.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't it be string and not string | undefined then?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@weswigham IMO the test is legitimate, because it tests the type before the assertion (what the issue is about) and not the result of the assertion.
Though maybe that's already covered by the baselines as you mentioned.
Either way the API issue should be fixed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The type before the assertion is going to be the constraint (string | undefined, because it's an apparent position thanks to the assertion), and then after the assertion is applied it should just be string. This isn't an API issue, we legitimately interpret the type at that position as just the constraint now, that way the bang after it functions somewhat.