Skip to content

Commit

Permalink
Fix reference implementation's Web IDL files
Browse files Browse the repository at this point in the history
This doesn't impact the generated code, because ReadableStreamDefaultReadResults are only ever used wrapped in Promises, which `webidl2js` currently doesn't unwrap.
  • Loading branch information
ninevra authored Jul 7, 2021
1 parent c5c062a commit 4012d16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dictionary ReadableStreamBYOBReadResult {
ArrayBufferView chunk;
ArrayBufferView value;
boolean done;
};
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dictionary ReadableStreamDefaultReadResult {
any chunk;
any value;
boolean done;
};

0 comments on commit 4012d16

Please sign in to comment.