On Aug 23, 2006, at 3:30 PM, [EMAIL PROTECTED] wrote:
On Aug 23, 2006, at 19:11 UTC, Keith Bennett wrote:
One annoying fact with regards to namespace cluttering/confusion is
that if
you mark the property/method/function/whatever as "private", then you
can
not access it from within the module itself via Module1.MyMethod(),
which
means it could confuse some namespace stuff.
Not really, since name scopes are searched inside-out -- i.e., just
use
MyMethod, and it's going to search Module1 before looking anywhere
else
anyway. The only thing that could override it is a local variable.
Or a method in another module; there are some long-standing problems
with modules, namespace confusion, and privacy.
Charles Yeomans
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>