[heycam/webidl] Can SpecialOperation be more simplified? (#470)

Currently [SpecialOperation](https://heycam.github.io/webidl/#prod-SpecialOperation) allows multiple keywords before RegularOperation:

```
SpecialOperation ::
    Special Specials RegularOperation
Specials ::
    Special Specials
    ε
Special ::
    getter
    setter
    deleter
```

This was required before #44 to allow `setter creator void set(DOMString name, any value);` but now it seems no IDL uses `getter setter`, `setter deleter`, etc.

So I think SpecialOperation can just be `Special RegularOperation`, what do you think?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/470

Received on Thursday, 2 November 2017 03:45:38 UTC