Giter VIP home page Giter VIP logo

Comments (5)

thoughtstream avatar thoughtstream commented on June 19, 2024

Arguably it's post-5.10.1 that's broken... for MS purposes. :-)

Actually, though, it's the test that's broken.
Cut-and-paste error. Mea culpa!

The line:

    is( Stuff->copy_cat("wibble", ""), "wibble" );

should be:

    is( Stuff->copy_cat("wibble", 0), "wibble" );

from method-signatures.

thoughtstream avatar thoughtstream commented on June 19, 2024

BTW, the new new smartmatch semantics currently proposed
for 5.18 are going to mess this mechanism up again and will
necessitate a rewrite to support backwards compatibility. I'll volunteer
to provide that rewrite when the time comes, as I'll have to do the
same for various other modules that rely on 5.10.1 smartmatching
semantics.

from method-signatures.

schwern avatar schwern commented on June 19, 2024

I think the behavior of when needs to be clarified. The examples in the
docs make it pretty clear that it's an exact match.

# Use default if no argument passed OR argument is undef
method get_results($how_many = 1 when undef) {...}

# Use default if no argument passed OR argument is empty string
method get_results($how_many = 1 when "") {...}

# Use default if no argument passed OR argument is zero
method get_results($how_many = 1 when 0) {...}

If that's the case, if when is going to try and differentiate undef from 0
from empty string, the test needs all of them.

is( Stuff->copy_cat("wibble"),        "wibble" );
is( Stuff->copy_cat("wibble", 0),     "wibble" );
is( Stuff->copy_cat("wibble", ""),    "" );       # fails in 5.10.1 and up
is( Stuff->copy_cat("wibble", undef), undef );

I would suggest not using smart match. It's unstable across versions and
doing it wrong for a large spread of them (5.10.1 to now). I'm guessing its
there to avoid having to play the "is this a number or a string" game which is
an equally obnoxious hassle.

Alternatively we special case empty string.

Alternatively we define "when" as "whatever smart match does".

If we're going to use smart match, I like the last one. We don't have to work
around smart match changes. It also means things like "when []" or "when {}"
are legit without us having to explain anything.

from method-signatures.

thoughtstream avatar thoughtstream commented on June 19, 2024

I think we ought to go with "whatever smartmatch does".

If they need to be more specific, there's always:

 method get_results($how_many = 1 when qr/^0$/) {...}     

or:

use Smart::Match 'numwise';
method get_results($how_many = 1 when numwise 0) {...} 

They're going to have to get used to being more specific anyway,
once 5.18 is out.

Damian

from method-signatures.

barefootcoder avatar barefootcoder commented on June 19, 2024

Okay, this was causing 12 of the 17 failures on CPAN Testers. Fixed as per @thoughtstream suggested. I'm closing this one down.

from method-signatures.

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.