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
|
/// <reference path="fourslash.ts" />
////class C1 {
//// public a: string;
//// protected b: string;
//// private c: string;
////
//// constructor(a: string, b = "", c = "") {
//// this.a = a;
//// this.b = b;
//// this.c = c;
//// }
////}
////class C2 {
//// public a: string;
//// constructor(a: string) {
//// this.a = a;
//// }
////}
////function f1(foo: C1 | C2 | { d: number }) {}
////f1({ /*1*/ });
////function f2(foo: C1 | C2) {}
////f2({ /*2*/ });
////
////function f3(foo: C2) {}
////f3({ /*3*/ });
verify.completions({
marker: "1",
exact: ["a", "d"],
}, {
marker: "2",
exact: ["a"]
}, {
marker: "3",
exact: ["a"]
});
|