Auto merge of #11308 - nox:guarded, r=jdm

Implement [Func]

First part of #11292, this just includes support of `[Func]`.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11308)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-05-27 04:45:06 -05:00
commit 073c5e3b6b
18 changed files with 253 additions and 211 deletions

View file

@ -19,10 +19,15 @@ function test_member(name, enabled, target) {
}
var members = [
'funcControlledAttribute',
'funcControlledMethod',
'prefControlledAttribute',
'prefControlledMethod'
];
var staticMembers = [
'funcControlledStaticAttribute',
'funcControlledStaticMethod',
'funcControlledConst',
'prefControlledStaticAttribute',
'prefControlledStaticMethod',
'prefControlledConst'