Re: Local / lazy referencing

Charles Goodwin <[email protected]> Wed, 08 Oct 2003 13:34:37 +0100
Newsgroups gmane.comp.java.xwt.widgets
Organization XWT Foundation
Message-ID <[email protected]>
Adam Megacz wrote:
> thisbox.foo = 5; // public
> foo = 5;         // illegal
> var foo = 5;     // private

I just want to check, this is just for declaring them, right?

I mean... for sanities sake, we have to be able to do the following:

thisbox.foo;
thisbox.bar = 5;

foo = bar * 2;

- Charlie