TypeScript/tests/cases/fourslash/findAllRefsInheritedProperties4.ts

23 lines
807 B
TypeScript
Raw Normal View History

2016-01-08 12:34:43 +01:00
/// <reference path='fourslash.ts'/>
//// interface C extends D {
2019-06-13 21:25:02 +02:00
//// [|[|{| "isDefinition": true, "contextRangeIndex": 0 |}prop0|]: string;|] // r0
//// [|[|{| "isDefinition": true, "contextRangeIndex": 2 |}prop1|]: number;|] // r1
2016-01-08 12:34:43 +01:00
//// }
////
//// interface D extends C {
2019-06-13 21:25:02 +02:00
//// [|[|{| "isDefinition": true, "contextRangeIndex": 4 |}prop0|]: string;|] // r2
2016-01-08 12:34:43 +01:00
//// }
////
//// var d: D;
//// d.[|prop0|]; // r3
//// d.[|prop1|]; // r4
2019-06-06 00:01:34 +02:00
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);