[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: messages within messages
- From: Steve Dekorte <steve@...>
- Date: Wed, 24 Dec 97 19:56:33 -0800
>I seem to have a problem doing:
>
>object:methodA(otherObject:methodB())
>
>although it works fine if I do:
>
>local temp = otherObject:methodB()
>object:methodA(temp)
>
>Is this a known limitation in Lua, a bug, or am I doing
>something wrong?
Oops, I meant to say:
object:methodA():methodB()
doesn't work, but:
local temp = otherObject:methodB()
temp:methodA()
Does.
Steve