@@ -297,11 +297,6 @@ public class AbortSignal: EventTarget {
297
297
return this[Strings.timeout].function!(this: this, arguments: [_toJSValue(milliseconds)]).fromJSValue()!
298
298
}
299
299
300
- @inlinable public class func any(signals: [AbortSignal]) -> Self {
301
- let this = constructor!
302
- return this[Strings.any].function!(this: this, arguments: [_toJSValue(signals)]).fromJSValue()!
303
- }
304
-
305
300
@ReadonlyAttribute
306
301
public var aborted: Bool
307
302
@@ -6948,9 +6943,9 @@ public class HTMLElement: Element, GlobalEventHandlers, ElementContentEditable,
6948
6943
_ = this[Strings.hidePopover].function!(this: this, arguments: [])
6949
6944
}
6950
6945
6951
- @inlinable public func togglePopover(force: Bool? = nil) -> Bool {
6946
+ @inlinable public func togglePopover(force: Bool? = nil) {
6952
6947
let this = jsObject
6953
- return this[Strings.togglePopover].function!(this: this, arguments: [_toJSValue(force)]).fromJSValue()!
6948
+ _ = this[Strings.togglePopover].function!(this: this, arguments: [_toJSValue(force)])
6954
6949
}
6955
6950
6956
6951
@ReadWriteAttribute
@@ -13498,11 +13493,6 @@ public class ReadableStream: JSBridgedClass, AsyncSequence {
13498
13493
self.init(unsafelyWrapping: Self.constructor!.new(arguments: [_toJSValue(underlyingSource), _toJSValue(strategy)]))
13499
13494
}
13500
13495
13501
- @inlinable public class func from(asyncIterable: JSValue) -> Self {
13502
- let this = constructor!
13503
- return this[Strings.from].function!(this: this, arguments: [_toJSValue(asyncIterable)]).fromJSValue()!
13504
- }
13505
-
13506
13496
@ReadonlyAttribute
13507
13497
public var locked: Bool
13508
13498
@@ -16868,7 +16858,7 @@ public class VideoFrame: JSBridgedClass {
16868
16858
}
16869
16859
16870
16860
public class VideoFrameBufferInit: BridgedDictionary {
16871
- public convenience init(format: VideoPixelFormat, codedWidth: UInt32, codedHeight: UInt32, timestamp: Int64, duration: UInt64, layout: [PlaneLayout], visibleRect: DOMRectInit, displayWidth: UInt32, displayHeight: UInt32, colorSpace: VideoColorSpaceInit, transfer: [ArrayBuffer] ) {
16861
+ public convenience init(format: VideoPixelFormat, codedWidth: UInt32, codedHeight: UInt32, timestamp: Int64, duration: UInt64, layout: [PlaneLayout], visibleRect: DOMRectInit, displayWidth: UInt32, displayHeight: UInt32, colorSpace: VideoColorSpaceInit) {
16872
16862
let object = JSObject.global[Strings.Object].function!.new()
16873
16863
object[Strings.format] = _toJSValue(format)
16874
16864
object[Strings.codedWidth] = _toJSValue(codedWidth)
@@ -16880,7 +16870,6 @@ public class VideoFrameBufferInit: BridgedDictionary {
16880
16870
object[Strings.displayWidth] = _toJSValue(displayWidth)
16881
16871
object[Strings.displayHeight] = _toJSValue(displayHeight)
16882
16872
object[Strings.colorSpace] = _toJSValue(colorSpace)
16883
- object[Strings.transfer] = _toJSValue(transfer)
16884
16873
self.init(unsafelyWrapping: object)
16885
16874
}
16886
16875
@@ -16895,7 +16884,6 @@ public class VideoFrameBufferInit: BridgedDictionary {
16895
16884
_displayWidth = ReadWriteAttribute(jsObject: object, name: Strings.displayWidth)
16896
16885
_displayHeight = ReadWriteAttribute(jsObject: object, name: Strings.displayHeight)
16897
16886
_colorSpace = ReadWriteAttribute(jsObject: object, name: Strings.colorSpace)
16898
- _transfer = ReadWriteAttribute(jsObject: object, name: Strings.transfer)
16899
16887
super.init(unsafelyWrapping: object)
16900
16888
}
16901
16889
@@ -16928,9 +16916,6 @@ public class VideoFrameBufferInit: BridgedDictionary {
16928
16916
16929
16917
@ReadWriteAttribute
16930
16918
public var colorSpace: VideoColorSpaceInit
16931
-
16932
- @ReadWriteAttribute
16933
- public var transfer: [ArrayBuffer]
16934
16919
}
16935
16920
16936
16921
public class VideoFrameCopyToOptions: BridgedDictionary {
@@ -18718,7 +18703,6 @@ public class XSLTProcessor: JSBridgedClass {
18718
18703
@usableFromInline static let ancestorOrigins: JSString = "ancestorOrigins"
18719
18704
@usableFromInline static let anchors: JSString = "anchors"
18720
18705
@usableFromInline static let animated: JSString = "animated"
18721
- @usableFromInline static let any: JSString = "any"
18722
18706
@usableFromInline static let appCodeName: JSString = "appCodeName"
18723
18707
@usableFromInline static let appName: JSString = "appName"
18724
18708
@usableFromInline static let appVersion: JSString = "appVersion"
@@ -19152,7 +19136,6 @@ public class XSLTProcessor: JSBridgedClass {
19152
19136
@usableFromInline static let frameRate: JSString = "frameRate"
19153
19137
@usableFromInline static let framerate: JSString = "framerate"
19154
19138
@usableFromInline static let frames: JSString = "frames"
19155
- @usableFromInline static let from: JSString = "from"
19156
19139
@usableFromInline static let fromBox: JSString = "fromBox"
19157
19140
@usableFromInline static let fromFloat32Array: JSString = "fromFloat32Array"
19158
19141
@usableFromInline static let fromFloat64Array: JSString = "fromFloat64Array"
0 commit comments