TypeScript/tests/cases/fourslash/completionsAfterJSDoc.ts
2020-08-05 10:09:45 -07:00

18 lines
327 B
TypeScript

/// <reference path="fourslash.ts" />
////export interface Foo {
//// /** JSDoc */
//// /**/foo(): void;
////}
// Should not crash, #35632
verify.completions({
marker: "",
isNewIdentifierLocation: true,
exact: [{
name: "readonly",
kind: "keyword",
sortText: completion.SortText.GlobalsOrKeywords
}]
});