newtests/lsp/documentHighlight/__fixtures__/objects.js (36 lines of code) (raw):

// @flow type Alias = { foo(): void, bar: string, }; const a: Alias = { foo() {}, bar: ''}; a.foo(); a.foo(); a.bar; a.bar; const b = {bar: ''}; b.bar; b.bar; const c = {}; c.bar = 4; c.bar; const d = {}; d.bar; d.bar = 4; const e = {}; e.bar; e.bar; type Spreaded = { ...Alias, }; const f: Spreaded = { foo() {}, bar: '', baz: 5 }; if (f.foo != null) { f.foo() }; type Alias2 = { foo(): void, bar: string, }; const g = { foo() {}, bar: ''}; (g: Alias); (g: Alias2); function destructuring(x: Alias): void { const {foo, bar: baz} = x; }