Skip to content
New issue

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

No concretization found with role-qualified method call when doing a role from another role #2496

Closed
taboege opened this issue Nov 19, 2018 · 6 comments

Comments

@taboege
Copy link
Contributor

taboege commented Nov 19, 2018

The Problem

Role-qualified method call does not work when my class does a role indirectly, e.g.

role  X        { method f {} }
role  Y does X { method g {} }
class C does Y {}

C.new.Y::g;  # works
C.new.X::f;  # ERROR: No concretization found for X

This way to trigger that error is different, but #2282 is possibly related.

Expected Behavior

Since C.new ~~ X is True, I expect a call to C.new.X::f to succeed.

Actual Behavior

I get the error No concretization found for X.

Tested on Camelia rakudo-moar 7262b4e84.

@taboege
Copy link
Contributor Author

taboege commented Dec 14, 2018

The documentation claims that C does Y when Y does X should result in the same thing as C does Y does X (where Y isn't required to do X anymore). That is, the above should be equivalent to

role  X               { method f {} }
role  Z               { method g {} }
class C does Z does X {}

C.new.Z::g;  # works
C.new.X::f;  # works too

but as noted, this version does work!

@fecundf
Copy link

fecundf commented Jan 30, 2019

with roles doing "flat" copying, from class C does Y {} I don't have an expectation that C knows the name "X" - only that C can do all the methods from Y, which includes all the methods that came from X.

role  X        { method f { say "f" } }
role  Y does X { method g { say "g" } }
class C does Y {}

C.new.Y::g;  # works
C.new.Y::f;  # works

With class C does Z does X {} then it would know both the "Z" and "X" names.

True, the documentation for roles did say that class C is the same regardless of how the two roles are applied. To me, the current implementation makes sense- otherwise, a change allowing class C does Y {}; C.new.X::f is allowing "spooky action at a distance" with X as a member of C without ever declaring X in C. The documentation should be clarified, seems like a doc bug to me.

@taboege
Copy link
Contributor Author

taboege commented Jan 30, 2019 via email

@fecundf
Copy link

fecundf commented Feb 1, 2019

So, I'm asking myself now, "why would one need role-qualified method calls
at all?" and consider this resolved and will move on to the docs shortly ...
Somehow, my class still knew about X ...

Yes and yes, no need to qualify the method calls with the roles they came from. Only need to do that on name clashes.

And, as you note, it does make sense to preserve the chain of roles so that C ~~ X is True, in your example. Let's try this-

use v6;

role  X        { method f { say "f" } }
role  Y does X { method g { print "g and... "; self.f } }
class C does Y {}

C.new.f;  # works
C.new.g;  # works
say C ~~ X; # says True

Looks good!

why not call f's old implementation from there (X)?

That I can't answer. This came up on a discussion where the same "No concretization" error came up in a different situation, which looks more like a bug. I'm not a perl6 designer, nor an OO whiz, just interested in these details.

@fecundf
Copy link

fecundf commented Feb 1, 2019

Problem

This ... I think it distills what you were saying about one role wrapping a method from another role, and it has the "No concretization" error.

use v6;

role  X        { method f { say "f" } }
role  Y does X { method f { print "I'm Y wrapping "; self.X::f  }  }
class C does Y {}

C.new.f;  # I'm Y wrapping No concretization found for X

@vrurg
Copy link
Member

vrurg commented Dec 13, 2019

Fixed since at least 2019.07

@vrurg vrurg closed this as completed Dec 13, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants