Patrick R. Michaud wrote:
On Thu, Sep 28, 2006 at 11:59:52AM -0700, chromatic wrote:
On Thursday 28 September 2006 11:25, Allison Randal wrote:
     obj.{bar}()              # a string method name
     obj.{$S1}()

I'm not sure what's meant by "a string method name" above, but
I'd look at it as:


You got it, I meant "a method name stored in a string variable/register".


    .local string abc

    obj.'abc'()              # call 'abc' method of obj
    obj.abc()                # always the same as above
    obj.{abc}()              # call method indicated by abc symbol
    obj.{S0}()               # call method indicated by S0
    obj.$S0()                # call method indicated by $S0

Having obj.abc() always mean obj.'abc'() seems to me like it's
most in line with what PIR-authors expect.

Yup.

Allison

Reply via email to