1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
let x = 1; // Flow Around const el = <foo.bar.baz></foo.bar.baz>; /**/ x; // ^ defined: 1 // Flow In let foo = { bar: { baz: 1 } }; const el2 = <foo.bar.baz />; // ^ defined: 12 // ^ defined: 13 // ^ defined: 14