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
Now it is compiled always as 0 args. But the interpreter works with 1 arg also (see Context >> objectSize: anObject).
Context >> objectSize: anObject
The primitive should have <numberOfArguments: #(0 1)> to support both cases, or at least <numberOfArguments: #(0)> to check the method argument count.
<numberOfArguments: #(0 1)>
<numberOfArguments: #(0)>
But now we cannot do that because tests are failing (probably due a bug during the optimisation passes).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Now it is compiled always as 0 args. But the interpreter works with 1 arg also (see
Context >> objectSize: anObject
).The primitive should have
<numberOfArguments: #(0 1)>
to support both cases, or at least<numberOfArguments: #(0)>
to check the method argument count.But now we cannot do that because tests are failing (probably due a bug during the optimisation passes).
The text was updated successfully, but these errors were encountered: