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
E.g.:
descriptionFile <magritteDescription> ^ MAToOneRelationDescription new reference: (MAContainer basicNew instVarAt: 1 put: Dictionary new; instVarAt: 2 put: MAIdentityAccessor new; instVarAt: 3 put: OrderedCollection new; yourself); classes: Set new; yourself
The #reference: and #classes: setup here is unneeded because they were not changed from the default.
#reference:
#classes:
Also, there is the related ugly generated argument to #classes: when the collection is not empty:
classes: (Set new add: RlPDF; add: FileReference; add: FileLocator; yourself)
Which would seem cleaner as: { RlPDF. FileReference. FileLocator }
{ RlPDF. FileReference. FileLocator }
The text was updated successfully, but these errors were encountered:
Fix for the first part (i.e. defaults unchanged) is to supply a default that will match that generated:
MARelationDescription>>descriptionReference … default: MAContainer new; …
and
MARelationDescription>>descriptionClasses … default: Set new; …
Sorry, something went wrong.
No branches or pull requests
E.g.:
The
#reference:
and#classes:
setup here is unneeded because they were not changed from the default.Also, there is the related ugly generated argument to
#classes:
when the collection is not empty:Which would seem cleaner as:
{ RlPDF. FileReference. FileLocator }
The text was updated successfully, but these errors were encountered: