Dan Sugalski <[EMAIL PROTECTED]> wrote: > Anyway, for a perl/python/ruby object of class Foo, to add a new method > you'd just add a new sub/method name/PMC binding to the Foo namespace.
Can I translate that to: "some_method" in class "Foo" has a Sub PMC in the global stash, i.e. is retrievable by: .local Sub meth meth = global "&Foo::some_method" # perlish mangling or, how else would that look like in PASM? BTW what is the linked list in the global stash for? > Dan leo