We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relevant sections of the style guide https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#keep-single-parameter-calls-on-one-line
Question in
result = some_method_call( VALUE #( FOR i = 2 UNTIL i > 4 ( strings[ i ] ) ) ).
I'd say some_method_call has one parameter, and there are no additional calls, but SAP has chosen this to be formatted as
some_method_call
which goes against the rule? What is considered a parameter and what is not?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Relevant sections of the style guide
https://github.com/SAP/styleguides/blob/main/clean-abap/CleanABAP.md#keep-single-parameter-calls-on-one-line
Question
in
I'd say
some_method_call
has one parameter, and there are no additional calls, but SAP has chosen this to be formatted aswhich goes against the rule? What is considered a parameter and what is not?
The text was updated successfully, but these errors were encountered: