1
Fork 0
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:
Matthew Olsson 2023-11-07 19:30:05 -07:00 committed by Andreas Kling
parent 26e6c47d0a
commit 3ff481938e
3 changed files with 4 additions and 4 deletions

View file

@ -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);