1
0
Fork 0

Added basic property keywords to TODO

closure/master
Mike Gerwitz 2011-01-09 00:58:49 -05:00
parent 3e8dba2fdc
commit 69b6d5df6b
1 changed files with 15 additions and 0 deletions

15
TODO 100644
View File

@ -0,0 +1,15 @@
# TODOs for ease.js
#
# This is by no means a complete list.
Property Keywords
- Restrictions; throw exceptions when unknown keywords are used
- public (default)
- protected; 'this' will contain protected members of self and parents
- private; 'this' will contain private members of self, but not private
members of parents
- const; immutable properties
- final; methods cannot be overridden by subtypes
- static; method/property accessible via class definition
- event; designates a supported event