TypeScript/tests/cases/fourslash/completionsInExport_invalid.ts
Andrew Branch 0f3a9d4d4b
Support completions for local named exports (#37606)
* Support completions for local named exports

* Add JSDoc

* Use sort text instead of filtering

* Revert new CompletionKind

* Return valid completions even when export declaration is in an invalid place
2020-03-27 10:47:02 -07:00

13 lines
204 B
TypeScript

/// <reference path="fourslash.ts" />
////function topLevel() {}
////if (!!true) {
//// const blockScoped = 0;
//// export { /**/ };
////}
verify.completions({
marker: "",
exact: ["topLevel"]
});