Git Product home page Git Product logo

Comments (6)

gcasa avatar gcasa commented on June 20, 2024

This code supposes that the macOS compatible option is to throw an exception if a NULL selector is passed in...

NSObject.m:

- (BOOL) respondsToSelector: (SEL)aSelector
{
  Class cls = object_getClass(self);

  if (aSelector == 0)
    {
      if (GSPrivateDefaultsFlag(GSMacOSXCompatible))
	{
	  [NSException raise: NSInvalidArgumentException
		    format: @"%@ null selector given",
	    NSStringFromSelector(_cmd)];
	}
      return NO;
    }

  if (class_respondsToSelector(cls, aSelector))
    {
      return YES;
    }

  if (class_isMetaClass(cls))
    {
      return [(Class)self resolveClassMethod: aSelector];
    }
  else
    {
      return [cls resolveInstanceMethod: aSelector];
    }
}

The following test shows that this is not the case... https://github.com/gcasa/SheetTest. The call to respondsToSelector:NULL does not throw an exception on macOS. I am not sure if adding a ! in front of it is the right thing to do either, but I believe that was the intent.

from libs-base.

gcasa avatar gcasa commented on June 20, 2024

@rfm Do you have any thoughts?

from libs-base.

gcasa avatar gcasa commented on June 20, 2024

Please see my comments on the corresponding PR

from libs-base.

rfm avatar rfm commented on June 20, 2024

This simply means that OSX behavior has changed since the version that was current when the code was written.
So if OSX now behaves the same way as GNUstep, we can remove the check.

from libs-base.

gcasa avatar gcasa commented on June 20, 2024

Okay, I think that's reasonable. I will make that change.

from libs-base.

gcasa avatar gcasa commented on June 20, 2024

PR mentioned above was merged.

from libs-base.

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.