- From: Kagami Sascha Rosylight <notifications@github.com>
- Date: Sat, 04 Nov 2017 16:51:35 +0000 (UTC)
- To: heycam/webidl <webidl@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Saturday, 4 November 2017 16:51:59 UTC
This PR fixes [2.4.3. Operations](https://heycam.github.io/webidl/#idl-operations) which currently says:
>An operation is an interface member (matching static OperationRest, stringifier OperationRest, RegularOperation or SpecialOperation) that defines a behavior that can be invoked on objects implementing the interface.
In fact, both StaticMember and Stringifier requires RegularOperation:
https://heycam.github.io/webidl/#prod-StaticMember
```
StaticMember ::
static StaticMemberRest
StaticMemberRest ::
ReadOnly AttributeRest
RegularOperation
```
https://heycam.github.io/webidl/#prod-Stringifier
```
Stringifier ::
stringifier StringifierRest
StringifierRest ::
ReadOnly AttributeRest
RegularOperation
;
```
You can view, comment on, or merge this pull request online at:
https://github.com/heycam/webidl/pull/474
-- Commit Summary --
* static/stringifer RegularOperation
-- File Changes --
M index.bs (4)
-- Patch Links --
https://github.com/heycam/webidl/pull/474.patch
https://github.com/heycam/webidl/pull/474.diff
--
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/pull/474
Received on Saturday, 4 November 2017 16:51:59 UTC