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
As Squeak Developer, I want C-style braces whenever a block or array is used as receiver so that the closing brace is on a new line.
Squeak Developer
C-style braces whenever a block or array is used as receiver
the closing brace is on a new line
In old versions of the C language, argument types needed to be declared on the subsequent line (i.e., just after the header of the function):
/* Original pre-ISO C style without function prototypes */ int main(argc, argv) int argc; char *argv[]; { ... }
So this is the standard we will use relates to #21 Examples would be:
^ { 'a' -> 'b'. 'b' -> 'c' }, { self urlOfTweak -> 'tweak' }
[ a squared. b yourself ] on: Error do: []
as long as it is not configurable this will remain very subjective.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem to solve
As
Squeak Developer
, I wantC-style braces whenever a block or array is used as receiver
so thatthe closing brace is on a new line
.Further details
In old versions of the C language, argument types needed to be declared on the subsequent line (i.e., just after the header of the function):
So this is the standard we will use
relates to #21
Examples would be:
as long as it is not configurable this will remain very subjective.
Acceptance Criteria
The text was updated successfully, but these errors were encountered: