From 69b6d5df6b1b269814e29b3731ab432cec64ae57 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sun, 9 Jan 2011 00:58:49 -0500 Subject: [PATCH] Added basic property keywords to TODO --- TODO | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 TODO diff --git a/TODO b/TODO new file mode 100644 index 0000000..874487f --- /dev/null +++ b/TODO @@ -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 +