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
At present you have to declare all variables that are assigned to in reactive declarations:
letb;
$: b=a+1;
It would be much nicer to just do this:
$: b=a+1;
In other words if the body is an ExpressionStatement whose expression is an AssignmentExpression whose left hand side is an Identifier, inject the let b.
The text was updated successfully, but these errors were encountered:
At present you have to declare all variables that are assigned to in reactive declarations:
It would be much nicer to just do this:
In other words if the body is an
ExpressionStatement
whose expression is anAssignmentExpression
whose left hand side is anIdentifier
, inject thelet b
.The text was updated successfully, but these errors were encountered: