TypeScript/tests/cases/fourslash/findAllRefsInheritedProperties5.ts

21 lines
757 B
TypeScript
Raw Normal View History

2016-01-08 12:34:43 +01:00
/// <reference path='fourslash.ts'/>
//// class 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
//// }
////
//// class 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.singleReferenceGroup("(property) C.prop0: string", [r0]);
verify.singleReferenceGroup("(property) C.prop1: number", [r1]);
verify.singleReferenceGroup("(property) D.prop0: string", [r2, r3]);
verify.noReferences(r4);