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
|
/// <reference path='fourslash.ts'/>
////interface One {
//// common: { [|[|{| "isDefinition": true, "contextRangeIndex": 0 |}a|]: number;|] };
////}
////
////interface Base {
//// [|[|{| "isDefinition": true, "contextRangeIndex": 2 |}a|]: string;|]
//// b: string;
////}
////
////interface HasAOrB extends Base {
//// [|[|{| "isDefinition": true, "contextRangeIndex": 4 |}a|]: string;|]
//// b: string;
////}
////
////interface Two {
//// common: HasAOrB;
////}
////
////var x : One | Two;
////
////x.common.[|a|];
const [oneDef, one, baseDef, base, hasAOrBDef, hasAOrB, x] = test.ranges();
verify.referenceGroups(one, [
{ definition: "(property) a: number", ranges: [one] },
{ definition: "(property) a: string | number", ranges: [x] },
]);
verify.referenceGroups([base, hasAOrB], [
{ definition: "(property) Base.a: string", ranges: [base] },
{ definition: "(property) HasAOrB.a: string", ranges: [hasAOrB] },
{ definition: "(property) a: string | number", ranges: [x] },
]);
verify.referenceGroups(x, [
{ definition: "(property) a: number", ranges: [one] },
{ definition: "(property) Base.a: string", ranges: [base] },
{ definition: "(property) HasAOrB.a: string", ranges: [hasAOrB] },
{ definition: "(property) a: string | number", ranges: [x] },
]);
|