You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$foo = bar; currently results in set_store_value(foo, $foo = bar);, but this $foo = is unnecessary, as set_store_value will result in the relevant subscription being synchronously called anyway. The $foo = in the compiled code is even a bit misleading in cases (such as tweened and spring stores) where calling .set() on the store doesn't actually immediately update it to that value.