Skip to content

Commit

Permalink
Fix grammar conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
tobie committed Oct 11, 2017
1 parent 04e2bdd commit 76c5192
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1974,8 +1974,13 @@ The following extended attributes are applicable to operations:

<pre class="grammar" id="prod-Argument">
Argument :
ExtendedAttributeList "optional" TypeWithExtendedAttributes ArgumentName Default
ExtendedAttributeList Type Ellipsis ArgumentName
ExtendedAttributeList ArgumentRest
</pre>

<pre class="grammar" id="prod-ArgumentRest">
ArgumentRest :
"optional" TypeWithExtendedAttributes ArgumentName Default
Type Ellipsis ArgumentName
</pre>

<pre class="grammar" id="prod-ArgumentName">
Expand Down Expand Up @@ -4232,8 +4237,13 @@ No [=extended attributes=] are applicable to dictionaries.

<pre class="grammar" id="prod-DictionaryMember">
DictionaryMember :
ExtendedAttributeList "required" TypeWithExtendedAttributes identifier Default ";"
ExtendedAttributeList Type identifier Default ";"
ExtendedAttributeList DictionaryMemberRest
</pre>

<pre class="grammar" id="prod-DictionaryMemberRest">
DictionaryMemberRest :
"required" TypeWithExtendedAttributes identifier Default ";"
Type identifier Default ";"
</pre>

<pre class="grammar" id="prod-PartialDictionary">
Expand Down Expand Up @@ -5083,8 +5093,7 @@ type.

<pre class="grammar" id="prod-TypeWithExtendedAttributes">
TypeWithExtendedAttributes :
ExtendedAttributeList SingleType
ExtendedAttributeList UnionType Null
ExtendedAttributeList Type
</pre>

<pre class="grammar" id="prod-SingleType">
Expand Down

0 comments on commit 76c5192

Please sign in to comment.