Skip to content

Commit

Permalink
Add the 1-arg dictionary<> form to the grammar.
Browse files Browse the repository at this point in the history
  • Loading branch information
jyasskin committed Sep 30, 2016
1 parent 9392a5d commit 50d5fa2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 7 additions & 1 deletion index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -5175,7 +5175,7 @@ type.
"DOMException" Null
BufferRelatedType Null
"FrozenArray" "&lt;" Type "&gt;" Null
"dictionary" "&lt;" Type "," Type "&gt;" Null
OpenDictionaryType Null
</pre>

<div data-fill-with="grammar-ConstType"></div>
Expand Down Expand Up @@ -5224,6 +5224,12 @@ type.
"Promise" "&lt;" ReturnType "&gt;"
</pre>

<pre class="grammar" id="prod-OpenDictionaryType">
OpenDictionaryType :
"dictionary" "&lt;" Type "&gt;"
"dictionary" "&lt;" Type, Type "&gt;"
</pre>

<pre class="grammar" id="prod-Null">
Null :
"?"
Expand Down
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5258,7 +5258,7 @@ <h3 class="heading settled" data-level="2.11" id="idl-types"><span class="secno"
"DOMException" Null
BufferRelatedType Null
"FrozenArray" "&lt;" Type ">" Null
"dictionary" "&lt;" Type "," Type ">" Null
OpenDictionaryType Null
</pre>
<div data-fill-with="grammar-ConstType"></div>
<pre class="grammar" id="prod-PrimitiveType">PrimitiveType :
Expand Down Expand Up @@ -5291,6 +5291,10 @@ <h3 class="heading settled" data-level="2.11" id="idl-types"><span class="secno"
<pre class="grammar" id="prod-PromiseType">PromiseType :
"Promise" "&lt;" ReturnType ">"
</pre>
<pre class="grammar" id="prod-OpenDictionaryType">OpenDictionaryType :
"dictionary" "&lt;" Type ">"
"dictionary" "&lt;" Type, Type ">"
</pre>
<pre class="grammar" id="prod-Null">Null :
"?"
ε
Expand Down

0 comments on commit 50d5fa2

Please sign in to comment.