newtests/lsp/documentHighlight/__fixtures__/optional-chaining.js (
12
lines of code) (
raw
):
// @flow type Foo = { bar: Bar } type Bar = { baz: number } const foo: ?Foo = { bar: { baz: 42 } }; foo?.bar.baz;