(Beta2) When I press Ctrl-Space here: ```rescript module X = { @react.component let make = (~a: string, ~b: int) => React.string(a ++ string_of_int(b)) } <X a="hello" b=42 ``` I get this: <img width="671" alt="Bildschirmfoto 2021-04-27 um 18 18 35" src="https://user-images.githubusercontent.com/591384/116276630-fd2c6980-a784-11eb-951e-7b8c6e95c2a3.png"> i.e. `a` and `b` are in the list even though they already have values assigned. (In TypeScript, only props that were not assigned any values yet are shown in the list.)