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
0.24.1.20250127.23.53.9
actor Bob(): def foo(cb): pass actor Rob(): def bar(): b = Bob() b.foo()
[error]: Incompatible types ╭──▶ @0:0-0:0 │ 0 │ <no line> • • ╰╸ keyword component(s) 'cb' is missing in tuple ─────╯
Error message points to the call of Bob.foo() with the missing argument
Bob.foo()
The text was updated successfully, but these errors were encountered:
443a57c
Merge pull request #2181 from actonlang/fix-2132-2135
5cba46c
fixed #2132 and #2135
Now:
kll@Kristians-MacBook-Air acton % actonc compiler/actonc/test/typeerrors/ex25.act Building file compiler/actonc/test/typeerrors/ex25.act using temporary scratch directory Compiling ex25.act for release [error]: Incompatible types ╭──▶ ex25.act@8:9-8:16 │ 8 │ b.foo() • ┬────── • ╰╸ keyword component(s) 'cb' is missing in tuple ─────╯ kll@Kristians-MacBook-Air acton %
Sorry, something went wrong.
No branches or pull requests
Acton Version
0.24.1.20250127.23.53.9
Steps to Reproduce and Observed Behavior
Expected Behavior
Error message points to the call of
Bob.foo()
with the missing argumentThe text was updated successfully, but these errors were encountered: