1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
/// <reference path="fourslash.ts" />
// @Filename: a.ts
// @newline: LF
// Case: formatting: semicolons
////interface Base {
//// a: string;
//// b(a: string): void;
//// c(a: string): string;
//// c(a: number): number;
////}
////class Sub implements Base {
//// /*a*/
////}
verify.completions({
marker: "a",
isNewIdentifierLocation: true,
preferences: {
includeCompletionsWithInsertText: true,
includeCompletionsWithSnippetText: false,
includeCompletionsWithClassMemberSnippets: true,
},
includes: [
{
name: "a",
sortText: completion.SortText.ClassMemberSnippets,
insertText: "a: string;",
},
{
name: "b",
sortText: completion.SortText.ClassMemberSnippets,
insertText:
`b(a: string): void {
}`,
},
{
name: "c",
sortText: completion.SortText.ClassMemberSnippets,
insertText:
`c(a: string): string;
c(a: number): number;
c(a: unknown): string | number {
}`,
},
],
});
|