class X { Void m(Int param1, Str param2) {...} } >>> echo(X#m.func.params) [X this, Int param1, Str param2] >>> echo(X#m.func.bind([X.make]).params) [Int a, Str b]
Expected:
>>> echo(X#m.func.bind([X.make]).params) [Int param1, Str param2]
BTW This may be also related with ticket #1308
I added a note in 1308 - same issue really
Login or Signup to reply.
tonsky Tue 16 Nov 2010
Expected:
BTW This may be also related with ticket #1308
brian Tue 16 Nov 2010
I added a note in 1308 - same issue really