From b2ad010f74a40acfffe757d32d22a166db5dc6f2 Mon Sep 17 00:00:00 2001
From: mmentovai
- Revision 2.2
+ Revision 2.3
@private properties are accessible to all code in the
same file, plus all static methods and instance methods of that class
- that "owns" the property, if the property belongs to a class.
@protected properties are accessible to all code in the
same file, plus any static methods and instance methods of any subclass
of a class that "owns" the property.
Note that these semantics differ from those of C++ and Java, in that + they grant private and protected access to all code in the same file, + not just in the same class or class hierarchy. Also, unlike in C++, + private properties cannot be overriden by a subclass. +
- Revision 2.2 + Revision 2.3