-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🤖 Pick PR #59160 (Fixed crash on authored import type...) into releas…
…e-5.5 (#59226) Co-authored-by: Mateusz Burzyński <[email protected]>
- Loading branch information
Showing
5 changed files
with
142 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
tests/cases/fourslash/completionsClassMemberImportTypeNodeParameter1.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/// <reference path="fourslash.ts" /> | ||
|
||
// @module: nodenext | ||
|
||
// @Filename: /generation.d.ts | ||
//// export type GenerationConfigType = { max_length?: number }; | ||
|
||
// @FileName: /index.d.ts | ||
//// export declare class PreTrainedModel { | ||
//// _get_generation_config( | ||
//// param: import("./generation.js").GenerationConfigType, | ||
//// ): import("./generation.js").GenerationConfigType; | ||
//// } | ||
//// | ||
//// export declare class BlenderbotSmallPreTrainedModel extends PreTrainedModel { | ||
//// /*1*/ | ||
//// } | ||
|
||
verify.completions({ | ||
marker: "1", | ||
includes: [ | ||
{ | ||
name: "_get_generation_config", | ||
insertText: `_get_generation_config(param: import("./generation.js").GenerationConfigType): import("./generation.js").GenerationConfigType;`, | ||
filterText: "_get_generation_config", | ||
hasAction: undefined, | ||
}, | ||
], | ||
preferences: { | ||
includeCompletionsWithClassMemberSnippets: true, | ||
includeCompletionsWithInsertText: true, | ||
}, | ||
isNewIdentifierLocation: true, | ||
}); |
31 changes: 31 additions & 0 deletions
31
tests/cases/fourslash/completionsClassMemberImportTypeNodeParameter2.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/// <reference path="fourslash.ts" /> | ||
|
||
// @module: nodenext | ||
|
||
// @FileName: /index.d.ts | ||
//// export declare class Cls { | ||
//// method( | ||
//// param: import("./doesntexist.js").Foo, | ||
//// ): import("./doesntexist.js").Foo; | ||
//// } | ||
//// | ||
//// export declare class Derived extends Cls { | ||
//// /*1*/ | ||
//// } | ||
|
||
verify.completions({ | ||
marker: "1", | ||
includes: [ | ||
{ | ||
name: "method", | ||
insertText: `method(param: import("./doesntexist.js").Foo);`, | ||
filterText: "method", | ||
hasAction: undefined, | ||
}, | ||
], | ||
preferences: { | ||
includeCompletionsWithClassMemberSnippets: true, | ||
includeCompletionsWithInsertText: true, | ||
}, | ||
isNewIdentifierLocation: true, | ||
}); |
37 changes: 37 additions & 0 deletions
37
tests/cases/fourslash/completionsClassMemberImportTypeNodeParameter3.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/// <reference path="fourslash.ts" /> | ||
|
||
// @module: nodenext | ||
|
||
// @FileName: /other/foo.d.ts | ||
//// export declare type Bar = { baz: string }; | ||
|
||
// @FileName: /other/cls.d.ts | ||
//// export declare class Cls { | ||
//// method( | ||
//// param: import("./foo.js").Bar, | ||
//// ): import("./foo.js").Bar; | ||
//// } | ||
|
||
// @FileName: /index.d.ts | ||
//// import { Cls } from "./other/cls.js"; | ||
//// | ||
//// export declare class Derived extends Cls { | ||
//// /*1*/ | ||
//// } | ||
|
||
verify.completions({ | ||
marker: "1", | ||
includes: [ | ||
{ | ||
name: "method", | ||
insertText: `method(param: import("./other/foo.js").Bar): import("./other/foo.js").Bar;`, | ||
filterText: "method", | ||
hasAction: undefined, | ||
}, | ||
], | ||
preferences: { | ||
includeCompletionsWithClassMemberSnippets: true, | ||
includeCompletionsWithInsertText: true, | ||
}, | ||
isNewIdentifierLocation: true, | ||
}); |
34 changes: 34 additions & 0 deletions
34
tests/cases/fourslash/completionsClassMemberImportTypeNodeParameter4.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/// <reference path="fourslash.ts" /> | ||
|
||
// @module: nodenext | ||
|
||
// @FileName: /other/cls.d.ts | ||
//// export declare class Cls { | ||
//// method( | ||
//// param: import("./doesntexist.js").Foo, | ||
//// ): import("./doesntexist.js").Foo; | ||
//// } | ||
|
||
// @FileName: /index.d.ts | ||
//// import { Cls } from "./other/cls.js"; | ||
//// | ||
//// export declare class Derived extends Cls { | ||
//// /*1*/ | ||
//// } | ||
|
||
verify.completions({ | ||
marker: "1", | ||
includes: [ | ||
{ | ||
name: "method", | ||
insertText: `method(param: import("./doesntexist.js").Foo);`, | ||
filterText: "method", | ||
hasAction: undefined, | ||
}, | ||
], | ||
preferences: { | ||
includeCompletionsWithClassMemberSnippets: true, | ||
includeCompletionsWithInsertText: true, | ||
}, | ||
isNewIdentifierLocation: true, | ||
}); |