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
flags in the mode field should be used at most one time;
the mode expression should only contain the + sign;
TODO: check if some combinations of flags are meaningless;
integer literals should not be used, only symbolic constants.
Ideally, arithmetics should be excluded here at all and the mode field should have its own unique type. But it looks like an idea for Tact 2.0, because we break backwards compatibility in this case.
The text was updated successfully, but these errors were encountered:
Actually it would make sense to move from + to | operation for applying flags because it literally sets specific bit to 1, and in that case applying the same flag multiple times won't change anything
For instance,
should result in a compilation error.
mode
field should be used at most one time;mode
expression should only contain the+
sign;Ideally, arithmetics should be excluded here at all and the mode field should have its own unique type. But it looks like an idea for Tact 2.0, because we break backwards compatibility in this case.
The text was updated successfully, but these errors were encountered: