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
I like the command line options --call-threshold=nnn and --par-threshold=nnn and would like to know if such option could be also introduced for if statements?
Some unformatted example source code:
if A = 1and B > 2and C < 3and D /= 4thennull;
endif;
Setting a new option (for example xyz-threshold) to 2 would result into:
if A = 1and B > 2and
C < 3and D /= 4thennull;
endif;
Or xyz-threshold=1:
if A = 1and
B > 2and
C < 3and
D /= 4thennull;
endif;
The text was updated successfully, but these errors were encountered:
Thank you for your suggestion. Yes, this is technically feasible although each added option adds a cost (in terms of maintenance and in terms of users needing to make a choice), we'll consider it!
I like the command line options
--call-threshold=nnn
and--par-threshold=nnn
and would like to know if such option could be also introduced for if statements?Some unformatted example source code:
Setting a new option (for example xyz-threshold) to 2 would result into:
Or
xyz-threshold=1
:The text was updated successfully, but these errors were encountered: