TypeScript/tests/cases/fourslash/findAllRefsOfConstructor_withModifier.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

10 lines
243 B
TypeScript

/// <reference path="fourslash.ts" />
////class X {
//// public [|constructor|]() {}
////}
////var x = new [|X|]();
const ranges = test.ranges();
verify.referenceGroups(ranges[0], [{ definition: "constructor X(): X", ranges }]);