MCPcopy Index your code
hub / github.com/beanshell/beanshell / findMostSpecificConstructor

Method findMostSpecificConstructor

src/bsh/Reflect.java:585–588  ·  view source on GitHub ↗
(Class[] idealMatch, Constructor[] constructors)

Source from the content-addressed store, hash-verified

583 don't have a common interface for their signatures
584 */
585 static Constructor findMostSpecificConstructor(Class[] idealMatch, Constructor[] constructors) {
586 int match = findMostSpecificConstructorIndex(idealMatch, constructors);
587 return (match == -1) ? null : constructors[match];
588 }
589
590
591 static int findMostSpecificConstructorIndex(Class[] idealMatch, Constructor[] constructors) {

Callers 1

constructObjectMethod · 0.95

Tested by

no test coverage detected