Expand Assignment
In This Article
Expands the current short form assignment to a full assignment expression.
#Availability
Available from the context menu or via shortcuts:
- when a short form assignment expression is selected.
#Notes
- This refactoring is the opposite of Compress Assignment.
#Examples
│a += b;
│a += b
Result:
│a = a + b;
│a = a + b