Re: Roles are fundamentally broken?

2019-01-30 Thread yary
I opened https://github.com/rakudo/rakudo/issues/2662 - but keyword ought to be associative https://github.com/rakudo/rakudo/issues/2663 - Fix Role private methods documentation, implementation -y

Re: Roles are fundamentally broken?

2019-01-30 Thread Vadim Belman
Have you tried printing ^mro of $best_friend? You would be surprised! Instead, try compiling the following: role R1 { method !priv { say "R1::priv" } } role R2 { method !priv { say "R2::priv" } } class Foo does R1 does R2 { } Oops And this I co

Re: filever.exe sub?

2019-01-30 Thread Patrick Spek via perl6-users
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 A quick search yields me the program `pev`: http://pev.sourceforge.net/doc/manual/en_us/ Maybe this can help you out. If it performs the tasks you need it to perform, you could browse the source code and rewrite it into a Perl 6 project :) On Tue,

Re: Roles are fundamentally broken?

2019-01-30 Thread JJ Merelo
El mié., 30 ene. 2019 a las 7:48, yary () escribió: > > Yet, have a look at my example with private methods > > All of the bug reports, code excerts use regular (public) methods. Do you > have code to share with !private_methods and/or submethods? I just made an > example, will be at the end of th