Git Product home page Git Product logo

Comments (6)

doy avatar doy commented on July 20, 2024
$ perl6 -e 'class Foo { submethod private { 42 }; method public { self.private } }; class Bar is Foo { }; say Bar.new.public'                     
No such method 'private' for invocant of type 'Bar'
  in method public at -e:1
  in block  at -e:1
$ perl6 -e 'class Foo { submethod private { 42 }; method public { self.private } }; class Bar is Foo { submethod private { 666 } }; say Bar.new.public' 
666
$ perl6 -e 'class Foo { submethod private { 42 }; method public { self.private } }; class Bar is Foo { method private { 666 } }; say Bar.new.public' 
666

So no, I think all of these behaviors are correct.

from p5-mop-redux.

doy avatar doy commented on July 20, 2024

In particular, submethods were never intended to be like private methods. They are intended to support things like BUILD, where every method in an inheritance hierarchy is called (so inheriting individual implementations of BUILD doesn't make sense), or for things like optimized constructors (for instance, we emulate this in Moose by generating a constructor that starts with my $class = shift; return $class->Moose::Object::new(@_) if $class ne __PACKAGE__;, which is effectively what submethod dispatch inherently does).

We should have some tests for this behavior, though.

from p5-mop-redux.

stevan avatar stevan commented on July 20, 2024

Hmm, yeah, I think doy is right, at least as far as submethods are concerned. Lets keep this open so that we remember to write tests.

from p5-mop-redux.

stevan avatar stevan commented on July 20, 2024

Actually, submethods are basically (kinda sorta mostly) lexical subroutines and should (perhaps) be implemented as such. See http://rjbs.manxome.org/rubric/entry/2016 for more info, specifically this bit:

If you make that subroutine lexical, you can't override it in the subclass. In fact, if it's lexical, it won't participate in method dispatch at all, which means you're probably breaking your main class, too! After all, method dispatch starts in the package on which a method was invoked, then works its way up the packages in @inc. Well, package means package variables, and that excludes lexical subroutines.

from p5-mop-redux.

doy avatar doy commented on July 20, 2024

No, they aren't - the whole point is that they are callable from outside of the class, they just aren't inherited. new as a submethod wouldn't be possible if it was a lexical thing. Private methods and submethods are two separate concepts.

from p5-mop-redux.

stevan avatar stevan commented on July 20, 2024

Ah yes, you are right, I just saw the "does not participate in method dispatch" and my brain went off on a digression. Ignore my last comment.

On Sep 26, 2013, at 12:25 AM, Jesse Luehrs [email protected] wrote:

No, they aren't - the whole point is that they are callable from outside of the class, they just aren't inherited. new as a submethod wouldn't be possible if it was a lexical thing. Private methods and submethods are two separate concepts.


Reply to this email directly or view it on GitHub.

from p5-mop-redux.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.