5a49ccac76
Previously, resolved call is expected to have SAM converted argument map if SamConversionPerArgument is enabled. However, if SAM argument is followed by vararg parameter and an array _without_ a spread operator is passed, New Inference left a type mismatch error on a resolved call, which made that resolved candidate filtered out. Instead, another resolution result wihtout SAM converted arugment map will be provided. All other logics, such as adding SAM conversion type op and lowering SAM conversion and/or call references, are already there for resolved calls without SAM converted argument map. This change just relaxes the bailout condition so that array passed to vararg after SAM argument can be handled in JVM IR.