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

32 lines
704 B
TypeScript

// @noLib: true
/// <reference path='fourslash.ts'/>
// @Filename: a.ts
////const x: [|any|] = 0;
////const any = 2;
////const y: [|any|] = any;
////function f(b: [|boolean|]): [|boolean|];
////type T = [|never|]; type U = [|never|];
////function n(x: [|number|]): [|number|];
////function o(x: [|object|]): [|object|];
////function s(x: [|string|]): [|string|];
////function sy(s: [|symbol|]): [|symbol|];
////function v(v: [|void|]): [|void|];
// @Filename: b.ts
// const z: [|any|] = 0;
test.rangesByText().forEach((ranges, text) => verify.singleReferenceGroup(text, ranges));
verify.rangesWithSameTextAreDocumentHighlights();
goTo.rangeStart(test.ranges()[0]);
verify.renameInfoFailed();