mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 19:17:44 +00:00
IDL: Fix syntax errors
All attributes must have an "attribute" keyword, and "any?" is invalid (as "any" includes "null" as well).
This commit is contained in:
parent
26e6c47d0a
commit
3ff481938e
3 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
[Exposed=*]
|
||||
interface ReadableStreamBYOBRequest {
|
||||
// FIXME: This should be an ArrayBufferView
|
||||
readonly attribute any? view;
|
||||
readonly attribute any view;
|
||||
|
||||
// FIXME: undefined respond([EnforceRange] unsigned long long bytesWritten);
|
||||
// FIXME: undefined respondWithNewView(ArrayBufferView view);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue