Reports method calls where the number of arguments passed (including blocks) doesn't match the method's signature. The method's signature is taken from either of:
方法声明
RBS 类型签名
在某些情况下,可以使用快速修复来添加缺失的实参或移除多余的实参。
示例:
def example end # 提供了过多实参 example(true)