riml icon indicating copy to clipboard operation
riml copied to clipboard

calling self method with splat args fails

Open tek opened this issue 12 years ago • 0 comments

self.foo(1, *args)

translates to

call call('foo', [1] + a:000, self)

which fails with "unknown function 'foo'" (args being the calling method's varargs), while it should resemble something like this:

call call(self.foo, [1] + a:000, self)

tek avatar Mar 23 '14 17:03 tek