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 49 50 51 52 53 54
|
/// <reference path="fourslash.ts" />
// @allowJs: true
// @Filename: a.ts
//// const f = {
//// a: 1
////};
//// import * as thing from "thing" /*0*/
//// export { foo } from "foo" /*1*/
//// import "foo" as /*2*/
//// import "foo" a/*3*/
//// import * as that from "that"
//// /*4*/
//// import * /*5*/ as those from "those"
// @Filename: b.js
//// import * as thing from "thing" /*js*/;
const assertEntry = {
name: "assert",
kind: "keyword",
sortText: completion.SortText.GlobalsOrKeywords,
};
verify.completions(
{
marker: "0",
includes: [assertEntry],
},
{
marker: "1",
includes: [assertEntry],
},
{
marker: "2",
excludes: ["assert"],
},
{
marker: "3",
includes: [assertEntry],
},
{
marker: "4",
excludes: ["assert"],
},
{
marker: "5",
excludes: ["assert"],
},
{
marker: "js",
includes: [assertEntry],
},
);
|