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
Should it be possible to declare a public / internal / protected field. Non-private field will automatically generate a property. The following code:
A { x; x { get() = x; set(v) { x := v } } }
will be simplified using public field:
A { public x; }
The text was updated successfully, but these errors were encountered:
#496 : adding support the private fields
38bd4b0
#496 : implementing unit tests
027bfef
Iteration30 (#683)
53e24d1
* #658 : creating dpa * [FIXED] "__typeof self" expression inside the nested class / closure * [REDUX] iterator method * #496 : adding support the private fields
arakov
No branches or pull requests
Should it be possible to declare a public / internal / protected field. Non-private field will automatically generate a property. The following code:
will be simplified using public field:
The text was updated successfully, but these errors were encountered: