TypeScript/tests/cases/fourslash/findAllRefsInheritedProperties4.ts
2019-06-13 12:41:21 -07:00

23 lines
807 B
TypeScript

/// <reference path='fourslash.ts'/>
//// interface C extends D {
//// [|[|{| "isDefinition": true, "contextRangeIndex": 0 |}prop0|]: string;|] // r0
//// [|[|{| "isDefinition": true, "contextRangeIndex": 2 |}prop1|]: number;|] // r1
//// }
////
//// interface D extends C {
//// [|[|{| "isDefinition": true, "contextRangeIndex": 4 |}prop0|]: string;|] // r2
//// }
////
//// var d: D;
//// d.[|prop0|]; // r3
//// d.[|prop1|]; // r4
const [r0Def, r0, r1Def, r1, r2Def, r2, r3, r4] = test.ranges();
verify.referenceGroups([r0, r2, r3], [
{ definition: "(property) C.prop0: string", ranges: [r0] },
{ definition: "(property) D.prop0: string", ranges: [r2, r3] }
]);
verify.singleReferenceGroup("(property) C.prop1: number", [r1]);
verify.noReferences(r4);