Skip to content

Commit 4012d16

Browse files
authored
Fix reference implementation's Web IDL files
This doesn't impact the generated code, because ReadableStreamDefaultReadResults are only ever used wrapped in Promises, which `webidl2js` currently doesn't unwrap.
1 parent c5c062a commit 4012d16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dictionary ReadableStreamBYOBReadResult {
2-
ArrayBufferView chunk;
2+
ArrayBufferView value;
33
boolean done;
44
};
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dictionary ReadableStreamDefaultReadResult {
2-
any chunk;
2+
any value;
33
boolean done;
44
};

0 commit comments

Comments
 (0)