Property accessors checked. Many things TBD

This commit is contained in:
Andrey Breslav
2011-04-18 22:31:59 +04:00
parent ec080358cb
commit 78f3eac62a
25 changed files with 492 additions and 175 deletions
+2
View File
@@ -88,10 +88,12 @@ property
;
getter
: modifiers "get"
: modifiers "get" "(" ")" (":" type)? functionBody
;
setter
: modifiers "set"
: modifiers "set" "(" modifiers (SimpleName | parameter) ")" functionBody
;