TypeScript/tests/cases/fourslash/referencesForInheritedProperties8.ts
Andy Hanson 8515f7e2b5 Change find-all-references tests to test for groups
* Also always test for isWriteAccess and isDefinition
2017-01-31 06:59:16 -08:00

20 lines
703 B
TypeScript

/// <reference path='fourslash.ts'/>
//// interface C extends D {
//// [|{| "isWriteAccess": true, "isDefinition": true |}propD|]: number;
//// }
//// interface D extends C {
//// [|{| "isWriteAccess": true, "isDefinition": true |}propD|]: string;
//// [|{| "isWriteAccess": true, "isDefinition": true |}propC|]: number;
//// }
//// var d: D;
//// d.[|propD|];
//// d.[|propC|];
const [d0, d1, c0, d2, c1] = test.ranges();
verify.referenceGroups([d0, d1, d2], [
{ definition: "(property) C.propD: number", ranges: [d0] },
{ definition: "(property) D.propD: string", ranges: [d1, d2] },
]);
verify.singleReferenceGroup("(property) D.propC: number", [c0, c1]);