TypeScript/tests/cases/fourslash/completionsECMAPrivateMemberTriggerCharacter.ts

16 lines
286 B
TypeScript
Raw Normal View History

/// <reference path="fourslash.ts" />
// @target: esnext
////class K {
//// #value: number;
////
//// foo() {
//// this.#/**/
//// }
////}
verify.completions(
{ marker: "", exact: ["#value", "foo"] },
{ marker: "", exact: ["#value", "foo"], triggerCharacter: "#" },
);