mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-29 04:31:33 +00:00
web-sys: Use mixins instead of [NoInterfaceObject]
interfaces and implements
I think these might all be from before WebIDL mixins existed. Either way, multiple inheritance of interfaces that don't have exposed interface objects is equivalent to mixins.
This commit is contained in:
@ -30,7 +30,7 @@ interface Response {
|
||||
|
||||
[ChromeOnly, NewObject, Throws] Response cloneUnfiltered();
|
||||
};
|
||||
Response implements Body;
|
||||
Response includes Body;
|
||||
|
||||
// This should be part of Body but we don't want to expose body to request yet.
|
||||
// See bug 1387483.
|
||||
|
Reference in New Issue
Block a user