[heycam/webidl] ReadWriteAttribute production should not allow using "readonly" with inherit (#703)

Right now we have:
```
ReadWriteAttribute ::
    inherit ReadOnly AttributeRest
    AttributeRest
```

I think this should be:
```
ReadWriteAttribute ::
    inherit AttributeRest
    AttributeRest
```

because allowing "inherit readonly attribute type name;" in the grammar just to disallow it in prose is a little silly.

-- 
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/703

Received on Tuesday, 2 April 2019 16:49:04 UTC