chrome-devtools-frontend 1.0.1613625 → 1.0.1615539
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUTHORS +1 -0
- package/docs/contributing/infrastructure.md +0 -1
- package/front_end/core/common/VersionController.ts +17 -1
- package/front_end/core/host/UserMetrics.ts +0 -1
- package/front_end/core/root/ExperimentNames.ts +0 -1
- package/front_end/core/sdk/OverlayModel.ts +2 -4
- package/front_end/core/sdk/sdk-meta.ts +13 -0
- package/front_end/entrypoints/device_mode_emulation_frame/device_mode_emulation_frame.ts +4 -0
- package/front_end/entrypoints/greendev_floaty/FloatyEntrypoint.ts +0 -1
- package/front_end/entrypoints/greendev_floaty/floaty.css +3 -0
- package/front_end/entrypoints/greendev_floaty/greendev_floaty.ts +0 -1
- package/front_end/entrypoints/main/MainImpl.ts +0 -6
- package/front_end/entrypoints/shell/shell.ts +4 -0
- package/front_end/entrypoints/trace_app/trace_app.ts +4 -0
- package/front_end/generated/InspectorBackendCommands.ts +6 -4
- package/front_end/generated/protocol-mapping.d.ts +14 -0
- package/front_end/generated/protocol-proxy-api.d.ts +10 -0
- package/front_end/generated/protocol.ts +33 -3
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.snapshot.txt +10 -2
- package/front_end/models/ai_assistance/agents/ContextSelectionAgent.ts +23 -7
- package/front_end/models/ai_assistance/agents/PerformanceAgent.snapshot.txt +4 -1
- package/front_end/models/ai_assistance/agents/PerformanceAgent.ts +200 -46
- package/front_end/models/issues_manager/IssuesManager.ts +4 -0
- package/front_end/models/javascript_metadata/NativeFunctions.js +673 -639
- package/front_end/models/stack_trace/DetailedErrorStackParser.ts +161 -0
- package/front_end/models/stack_trace/StackTrace.ts +18 -0
- package/front_end/models/stack_trace/StackTraceImpl.ts +96 -4
- package/front_end/models/stack_trace/StackTraceModel.ts +39 -0
- package/front_end/models/stack_trace/Trie.ts +21 -0
- package/front_end/models/stack_trace/stack_trace_impl.ts +2 -0
- package/front_end/panels/ai_assistance/components/AccessibilityAgentMarkdownRenderer.ts +55 -14
- package/front_end/panels/ai_assistance/components/ChatView.ts +4 -3
- package/front_end/panels/ai_assistance/components/ExportForAgentsDialog.ts +4 -1
- package/front_end/panels/ai_assistance/components/optInChangeDialog.css +1 -2
- package/front_end/panels/application/WebMCPView.ts +270 -18
- package/front_end/panels/application/components/ProtocolHandlersView.ts +2 -2
- package/front_end/panels/application/webMCPView.css +4 -1
- package/front_end/panels/common/AiCodeCompletionDisclaimer.ts +7 -0
- package/front_end/panels/console/ConsoleContextSelector.ts +1 -1
- package/front_end/panels/console/ConsoleViewMessage.ts +8 -2
- package/front_end/panels/console/consoleView.css +4 -0
- package/front_end/panels/css_overview/CSSOverviewCompletedView.ts +2 -3
- package/front_end/panels/css_overview/CSSOverviewModel.ts +1 -2
- package/front_end/panels/network/RequestConditionsDrawer.ts +4 -2
- package/front_end/panels/network/RequestPayloadView.ts +8 -3
- package/front_end/panels/network/RequestTimingView.ts +6 -7
- package/front_end/panels/performance_monitor/PerformanceMonitor.ts +7 -5
- package/front_end/third_party/chromium/README.chromium +1 -1
- package/front_end/third_party/codemirror/codemirror-tsconfig.json +4 -4
- package/front_end/third_party/lighthouse/lighthouse-tsconfig.json +1 -1
- package/front_end/tsconfig.json +2 -1
- package/front_end/ui/legacy/EmptyWidget.ts +2 -2
- package/front_end/ui/legacy/components/color_picker/ContrastDetails.ts +1 -2
- package/front_end/ui/legacy/components/color_picker/ContrastOverlay.ts +4 -5
- package/front_end/ui/legacy/components/source_frame/XMLView.ts +12 -7
- package/front_end/ui/lit/lit.ts +4 -1
- package/front_end/ui/lit/render.ts +81 -0
- package/front_end/ui/visual_logging/KnownContextValues.ts +3 -1
- package/package.json +1 -1
- /package/front_end/third_party/codemirror/package/addon/runmode/{runmode-standalone.mjs.d.ts → runmode-standalone.d.mts} +0 -0
- /package/front_end/third_party/codemirror/package/mode/css/{css.mjs.d.ts → css.d.mts} +0 -0
- /package/front_end/third_party/codemirror/package/mode/javascript/{javascript.mjs.d.ts → javascript.d.mts} +0 -0
- /package/front_end/third_party/codemirror/package/mode/xml/{xml.mjs.d.ts → xml.d.mts} +0 -0
- /package/front_end/third_party/lighthouse/report-assets/{report-generator.mjs.d.ts → report-generator.d.mts} +0 -0
|
@@ -51,7 +51,7 @@ export const NativeFunctions = [
|
|
|
51
51
|
{
|
|
52
52
|
name: "escape",
|
|
53
53
|
signatures: [["string"]],
|
|
54
|
-
receivers: ["Window"]
|
|
54
|
+
receivers: ["Window","RegExpConstructor"]
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
name: "escape",
|
|
@@ -104,13 +104,13 @@ export const NativeFunctions = [
|
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
106
|
name: "get",
|
|
107
|
-
signatures: [["
|
|
108
|
-
receivers: ["
|
|
107
|
+
signatures: [["key"]],
|
|
108
|
+
receivers: ["Map","ReadonlyMap","WeakMap","XRHand"]
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
name: "get",
|
|
112
|
-
signatures: [["
|
|
113
|
-
receivers: ["
|
|
112
|
+
signatures: [["target","p","receiver"]],
|
|
113
|
+
receivers: ["ProxyHandler"]
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
name: "get",
|
|
@@ -157,6 +157,11 @@ export const NativeFunctions = [
|
|
|
157
157
|
signatures: [["name","value"]],
|
|
158
158
|
receivers: ["URLSearchParams"]
|
|
159
159
|
},
|
|
160
|
+
{
|
|
161
|
+
name: "set",
|
|
162
|
+
signatures: [["key","value"]],
|
|
163
|
+
receivers: ["Map","WeakMap","CrashReportContext"]
|
|
164
|
+
},
|
|
160
165
|
{
|
|
161
166
|
name: "set",
|
|
162
167
|
signatures: [["target","p","newValue","receiver"]],
|
|
@@ -167,11 +172,6 @@ export const NativeFunctions = [
|
|
|
167
172
|
signatures: [["value"]],
|
|
168
173
|
receivers: ["ClassAccessorDecoratorTarget","ClassAccessorDecoratorResult"]
|
|
169
174
|
},
|
|
170
|
-
{
|
|
171
|
-
name: "set",
|
|
172
|
-
signatures: [["key","value"]],
|
|
173
|
-
receivers: ["Map","WeakMap","CrashReportContext"]
|
|
174
|
-
},
|
|
175
175
|
{
|
|
176
176
|
name: "set",
|
|
177
177
|
signatures: [["featureValueName","values"]],
|
|
@@ -687,7 +687,7 @@ export const NativeFunctions = [
|
|
|
687
687
|
{
|
|
688
688
|
name: "toJSON",
|
|
689
689
|
signatures: [["?key"]],
|
|
690
|
-
receivers: ["Date","
|
|
690
|
+
receivers: ["Date","CoopAccessViolationReportBody","CSPViolationReportBody","DeprecationReportBody","DocumentPolicyViolationReportBody","IntegrityViolationReportBody","InterventionReportBody","PermissionsPolicyViolationReportBody","ReportBody","TestReportBody"]
|
|
691
691
|
},
|
|
692
692
|
{
|
|
693
693
|
name: "parse",
|
|
@@ -773,7 +773,7 @@ export const NativeFunctions = [
|
|
|
773
773
|
{
|
|
774
774
|
name: "forEach",
|
|
775
775
|
signatures: [["callbackfn","?thisArg"]],
|
|
776
|
-
receivers: ["ReadonlyArray","Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","AudioParamMap","CSSNumericArray","CSSTransformValue","CSSUnparsedValue","CustomStateSet","DOMTokenList","EventCounts","FontFaceSet","FormData","Headers","Highlight","HighlightRegistry","MIDIInputMap","MIDIOutputMap","MediaKeyStatusMap","NodeList","NodeListOf","RTCStatsReport","StylePropertyMapReadOnly","URLSearchParams","ViewTransitionTypeSet","
|
|
776
|
+
receivers: ["ReadonlyArray","Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","AudioParamMap","CSSNumericArray","CSSTransformValue","CSSUnparsedValue","CustomStateSet","DOMTokenList","EventCounts","FontFaceSet","FormData","GPUSupportedFeatures","Headers","Highlight","HighlightRegistry","MIDIInputMap","MIDIOutputMap","MediaKeyStatusMap","NodeList","NodeListOf","RTCStatsReport","StylePropertyMapReadOnly","URLSearchParams","ViewTransitionTypeSet","WGSLLanguageFeatures","Map","ReadonlyMap","Set","ReadonlySet","Float16Array","BigInt64Array","BigUint64Array"]
|
|
777
777
|
},
|
|
778
778
|
{
|
|
779
779
|
name: "forEach",
|
|
@@ -929,7 +929,7 @@ export const NativeFunctions = [
|
|
|
929
929
|
{
|
|
930
930
|
name: "fill",
|
|
931
931
|
signatures: [["value","?start","?end"]],
|
|
932
|
-
receivers: ["Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","
|
|
932
|
+
receivers: ["Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","Array","Float16Array","BigInt64Array","BigUint64Array"]
|
|
933
933
|
},
|
|
934
934
|
{
|
|
935
935
|
name: "fill",
|
|
@@ -944,7 +944,7 @@ export const NativeFunctions = [
|
|
|
944
944
|
{
|
|
945
945
|
name: "find",
|
|
946
946
|
signatures: [["predicate","?thisArg"]],
|
|
947
|
-
receivers: ["Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","
|
|
947
|
+
receivers: ["Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","Array","ReadonlyArray","Float16Array","BigInt64Array","BigUint64Array"]
|
|
948
948
|
},
|
|
949
949
|
{
|
|
950
950
|
name: "find",
|
|
@@ -975,7 +975,7 @@ export const NativeFunctions = [
|
|
|
975
975
|
},
|
|
976
976
|
{
|
|
977
977
|
name: "from",
|
|
978
|
-
signatures: [["
|
|
978
|
+
signatures: [["arrayLike","?mapfn","?thisArg"],["iterable","?mapfn","?thisArg"]],
|
|
979
979
|
receivers: ["ArrayConstructor"]
|
|
980
980
|
},
|
|
981
981
|
{
|
|
@@ -1003,7 +1003,7 @@ export const NativeFunctions = [
|
|
|
1003
1003
|
{
|
|
1004
1004
|
name: "addEventListener",
|
|
1005
1005
|
signatures: [["type","listener","?options"]],
|
|
1006
|
-
receivers: ["AbortSignal","SharedWorker","Worker","ServiceWorker","Animation","AudioBufferSourceNode","AudioContext","AudioDecoder","AudioEncoder","AudioScheduledSourceNode","AudioWorkletNode","BaseAudioContext","BroadcastChannel","CSSAnimation","CSSTransition","CanvasCaptureMediaStreamTrack","ConstantSourceNode","CookieStore","Document","Element","EventSource","FileReader","FontFaceSet","Window","HTMLElement","MathMLElement","SVGElement","HTMLAnchorElement","HTMLAreaElement","HTMLAudioElement","HTMLBRElement","HTMLBaseElement","HTMLBodyElement","HTMLButtonElement","HTMLCanvasElement","HTMLDListElement","HTMLDataElement","HTMLDataListElement","HTMLDetailsElement","HTMLDialogElement","HTMLDirectoryElement","HTMLDivElement","HTMLDocument","HTMLEmbedElement","HTMLFieldSetElement","HTMLFontElement","HTMLFormElement","HTMLFrameElement","HTMLFrameSetElement","HTMLHRElement","HTMLHeadElement","HTMLHeadingElement","HTMLHtmlElement","HTMLIFrameElement","HTMLImageElement","HTMLInputElement","HTMLLIElement","HTMLLabelElement","HTMLLegendElement","HTMLLinkElement","HTMLMapElement","HTMLMarqueeElement","HTMLMediaElement","HTMLMenuElement","HTMLMetaElement","HTMLMeterElement","HTMLModElement","HTMLOListElement","HTMLObjectElement","HTMLOptGroupElement","HTMLOptionElement","HTMLOutputElement","HTMLParagraphElement","HTMLParamElement","HTMLPictureElement","HTMLPreElement","HTMLProgressElement","HTMLQuoteElement","HTMLScriptElement","HTMLSelectElement","HTMLSlotElement","HTMLSourceElement","HTMLSpanElement","HTMLStyleElement","HTMLTableCaptionElement","HTMLTableCellElement","HTMLTableColElement","HTMLTableDataCellElement","HTMLTableElement","HTMLTableHeaderCellElement","HTMLTableRowElement","HTMLTableSectionElement","HTMLTemplateElement","HTMLTextAreaElement","HTMLTimeElement","HTMLTitleElement","HTMLTrackElement","HTMLUListElement","HTMLUnknownElement","HTMLVideoElement","IDBDatabase","IDBOpenDBRequest","IDBRequest","IDBTransaction","MIDIAccess","MIDIInput","MIDIOutput","MIDIPort","MediaDevices","MediaKeySession","MediaQueryList","MediaRecorder","MediaSource","MediaStream","MediaStreamTrack","MessageEventTarget","MessagePort","NavigationHistoryEntry","Notification","OfflineAudioContext","OffscreenCanvas","OscillatorNode","PaymentRequest","PaymentResponse","Performance","PermissionStatus","PictureInPictureWindow","RTCDTMFSender","RTCDataChannel","RTCDtlsTransport","RTCIceTransport","RTCPeerConnection","RTCSctpTransport","RemotePlayback","SVGAElement","SVGAnimateElement","SVGAnimateMotionElement","SVGAnimateTransformElement","SVGAnimationElement","SVGCircleElement","SVGClipPathElement","SVGComponentTransferFunctionElement","SVGDefsElement","SVGDescElement","SVGEllipseElement","SVGFEBlendElement","SVGFEColorMatrixElement","SVGFEComponentTransferElement","SVGFECompositeElement","SVGFEConvolveMatrixElement","SVGFEDiffuseLightingElement","SVGFEDisplacementMapElement","SVGFEDistantLightElement","SVGFEDropShadowElement","SVGFEFloodElement","SVGFEFuncAElement","SVGFEFuncBElement","SVGFEFuncGElement","SVGFEFuncRElement","SVGFEGaussianBlurElement","SVGFEImageElement","SVGFEMergeElement","SVGFEMergeNodeElement","SVGFEMorphologyElement","SVGFEOffsetElement","SVGFEPointLightElement","SVGFESpecularLightingElement","SVGFESpotLightElement","SVGFETileElement","SVGFETurbulenceElement","SVGFilterElement","SVGForeignObjectElement","SVGGElement","SVGGeometryElement","SVGGradientElement","SVGGraphicsElement","SVGImageElement","SVGLineElement","SVGLinearGradientElement","SVGMPathElement","SVGMarkerElement","SVGMaskElement","SVGMetadataElement","SVGPathElement","SVGPatternElement","SVGPolygonElement","SVGPolylineElement","SVGRadialGradientElement","SVGRectElement","SVGSVGElement","SVGScriptElement","SVGSetElement","SVGStopElement","SVGStyleElement","SVGSwitchElement","SVGSymbolElement","SVGTSpanElement","SVGTextContentElement","SVGTextElement","SVGTextPathElement","SVGTextPositioningElement","SVGTitleElement","SVGUseElement","SVGViewElement","ScreenOrientation","ScriptProcessorNode","ServiceWorkerContainer","ServiceWorkerRegistration","ShadowRoot","SourceBuffer","SourceBufferList","SpeechSynthesis","SpeechSynthesisUtterance","TextTrack","TextTrackCue","TextTrackList","VTTCue","VideoDecoder","VideoEncoder","VisualViewport","WakeLockSentinel","WebSocket","XMLDocument","XMLHttpRequest","XMLHttpRequestEventTarget","XMLHttpRequestUpload","DedicatedWorkerGlobalScope","ServiceWorkerGlobalScope","SharedWorkerGlobalScope","WorkerGlobalScope"]
|
|
1006
|
+
receivers: ["AbortSignal","SharedWorker","Worker","ServiceWorker","Animation","AudioBufferSourceNode","AudioContext","AudioDecoder","AudioEncoder","AudioScheduledSourceNode","AudioWorkletNode","BaseAudioContext","BroadcastChannel","CSSAnimation","CSSTransition","CanvasCaptureMediaStreamTrack","ConstantSourceNode","CookieStore","Document","Element","EventSource","FileReader","FontFaceSet","GPUDevice","Window","HTMLElement","MathMLElement","SVGElement","HTMLAnchorElement","HTMLAreaElement","HTMLAudioElement","HTMLBRElement","HTMLBaseElement","HTMLBodyElement","HTMLButtonElement","HTMLCanvasElement","HTMLDListElement","HTMLDataElement","HTMLDataListElement","HTMLDetailsElement","HTMLDialogElement","HTMLDirectoryElement","HTMLDivElement","HTMLDocument","HTMLEmbedElement","HTMLFieldSetElement","HTMLFontElement","HTMLFormElement","HTMLFrameElement","HTMLFrameSetElement","HTMLHRElement","HTMLHeadElement","HTMLHeadingElement","HTMLHtmlElement","HTMLIFrameElement","HTMLImageElement","HTMLInputElement","HTMLLIElement","HTMLLabelElement","HTMLLegendElement","HTMLLinkElement","HTMLMapElement","HTMLMarqueeElement","HTMLMediaElement","HTMLMenuElement","HTMLMetaElement","HTMLMeterElement","HTMLModElement","HTMLOListElement","HTMLObjectElement","HTMLOptGroupElement","HTMLOptionElement","HTMLOutputElement","HTMLParagraphElement","HTMLParamElement","HTMLPictureElement","HTMLPreElement","HTMLProgressElement","HTMLQuoteElement","HTMLScriptElement","HTMLSelectElement","HTMLSlotElement","HTMLSourceElement","HTMLSpanElement","HTMLStyleElement","HTMLTableCaptionElement","HTMLTableCellElement","HTMLTableColElement","HTMLTableDataCellElement","HTMLTableElement","HTMLTableHeaderCellElement","HTMLTableRowElement","HTMLTableSectionElement","HTMLTemplateElement","HTMLTextAreaElement","HTMLTimeElement","HTMLTitleElement","HTMLTrackElement","HTMLUListElement","HTMLUnknownElement","HTMLVideoElement","IDBDatabase","IDBOpenDBRequest","IDBRequest","IDBTransaction","MIDIAccess","MIDIInput","MIDIOutput","MIDIPort","MediaDevices","MediaKeySession","MediaQueryList","MediaRecorder","MediaSource","MediaStream","MediaStreamTrack","MessageEventTarget","MessagePort","Navigation","NavigationHistoryEntry","Notification","OfflineAudioContext","OffscreenCanvas","OscillatorNode","PaymentRequest","PaymentResponse","Performance","PermissionStatus","PictureInPictureWindow","RTCDTMFSender","RTCDataChannel","RTCDtlsTransport","RTCIceTransport","RTCPeerConnection","RTCSctpTransport","RemotePlayback","SVGAElement","SVGAnimateElement","SVGAnimateMotionElement","SVGAnimateTransformElement","SVGAnimationElement","SVGCircleElement","SVGClipPathElement","SVGComponentTransferFunctionElement","SVGDefsElement","SVGDescElement","SVGEllipseElement","SVGFEBlendElement","SVGFEColorMatrixElement","SVGFEComponentTransferElement","SVGFECompositeElement","SVGFEConvolveMatrixElement","SVGFEDiffuseLightingElement","SVGFEDisplacementMapElement","SVGFEDistantLightElement","SVGFEDropShadowElement","SVGFEFloodElement","SVGFEFuncAElement","SVGFEFuncBElement","SVGFEFuncGElement","SVGFEFuncRElement","SVGFEGaussianBlurElement","SVGFEImageElement","SVGFEMergeElement","SVGFEMergeNodeElement","SVGFEMorphologyElement","SVGFEOffsetElement","SVGFEPointLightElement","SVGFESpecularLightingElement","SVGFESpotLightElement","SVGFETileElement","SVGFETurbulenceElement","SVGFilterElement","SVGForeignObjectElement","SVGGElement","SVGGeometryElement","SVGGradientElement","SVGGraphicsElement","SVGImageElement","SVGLineElement","SVGLinearGradientElement","SVGMPathElement","SVGMarkerElement","SVGMaskElement","SVGMetadataElement","SVGPathElement","SVGPatternElement","SVGPolygonElement","SVGPolylineElement","SVGRadialGradientElement","SVGRectElement","SVGSVGElement","SVGScriptElement","SVGSetElement","SVGStopElement","SVGStyleElement","SVGSwitchElement","SVGSymbolElement","SVGTSpanElement","SVGTextContentElement","SVGTextElement","SVGTextPathElement","SVGTextPositioningElement","SVGTitleElement","SVGUseElement","SVGViewElement","ScreenOrientation","ScriptProcessorNode","ServiceWorkerContainer","ServiceWorkerRegistration","ShadowRoot","SourceBuffer","SourceBufferList","SpeechSynthesis","SpeechSynthesisUtterance","TaskSignal","TextTrack","TextTrackCue","TextTrackList","VTTCue","VideoDecoder","VideoEncoder","VisualViewport","WakeLockSentinel","WebSocket","XMLDocument","XMLHttpRequest","XMLHttpRequestEventTarget","XMLHttpRequestUpload","DedicatedWorkerGlobalScope","ServiceWorkerGlobalScope","SharedWorkerGlobalScope","WorkerGlobalScope"]
|
|
1007
1007
|
},
|
|
1008
1008
|
{
|
|
1009
1009
|
name: "addEventListener",
|
|
@@ -1013,7 +1013,7 @@ export const NativeFunctions = [
|
|
|
1013
1013
|
{
|
|
1014
1014
|
name: "removeEventListener",
|
|
1015
1015
|
signatures: [["type","listener","?options"]],
|
|
1016
|
-
receivers: ["AbortSignal","SharedWorker","Worker","ServiceWorker","Animation","AudioBufferSourceNode","AudioContext","AudioDecoder","AudioEncoder","AudioScheduledSourceNode","AudioWorkletNode","BaseAudioContext","BroadcastChannel","CSSAnimation","CSSTransition","CanvasCaptureMediaStreamTrack","ConstantSourceNode","CookieStore","Document","Element","EventSource","FileReader","FontFaceSet","Window","HTMLElement","MathMLElement","SVGElement","HTMLAnchorElement","HTMLAreaElement","HTMLAudioElement","HTMLBRElement","HTMLBaseElement","HTMLBodyElement","HTMLButtonElement","HTMLCanvasElement","HTMLDListElement","HTMLDataElement","HTMLDataListElement","HTMLDetailsElement","HTMLDialogElement","HTMLDirectoryElement","HTMLDivElement","HTMLDocument","HTMLEmbedElement","HTMLFieldSetElement","HTMLFontElement","HTMLFormElement","HTMLFrameElement","HTMLFrameSetElement","HTMLHRElement","HTMLHeadElement","HTMLHeadingElement","HTMLHtmlElement","HTMLIFrameElement","HTMLImageElement","HTMLInputElement","HTMLLIElement","HTMLLabelElement","HTMLLegendElement","HTMLLinkElement","HTMLMapElement","HTMLMarqueeElement","HTMLMediaElement","HTMLMenuElement","HTMLMetaElement","HTMLMeterElement","HTMLModElement","HTMLOListElement","HTMLObjectElement","HTMLOptGroupElement","HTMLOptionElement","HTMLOutputElement","HTMLParagraphElement","HTMLParamElement","HTMLPictureElement","HTMLPreElement","HTMLProgressElement","HTMLQuoteElement","HTMLScriptElement","HTMLSelectElement","HTMLSlotElement","HTMLSourceElement","HTMLSpanElement","HTMLStyleElement","HTMLTableCaptionElement","HTMLTableCellElement","HTMLTableColElement","HTMLTableDataCellElement","HTMLTableElement","HTMLTableHeaderCellElement","HTMLTableRowElement","HTMLTableSectionElement","HTMLTemplateElement","HTMLTextAreaElement","HTMLTimeElement","HTMLTitleElement","HTMLTrackElement","HTMLUListElement","HTMLUnknownElement","HTMLVideoElement","IDBDatabase","IDBOpenDBRequest","IDBRequest","IDBTransaction","MIDIAccess","MIDIInput","MIDIOutput","MIDIPort","MediaDevices","MediaKeySession","MediaQueryList","MediaRecorder","MediaSource","MediaStream","MediaStreamTrack","MessageEventTarget","MessagePort","NavigationHistoryEntry","Notification","OfflineAudioContext","OffscreenCanvas","OscillatorNode","PaymentRequest","PaymentResponse","Performance","PermissionStatus","PictureInPictureWindow","RTCDTMFSender","RTCDataChannel","RTCDtlsTransport","RTCIceTransport","RTCPeerConnection","RTCSctpTransport","RemotePlayback","SVGAElement","SVGAnimateElement","SVGAnimateMotionElement","SVGAnimateTransformElement","SVGAnimationElement","SVGCircleElement","SVGClipPathElement","SVGComponentTransferFunctionElement","SVGDefsElement","SVGDescElement","SVGEllipseElement","SVGFEBlendElement","SVGFEColorMatrixElement","SVGFEComponentTransferElement","SVGFECompositeElement","SVGFEConvolveMatrixElement","SVGFEDiffuseLightingElement","SVGFEDisplacementMapElement","SVGFEDistantLightElement","SVGFEDropShadowElement","SVGFEFloodElement","SVGFEFuncAElement","SVGFEFuncBElement","SVGFEFuncGElement","SVGFEFuncRElement","SVGFEGaussianBlurElement","SVGFEImageElement","SVGFEMergeElement","SVGFEMergeNodeElement","SVGFEMorphologyElement","SVGFEOffsetElement","SVGFEPointLightElement","SVGFESpecularLightingElement","SVGFESpotLightElement","SVGFETileElement","SVGFETurbulenceElement","SVGFilterElement","SVGForeignObjectElement","SVGGElement","SVGGeometryElement","SVGGradientElement","SVGGraphicsElement","SVGImageElement","SVGLineElement","SVGLinearGradientElement","SVGMPathElement","SVGMarkerElement","SVGMaskElement","SVGMetadataElement","SVGPathElement","SVGPatternElement","SVGPolygonElement","SVGPolylineElement","SVGRadialGradientElement","SVGRectElement","SVGSVGElement","SVGScriptElement","SVGSetElement","SVGStopElement","SVGStyleElement","SVGSwitchElement","SVGSymbolElement","SVGTSpanElement","SVGTextContentElement","SVGTextElement","SVGTextPathElement","SVGTextPositioningElement","SVGTitleElement","SVGUseElement","SVGViewElement","ScreenOrientation","ScriptProcessorNode","ServiceWorkerContainer","ServiceWorkerRegistration","ShadowRoot","SourceBuffer","SourceBufferList","SpeechSynthesis","SpeechSynthesisUtterance","TextTrack","TextTrackCue","TextTrackList","VTTCue","VideoDecoder","VideoEncoder","VisualViewport","WakeLockSentinel","WebSocket","XMLDocument","XMLHttpRequest","XMLHttpRequestEventTarget","XMLHttpRequestUpload","DedicatedWorkerGlobalScope","ServiceWorkerGlobalScope","SharedWorkerGlobalScope","WorkerGlobalScope"]
|
|
1016
|
+
receivers: ["AbortSignal","SharedWorker","Worker","ServiceWorker","Animation","AudioBufferSourceNode","AudioContext","AudioDecoder","AudioEncoder","AudioScheduledSourceNode","AudioWorkletNode","BaseAudioContext","BroadcastChannel","CSSAnimation","CSSTransition","CanvasCaptureMediaStreamTrack","ConstantSourceNode","CookieStore","Document","Element","EventSource","FileReader","FontFaceSet","GPUDevice","Window","HTMLElement","MathMLElement","SVGElement","HTMLAnchorElement","HTMLAreaElement","HTMLAudioElement","HTMLBRElement","HTMLBaseElement","HTMLBodyElement","HTMLButtonElement","HTMLCanvasElement","HTMLDListElement","HTMLDataElement","HTMLDataListElement","HTMLDetailsElement","HTMLDialogElement","HTMLDirectoryElement","HTMLDivElement","HTMLDocument","HTMLEmbedElement","HTMLFieldSetElement","HTMLFontElement","HTMLFormElement","HTMLFrameElement","HTMLFrameSetElement","HTMLHRElement","HTMLHeadElement","HTMLHeadingElement","HTMLHtmlElement","HTMLIFrameElement","HTMLImageElement","HTMLInputElement","HTMLLIElement","HTMLLabelElement","HTMLLegendElement","HTMLLinkElement","HTMLMapElement","HTMLMarqueeElement","HTMLMediaElement","HTMLMenuElement","HTMLMetaElement","HTMLMeterElement","HTMLModElement","HTMLOListElement","HTMLObjectElement","HTMLOptGroupElement","HTMLOptionElement","HTMLOutputElement","HTMLParagraphElement","HTMLParamElement","HTMLPictureElement","HTMLPreElement","HTMLProgressElement","HTMLQuoteElement","HTMLScriptElement","HTMLSelectElement","HTMLSlotElement","HTMLSourceElement","HTMLSpanElement","HTMLStyleElement","HTMLTableCaptionElement","HTMLTableCellElement","HTMLTableColElement","HTMLTableDataCellElement","HTMLTableElement","HTMLTableHeaderCellElement","HTMLTableRowElement","HTMLTableSectionElement","HTMLTemplateElement","HTMLTextAreaElement","HTMLTimeElement","HTMLTitleElement","HTMLTrackElement","HTMLUListElement","HTMLUnknownElement","HTMLVideoElement","IDBDatabase","IDBOpenDBRequest","IDBRequest","IDBTransaction","MIDIAccess","MIDIInput","MIDIOutput","MIDIPort","MediaDevices","MediaKeySession","MediaQueryList","MediaRecorder","MediaSource","MediaStream","MediaStreamTrack","MessageEventTarget","MessagePort","Navigation","NavigationHistoryEntry","Notification","OfflineAudioContext","OffscreenCanvas","OscillatorNode","PaymentRequest","PaymentResponse","Performance","PermissionStatus","PictureInPictureWindow","RTCDTMFSender","RTCDataChannel","RTCDtlsTransport","RTCIceTransport","RTCPeerConnection","RTCSctpTransport","RemotePlayback","SVGAElement","SVGAnimateElement","SVGAnimateMotionElement","SVGAnimateTransformElement","SVGAnimationElement","SVGCircleElement","SVGClipPathElement","SVGComponentTransferFunctionElement","SVGDefsElement","SVGDescElement","SVGEllipseElement","SVGFEBlendElement","SVGFEColorMatrixElement","SVGFEComponentTransferElement","SVGFECompositeElement","SVGFEConvolveMatrixElement","SVGFEDiffuseLightingElement","SVGFEDisplacementMapElement","SVGFEDistantLightElement","SVGFEDropShadowElement","SVGFEFloodElement","SVGFEFuncAElement","SVGFEFuncBElement","SVGFEFuncGElement","SVGFEFuncRElement","SVGFEGaussianBlurElement","SVGFEImageElement","SVGFEMergeElement","SVGFEMergeNodeElement","SVGFEMorphologyElement","SVGFEOffsetElement","SVGFEPointLightElement","SVGFESpecularLightingElement","SVGFESpotLightElement","SVGFETileElement","SVGFETurbulenceElement","SVGFilterElement","SVGForeignObjectElement","SVGGElement","SVGGeometryElement","SVGGradientElement","SVGGraphicsElement","SVGImageElement","SVGLineElement","SVGLinearGradientElement","SVGMPathElement","SVGMarkerElement","SVGMaskElement","SVGMetadataElement","SVGPathElement","SVGPatternElement","SVGPolygonElement","SVGPolylineElement","SVGRadialGradientElement","SVGRectElement","SVGSVGElement","SVGScriptElement","SVGSetElement","SVGStopElement","SVGStyleElement","SVGSwitchElement","SVGSymbolElement","SVGTSpanElement","SVGTextContentElement","SVGTextElement","SVGTextPathElement","SVGTextPositioningElement","SVGTitleElement","SVGUseElement","SVGViewElement","ScreenOrientation","ScriptProcessorNode","ServiceWorkerContainer","ServiceWorkerRegistration","ShadowRoot","SourceBuffer","SourceBufferList","SpeechSynthesis","SpeechSynthesisUtterance","TaskSignal","TextTrack","TextTrackCue","TextTrackList","VTTCue","VideoDecoder","VideoEncoder","VisualViewport","WakeLockSentinel","WebSocket","XMLDocument","XMLHttpRequest","XMLHttpRequestEventTarget","XMLHttpRequestUpload","DedicatedWorkerGlobalScope","ServiceWorkerGlobalScope","SharedWorkerGlobalScope","WorkerGlobalScope"]
|
|
1017
1017
|
},
|
|
1018
1018
|
{
|
|
1019
1019
|
name: "removeEventListener",
|
|
@@ -1188,7 +1188,7 @@ export const NativeFunctions = [
|
|
|
1188
1188
|
},
|
|
1189
1189
|
{
|
|
1190
1190
|
name: "configure",
|
|
1191
|
-
signatures: [["descriptor"]],
|
|
1191
|
+
signatures: [["configuration"],["descriptor"]],
|
|
1192
1192
|
receivers: ["GPUCanvasContext"]
|
|
1193
1193
|
},
|
|
1194
1194
|
{
|
|
@@ -1415,13 +1415,13 @@ export const NativeFunctions = [
|
|
|
1415
1415
|
},
|
|
1416
1416
|
{
|
|
1417
1417
|
name: "add",
|
|
1418
|
-
signatures: [["
|
|
1419
|
-
receivers: ["
|
|
1418
|
+
signatures: [["value"]],
|
|
1419
|
+
receivers: ["Set","WeakSet"]
|
|
1420
1420
|
},
|
|
1421
1421
|
{
|
|
1422
1422
|
name: "add",
|
|
1423
|
-
signatures: [["value"]],
|
|
1424
|
-
receivers: ["
|
|
1423
|
+
signatures: [["typedArray","index","value"]],
|
|
1424
|
+
receivers: ["Atomics"]
|
|
1425
1425
|
},
|
|
1426
1426
|
{
|
|
1427
1427
|
name: "add",
|
|
@@ -1493,7 +1493,7 @@ export const NativeFunctions = [
|
|
|
1493
1493
|
{
|
|
1494
1494
|
name: "item",
|
|
1495
1495
|
signatures: [["index"]],
|
|
1496
|
-
receivers: ["CSSRuleList","
|
|
1496
|
+
receivers: ["CSSRuleList","CSSStyleDeclarationBase","DOMRectList","DOMStringList","DOMTokenList","FileList","HTMLCollectionBase","HTMLCollectionOf","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","NodeListOf","Plugin","PluginArray","SpeechRecognitionResult","SpeechRecognitionResultList","StyleSheetList","TouchList","TimelineTriggerRangeList","CSSStyleDeclaration","HTMLCollection","SpeechGrammarList"]
|
|
1497
1497
|
},
|
|
1498
1498
|
{
|
|
1499
1499
|
name: "item",
|
|
@@ -1642,11 +1642,6 @@ export const NativeFunctions = [
|
|
|
1642
1642
|
signatures: [["name","?value"]],
|
|
1643
1643
|
receivers: ["URLSearchParams"]
|
|
1644
1644
|
},
|
|
1645
|
-
{
|
|
1646
|
-
name: "has",
|
|
1647
|
-
signatures: [["target","p"]],
|
|
1648
|
-
receivers: ["ProxyHandler"]
|
|
1649
|
-
},
|
|
1650
1645
|
{
|
|
1651
1646
|
name: "has",
|
|
1652
1647
|
signatures: [["key"]],
|
|
@@ -1657,6 +1652,11 @@ export const NativeFunctions = [
|
|
|
1657
1652
|
signatures: [["value"]],
|
|
1658
1653
|
receivers: ["Set","ReadonlySet","WeakSet","ReadonlySetLike"]
|
|
1659
1654
|
},
|
|
1655
|
+
{
|
|
1656
|
+
name: "has",
|
|
1657
|
+
signatures: [["target","p"]],
|
|
1658
|
+
receivers: ["ProxyHandler"]
|
|
1659
|
+
},
|
|
1660
1660
|
{
|
|
1661
1661
|
name: "open",
|
|
1662
1662
|
signatures: [["cacheName"]],
|
|
@@ -2081,7 +2081,7 @@ export const NativeFunctions = [
|
|
|
2081
2081
|
},
|
|
2082
2082
|
{
|
|
2083
2083
|
name: "getAll",
|
|
2084
|
-
signatures: [["?
|
|
2084
|
+
signatures: [["?queryOrOptions","?count"],["?query_or_options","?count"]],
|
|
2085
2085
|
receivers: ["IDBIndex","IDBObjectStore"]
|
|
2086
2086
|
},
|
|
2087
2087
|
{
|
|
@@ -2131,6 +2131,21 @@ export const NativeFunctions = [
|
|
|
2131
2131
|
name: "getName",
|
|
2132
2132
|
signatures: [["constructor"]]
|
|
2133
2133
|
},
|
|
2134
|
+
{
|
|
2135
|
+
name: "initialize",
|
|
2136
|
+
signatures: [["root"]],
|
|
2137
|
+
receivers: ["CustomElementRegistry"]
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
name: "initialize",
|
|
2141
|
+
signatures: [["newItem"]],
|
|
2142
|
+
receivers: ["SVGLengthList","SVGNumberList","SVGPointList","SVGStringList","SVGTransformList"]
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
name: "initialize",
|
|
2146
|
+
signatures: [["length"]],
|
|
2147
|
+
receivers: ["CrashReportContext"]
|
|
2148
|
+
},
|
|
2134
2149
|
{
|
|
2135
2150
|
name: "upgrade",
|
|
2136
2151
|
signatures: [["root"]]
|
|
@@ -2556,13 +2571,13 @@ export const NativeFunctions = [
|
|
|
2556
2571
|
},
|
|
2557
2572
|
{
|
|
2558
2573
|
name: "removeAttribute",
|
|
2559
|
-
signatures: [["
|
|
2560
|
-
receivers: ["
|
|
2574
|
+
signatures: [["attribute"]],
|
|
2575
|
+
receivers: ["Sanitizer"]
|
|
2561
2576
|
},
|
|
2562
2577
|
{
|
|
2563
2578
|
name: "removeAttribute",
|
|
2564
|
-
signatures: [["
|
|
2565
|
-
receivers: ["
|
|
2579
|
+
signatures: [["name"]],
|
|
2580
|
+
receivers: ["ProcessingInstruction"]
|
|
2566
2581
|
},
|
|
2567
2582
|
{
|
|
2568
2583
|
name: "removeAttributeNS",
|
|
@@ -2839,197 +2854,421 @@ export const NativeFunctions = [
|
|
|
2839
2854
|
receivers: ["StylePropertyMap"]
|
|
2840
2855
|
},
|
|
2841
2856
|
{
|
|
2842
|
-
name: "
|
|
2843
|
-
signatures: [["
|
|
2857
|
+
name: "requestAdapter",
|
|
2858
|
+
signatures: [["?options"]]
|
|
2844
2859
|
},
|
|
2845
2860
|
{
|
|
2846
|
-
name: "
|
|
2847
|
-
signatures: [["
|
|
2861
|
+
name: "requestDevice",
|
|
2862
|
+
signatures: [["?descriptor"]],
|
|
2863
|
+
receivers: ["GPUAdapter"]
|
|
2848
2864
|
},
|
|
2849
2865
|
{
|
|
2850
|
-
name: "
|
|
2851
|
-
signatures: [["
|
|
2866
|
+
name: "requestDevice",
|
|
2867
|
+
signatures: [["?options"]],
|
|
2868
|
+
receivers: ["Bluetooth"]
|
|
2852
2869
|
},
|
|
2853
2870
|
{
|
|
2854
|
-
name: "
|
|
2855
|
-
signatures: [["
|
|
2871
|
+
name: "requestDevice",
|
|
2872
|
+
signatures: [["options"]],
|
|
2873
|
+
receivers: ["HID","USB"]
|
|
2856
2874
|
},
|
|
2857
2875
|
{
|
|
2858
|
-
name: "
|
|
2859
|
-
signatures: [["
|
|
2876
|
+
name: "setBindGroup",
|
|
2877
|
+
signatures: [["index","bindGroup","?dynamicOffsets"],["index","bindGroup","dynamicOffsetsData","dynamicOffsetsDataStart","dynamicOffsetsDataLength"]]
|
|
2860
2878
|
},
|
|
2861
2879
|
{
|
|
2862
|
-
name: "
|
|
2863
|
-
signatures: [["
|
|
2880
|
+
name: "getMappedRange",
|
|
2881
|
+
signatures: [["?offset","?size"]]
|
|
2864
2882
|
},
|
|
2865
2883
|
{
|
|
2866
|
-
name: "
|
|
2867
|
-
signatures: [["?
|
|
2868
|
-
receivers: ["HTMLCanvasElement"]
|
|
2884
|
+
name: "mapAsync",
|
|
2885
|
+
signatures: [["mode","?offset","?size"]]
|
|
2869
2886
|
},
|
|
2870
2887
|
{
|
|
2871
|
-
name: "
|
|
2872
|
-
signatures: [["
|
|
2873
|
-
receivers: ["HTMLCanvasElement"]
|
|
2888
|
+
name: "beginComputePass",
|
|
2889
|
+
signatures: [["?descriptor"]]
|
|
2874
2890
|
},
|
|
2875
2891
|
{
|
|
2876
|
-
name: "
|
|
2877
|
-
signatures: [["
|
|
2878
|
-
receivers: ["OffscreenCanvas"]
|
|
2892
|
+
name: "beginRenderPass",
|
|
2893
|
+
signatures: [["descriptor"]]
|
|
2879
2894
|
},
|
|
2880
2895
|
{
|
|
2881
|
-
name: "
|
|
2882
|
-
signatures: [["
|
|
2896
|
+
name: "clearBuffer",
|
|
2897
|
+
signatures: [["buffer","?offset","?size"]]
|
|
2883
2898
|
},
|
|
2884
2899
|
{
|
|
2885
|
-
name: "
|
|
2886
|
-
signatures: [["?
|
|
2900
|
+
name: "copyBufferToBuffer",
|
|
2901
|
+
signatures: [["source","destination","?size"],["source","sourceOffset","destination","destinationOffset","?size"]]
|
|
2887
2902
|
},
|
|
2888
2903
|
{
|
|
2889
|
-
name: "
|
|
2890
|
-
signatures: [["
|
|
2891
|
-
receivers: ["HTMLDialogElement"]
|
|
2904
|
+
name: "copyBufferToTexture",
|
|
2905
|
+
signatures: [["source","destination","copySize"]]
|
|
2892
2906
|
},
|
|
2893
2907
|
{
|
|
2894
|
-
name: "
|
|
2895
|
-
signatures: [["
|
|
2896
|
-
receivers: ["PaymentRequest"]
|
|
2908
|
+
name: "copyTextureToBuffer",
|
|
2909
|
+
signatures: [["source","destination","copySize"]]
|
|
2897
2910
|
},
|
|
2898
2911
|
{
|
|
2899
|
-
name: "
|
|
2900
|
-
signatures: [["
|
|
2912
|
+
name: "copyTextureToTexture",
|
|
2913
|
+
signatures: [["source","destination","copySize"]]
|
|
2901
2914
|
},
|
|
2902
2915
|
{
|
|
2903
|
-
name: "
|
|
2904
|
-
signatures: [["
|
|
2916
|
+
name: "resolveQuerySet",
|
|
2917
|
+
signatures: [["querySet","firstQuery","queryCount","destination","destinationOffset"]]
|
|
2905
2918
|
},
|
|
2906
2919
|
{
|
|
2907
|
-
name: "
|
|
2908
|
-
signatures: [["?
|
|
2920
|
+
name: "dispatchWorkgroups",
|
|
2921
|
+
signatures: [["workgroupCountX","?workgroupCountY","?workgroupCountZ"]]
|
|
2909
2922
|
},
|
|
2910
2923
|
{
|
|
2911
|
-
name: "
|
|
2912
|
-
signatures: [["
|
|
2924
|
+
name: "dispatchWorkgroupsIndirect",
|
|
2925
|
+
signatures: [["indirectBuffer","indirectOffset"]]
|
|
2913
2926
|
},
|
|
2914
2927
|
{
|
|
2915
|
-
name: "
|
|
2916
|
-
signatures: [["
|
|
2917
|
-
receivers: ["
|
|
2928
|
+
name: "end",
|
|
2929
|
+
signatures: [["index"]],
|
|
2930
|
+
receivers: ["TimeRanges"]
|
|
2918
2931
|
},
|
|
2919
2932
|
{
|
|
2920
|
-
name: "
|
|
2921
|
-
signatures: [["
|
|
2922
|
-
receivers: ["ContactsManager"]
|
|
2933
|
+
name: "setPipeline",
|
|
2934
|
+
signatures: [["pipeline"]]
|
|
2923
2935
|
},
|
|
2924
2936
|
{
|
|
2925
|
-
name: "
|
|
2926
|
-
signatures: [["
|
|
2937
|
+
name: "insertDebugMarker",
|
|
2938
|
+
signatures: [["markerLabel"]]
|
|
2927
2939
|
},
|
|
2928
2940
|
{
|
|
2929
|
-
name: "
|
|
2930
|
-
signatures: [["
|
|
2941
|
+
name: "pushDebugGroup",
|
|
2942
|
+
signatures: [["groupLabel"]]
|
|
2931
2943
|
},
|
|
2932
2944
|
{
|
|
2933
|
-
name: "
|
|
2934
|
-
signatures: [["
|
|
2945
|
+
name: "createBindGroup",
|
|
2946
|
+
signatures: [["descriptor"]]
|
|
2935
2947
|
},
|
|
2936
2948
|
{
|
|
2937
|
-
name: "
|
|
2938
|
-
signatures: [["
|
|
2949
|
+
name: "createBindGroupLayout",
|
|
2950
|
+
signatures: [["descriptor"]]
|
|
2939
2951
|
},
|
|
2940
2952
|
{
|
|
2941
|
-
name: "
|
|
2942
|
-
signatures: [["
|
|
2953
|
+
name: "createCommandEncoder",
|
|
2954
|
+
signatures: [["?descriptor"]]
|
|
2943
2955
|
},
|
|
2944
2956
|
{
|
|
2945
|
-
name: "
|
|
2946
|
-
signatures: [["
|
|
2957
|
+
name: "createComputePipeline",
|
|
2958
|
+
signatures: [["descriptor"]]
|
|
2947
2959
|
},
|
|
2948
2960
|
{
|
|
2949
|
-
name: "
|
|
2950
|
-
signatures: [["
|
|
2961
|
+
name: "createComputePipelineAsync",
|
|
2962
|
+
signatures: [["descriptor"]]
|
|
2951
2963
|
},
|
|
2952
2964
|
{
|
|
2953
|
-
name: "
|
|
2954
|
-
signatures: [["
|
|
2965
|
+
name: "createPipelineLayout",
|
|
2966
|
+
signatures: [["descriptor"]]
|
|
2955
2967
|
},
|
|
2956
2968
|
{
|
|
2957
|
-
name: "
|
|
2958
|
-
signatures: [["
|
|
2969
|
+
name: "createQuerySet",
|
|
2970
|
+
signatures: [["descriptor"]]
|
|
2959
2971
|
},
|
|
2960
2972
|
{
|
|
2961
|
-
name: "
|
|
2962
|
-
signatures: [["
|
|
2963
|
-
receivers: ["HTMLOrSVGElement","HTMLElement","MathMLElement","SVGElement"]
|
|
2973
|
+
name: "createRenderBundleEncoder",
|
|
2974
|
+
signatures: [["descriptor"]]
|
|
2964
2975
|
},
|
|
2965
2976
|
{
|
|
2966
|
-
name: "
|
|
2967
|
-
signatures: [["
|
|
2968
|
-
receivers: ["HTMLSlotElement"]
|
|
2977
|
+
name: "createRenderPipeline",
|
|
2978
|
+
signatures: [["descriptor"]]
|
|
2969
2979
|
},
|
|
2970
2980
|
{
|
|
2971
|
-
name: "
|
|
2972
|
-
signatures: [["
|
|
2973
|
-
receivers: ["Location"]
|
|
2981
|
+
name: "createRenderPipelineAsync",
|
|
2982
|
+
signatures: [["descriptor"]]
|
|
2974
2983
|
},
|
|
2975
2984
|
{
|
|
2976
|
-
name: "
|
|
2977
|
-
signatures: [["
|
|
2978
|
-
receivers: ["
|
|
2985
|
+
name: "createSampler",
|
|
2986
|
+
signatures: [["?descriptor"]],
|
|
2987
|
+
receivers: ["GPUDevice"]
|
|
2979
2988
|
},
|
|
2980
2989
|
{
|
|
2981
|
-
name: "
|
|
2982
|
-
signatures: [["
|
|
2990
|
+
name: "createShaderModule",
|
|
2991
|
+
signatures: [["descriptor"]]
|
|
2983
2992
|
},
|
|
2984
2993
|
{
|
|
2985
|
-
name: "
|
|
2986
|
-
signatures: [["
|
|
2994
|
+
name: "createTexture",
|
|
2995
|
+
signatures: [["descriptor"]],
|
|
2996
|
+
receivers: ["GPUDevice"]
|
|
2987
2997
|
},
|
|
2988
2998
|
{
|
|
2989
|
-
name: "
|
|
2990
|
-
signatures: [["
|
|
2999
|
+
name: "importExternalTexture",
|
|
3000
|
+
signatures: [["descriptor"]]
|
|
2991
3001
|
},
|
|
2992
3002
|
{
|
|
2993
|
-
name: "
|
|
2994
|
-
signatures: [["
|
|
3003
|
+
name: "pushErrorScope",
|
|
3004
|
+
signatures: [["filter"]]
|
|
2995
3005
|
},
|
|
2996
3006
|
{
|
|
2997
|
-
name: "
|
|
3007
|
+
name: "getBindGroupLayout",
|
|
2998
3008
|
signatures: [["index"]]
|
|
2999
3009
|
},
|
|
3000
3010
|
{
|
|
3001
|
-
name: "
|
|
3002
|
-
signatures: [["
|
|
3011
|
+
name: "copyExternalImageToTexture",
|
|
3012
|
+
signatures: [["source","destination","copySize"]]
|
|
3003
3013
|
},
|
|
3004
3014
|
{
|
|
3005
|
-
name: "
|
|
3006
|
-
signatures: [["
|
|
3015
|
+
name: "submit",
|
|
3016
|
+
signatures: [["commandBuffers"],["buffers"]],
|
|
3017
|
+
receivers: ["GPUQueue"]
|
|
3007
3018
|
},
|
|
3008
3019
|
{
|
|
3009
|
-
name: "
|
|
3010
|
-
signatures: [["
|
|
3020
|
+
name: "writeBuffer",
|
|
3021
|
+
signatures: [["buffer","bufferOffset","data","?dataOffset","?size"],["buffer","bufferOffset","data","?dataElementOffset","?dataElementCount"],["buffer","bufferOffset","data","?dataByteOffset","?byteSize"]]
|
|
3011
3022
|
},
|
|
3012
3023
|
{
|
|
3013
|
-
name: "
|
|
3014
|
-
signatures: [["
|
|
3015
|
-
receivers: ["Navigation"]
|
|
3024
|
+
name: "writeTexture",
|
|
3025
|
+
signatures: [["destination","data","dataLayout","size"]]
|
|
3016
3026
|
},
|
|
3017
3027
|
{
|
|
3018
|
-
name: "
|
|
3019
|
-
signatures: [["?
|
|
3020
|
-
receivers: ["Navigation"]
|
|
3028
|
+
name: "draw",
|
|
3029
|
+
signatures: [["vertexCount","?instanceCount","?firstVertex","?firstInstance"]]
|
|
3021
3030
|
},
|
|
3022
3031
|
{
|
|
3023
|
-
name: "
|
|
3024
|
-
signatures: [["?
|
|
3032
|
+
name: "drawIndexed",
|
|
3033
|
+
signatures: [["indexCount","?instanceCount","?firstIndex","?baseVertex","?firstInstance"]]
|
|
3025
3034
|
},
|
|
3026
3035
|
{
|
|
3027
|
-
name: "
|
|
3028
|
-
signatures: [["
|
|
3036
|
+
name: "drawIndexedIndirect",
|
|
3037
|
+
signatures: [["indirectBuffer","indirectOffset"]]
|
|
3029
3038
|
},
|
|
3030
3039
|
{
|
|
3031
|
-
name: "
|
|
3032
|
-
signatures: [["
|
|
3040
|
+
name: "drawIndirect",
|
|
3041
|
+
signatures: [["indirectBuffer","indirectOffset"]]
|
|
3042
|
+
},
|
|
3043
|
+
{
|
|
3044
|
+
name: "setIndexBuffer",
|
|
3045
|
+
signatures: [["buffer","indexFormat","?offset","?size"]],
|
|
3046
|
+
receivers: ["GPURenderCommandsMixin"]
|
|
3047
|
+
},
|
|
3048
|
+
{
|
|
3049
|
+
name: "setIndexBuffer",
|
|
3050
|
+
signatures: [["buffer","format","?offset","?size"]],
|
|
3051
|
+
receivers: ["GPURenderBundleEncoder","GPURenderPassEncoder"]
|
|
3052
|
+
},
|
|
3053
|
+
{
|
|
3054
|
+
name: "setVertexBuffer",
|
|
3055
|
+
signatures: [["slot","buffer","?offset","?size"]]
|
|
3056
|
+
},
|
|
3057
|
+
{
|
|
3058
|
+
name: "beginOcclusionQuery",
|
|
3059
|
+
signatures: [["queryIndex"]]
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
name: "executeBundles",
|
|
3063
|
+
signatures: [["bundles"]]
|
|
3064
|
+
},
|
|
3065
|
+
{
|
|
3066
|
+
name: "setBlendConstant",
|
|
3067
|
+
signatures: [["color"]]
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
name: "setScissorRect",
|
|
3071
|
+
signatures: [["x","y","width","height"]]
|
|
3072
|
+
},
|
|
3073
|
+
{
|
|
3074
|
+
name: "setStencilReference",
|
|
3075
|
+
signatures: [["reference"]]
|
|
3076
|
+
},
|
|
3077
|
+
{
|
|
3078
|
+
name: "setViewport",
|
|
3079
|
+
signatures: [["x","y","width","height","minDepth","maxDepth"]]
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
name: "createView",
|
|
3083
|
+
signatures: [["?descriptor"]]
|
|
3084
|
+
},
|
|
3085
|
+
{
|
|
3086
|
+
name: "playEffect",
|
|
3087
|
+
signatures: [["type","?params"]]
|
|
3088
|
+
},
|
|
3089
|
+
{
|
|
3090
|
+
name: "clearWatch",
|
|
3091
|
+
signatures: [["watchId"],["watchID"]]
|
|
3092
|
+
},
|
|
3093
|
+
{
|
|
3094
|
+
name: "getCurrentPosition",
|
|
3095
|
+
signatures: [["successCallback","?errorCallback","?options"]]
|
|
3096
|
+
},
|
|
3097
|
+
{
|
|
3098
|
+
name: "watchPosition",
|
|
3099
|
+
signatures: [["successCallback","?errorCallback","?options"]]
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
name: "namedItem",
|
|
3103
|
+
signatures: [["name"]]
|
|
3104
|
+
},
|
|
3105
|
+
{
|
|
3106
|
+
name: "setCustomValidity",
|
|
3107
|
+
signatures: [["error"]]
|
|
3108
|
+
},
|
|
3109
|
+
{
|
|
3110
|
+
name: "captureStream",
|
|
3111
|
+
signatures: [["?frameRequestRate"],["?frameRate"]],
|
|
3112
|
+
receivers: ["HTMLCanvasElement"]
|
|
3113
|
+
},
|
|
3114
|
+
{
|
|
3115
|
+
name: "getContext",
|
|
3116
|
+
signatures: [["contextId","?options"],["contextId","?attributes"]],
|
|
3117
|
+
receivers: ["HTMLCanvasElement"]
|
|
3118
|
+
},
|
|
3119
|
+
{
|
|
3120
|
+
name: "getContext",
|
|
3121
|
+
signatures: [["contextId","?options"],["contextType","?attributes"]],
|
|
3122
|
+
receivers: ["OffscreenCanvas"]
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
name: "toBlob",
|
|
3126
|
+
signatures: [["callback","?type","?quality"]]
|
|
3127
|
+
},
|
|
3128
|
+
{
|
|
3129
|
+
name: "toDataURL",
|
|
3130
|
+
signatures: [["?type","?quality"]]
|
|
3131
|
+
},
|
|
3132
|
+
{
|
|
3133
|
+
name: "requestClose",
|
|
3134
|
+
signatures: [["?returnValue"]],
|
|
3135
|
+
receivers: ["HTMLDialogElement"]
|
|
3136
|
+
},
|
|
3137
|
+
{
|
|
3138
|
+
name: "show",
|
|
3139
|
+
signatures: [["?detailsPromise"]],
|
|
3140
|
+
receivers: ["PaymentRequest"]
|
|
3141
|
+
},
|
|
3142
|
+
{
|
|
3143
|
+
name: "attachInternals",
|
|
3144
|
+
signatures: [["?options"]]
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
name: "showPopover",
|
|
3148
|
+
signatures: [["?options"]]
|
|
3149
|
+
},
|
|
3150
|
+
{
|
|
3151
|
+
name: "togglePopover",
|
|
3152
|
+
signatures: [["?options"]]
|
|
3153
|
+
},
|
|
3154
|
+
{
|
|
3155
|
+
name: "requestSubmit",
|
|
3156
|
+
signatures: [["?submitter"]]
|
|
3157
|
+
},
|
|
3158
|
+
{
|
|
3159
|
+
name: "select",
|
|
3160
|
+
signatures: [["properties","?options"]],
|
|
3161
|
+
receivers: ["ContactsManager"]
|
|
3162
|
+
},
|
|
3163
|
+
{
|
|
3164
|
+
name: "setRangeText",
|
|
3165
|
+
signatures: [["replacement","?start","?end","?selectionMode"]]
|
|
3166
|
+
},
|
|
3167
|
+
{
|
|
3168
|
+
name: "setSelectionRange",
|
|
3169
|
+
signatures: [["start","end","?direction"]]
|
|
3170
|
+
},
|
|
3171
|
+
{
|
|
3172
|
+
name: "stepDown",
|
|
3173
|
+
signatures: [["?n"]]
|
|
3174
|
+
},
|
|
3175
|
+
{
|
|
3176
|
+
name: "stepUp",
|
|
3177
|
+
signatures: [["?n"]]
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
name: "addTextTrack",
|
|
3181
|
+
signatures: [["kind","?label","?language"]]
|
|
3182
|
+
},
|
|
3183
|
+
{
|
|
3184
|
+
name: "canPlayType",
|
|
3185
|
+
signatures: [["type"]]
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
name: "fastSeek",
|
|
3189
|
+
signatures: [["time"]]
|
|
3190
|
+
},
|
|
3191
|
+
{
|
|
3192
|
+
name: "setMediaKeys",
|
|
3193
|
+
signatures: [["mediaKeys"]]
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
name: "setSinkId",
|
|
3197
|
+
signatures: [["sinkId"]]
|
|
3198
|
+
},
|
|
3199
|
+
{
|
|
3200
|
+
name: "focus",
|
|
3201
|
+
signatures: [["?options"]],
|
|
3202
|
+
receivers: ["HTMLOrSVGElement","HTMLElement","MathMLElement","SVGElement"]
|
|
3203
|
+
},
|
|
3204
|
+
{
|
|
3205
|
+
name: "assign",
|
|
3206
|
+
signatures: [["...nodes"]],
|
|
3207
|
+
receivers: ["HTMLSlotElement"]
|
|
3208
|
+
},
|
|
3209
|
+
{
|
|
3210
|
+
name: "assign",
|
|
3211
|
+
signatures: [["url"]],
|
|
3212
|
+
receivers: ["Location"]
|
|
3213
|
+
},
|
|
3214
|
+
{
|
|
3215
|
+
name: "assign",
|
|
3216
|
+
signatures: [["target","source"],["target","...sources"],["target","source1","source2","?source3"]],
|
|
3217
|
+
receivers: ["ObjectConstructor"]
|
|
3218
|
+
},
|
|
3219
|
+
{
|
|
3220
|
+
name: "assignedElements",
|
|
3221
|
+
signatures: [["?options"]]
|
|
3222
|
+
},
|
|
3223
|
+
{
|
|
3224
|
+
name: "assignedNodes",
|
|
3225
|
+
signatures: [["?options"]]
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
name: "deleteRow",
|
|
3229
|
+
signatures: [["index"]]
|
|
3230
|
+
},
|
|
3231
|
+
{
|
|
3232
|
+
name: "insertRow",
|
|
3233
|
+
signatures: [["?index"]]
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
name: "deleteCell",
|
|
3237
|
+
signatures: [["index"]]
|
|
3238
|
+
},
|
|
3239
|
+
{
|
|
3240
|
+
name: "insertCell",
|
|
3241
|
+
signatures: [["?index"]]
|
|
3242
|
+
},
|
|
3243
|
+
{
|
|
3244
|
+
name: "cancelVideoFrameCallback",
|
|
3245
|
+
signatures: [["handle"]]
|
|
3246
|
+
},
|
|
3247
|
+
{
|
|
3248
|
+
name: "requestVideoFrameCallback",
|
|
3249
|
+
signatures: [["callback"]]
|
|
3250
|
+
},
|
|
3251
|
+
{
|
|
3252
|
+
name: "back",
|
|
3253
|
+
signatures: [["?options"]],
|
|
3254
|
+
receivers: ["Navigation"]
|
|
3255
|
+
},
|
|
3256
|
+
{
|
|
3257
|
+
name: "forward",
|
|
3258
|
+
signatures: [["?options"]],
|
|
3259
|
+
receivers: ["Navigation"]
|
|
3260
|
+
},
|
|
3261
|
+
{
|
|
3262
|
+
name: "go",
|
|
3263
|
+
signatures: [["?delta"]]
|
|
3264
|
+
},
|
|
3265
|
+
{
|
|
3266
|
+
name: "pushState",
|
|
3267
|
+
signatures: [["data","unused","?url"],["data","title","?url"]]
|
|
3268
|
+
},
|
|
3269
|
+
{
|
|
3270
|
+
name: "replaceState",
|
|
3271
|
+
signatures: [["data","unused","?url"],["data","title","?url"]]
|
|
3033
3272
|
},
|
|
3034
3273
|
{
|
|
3035
3274
|
name: "advance",
|
|
@@ -3085,7 +3324,7 @@ export const NativeFunctions = [
|
|
|
3085
3324
|
},
|
|
3086
3325
|
{
|
|
3087
3326
|
name: "getAllKeys",
|
|
3088
|
-
signatures: [["?
|
|
3327
|
+
signatures: [["?queryOrOptions","?count"],["?query_or_options","?count"]]
|
|
3089
3328
|
},
|
|
3090
3329
|
{
|
|
3091
3330
|
name: "getKey",
|
|
@@ -3112,13 +3351,13 @@ export const NativeFunctions = [
|
|
|
3112
3351
|
},
|
|
3113
3352
|
{
|
|
3114
3353
|
name: "includes",
|
|
3115
|
-
signatures: [["
|
|
3116
|
-
receivers: ["
|
|
3354
|
+
signatures: [["searchString","?position"]],
|
|
3355
|
+
receivers: ["String"]
|
|
3117
3356
|
},
|
|
3118
3357
|
{
|
|
3119
3358
|
name: "includes",
|
|
3120
|
-
signatures: [["
|
|
3121
|
-
receivers: ["
|
|
3359
|
+
signatures: [["searchElement","?fromIndex"]],
|
|
3360
|
+
receivers: ["Float16Array","Array","ReadonlyArray","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Uint16Array","Int32Array","Uint32Array","Float32Array","Float64Array","BigInt64Array","BigUint64Array"]
|
|
3122
3361
|
},
|
|
3123
3362
|
{
|
|
3124
3363
|
name: "createIndex",
|
|
@@ -3388,6 +3627,47 @@ export const NativeFunctions = [
|
|
|
3388
3627
|
name: "setNamedItemNS",
|
|
3389
3628
|
signatures: [["attr"]]
|
|
3390
3629
|
},
|
|
3630
|
+
{
|
|
3631
|
+
name: "intercept",
|
|
3632
|
+
signatures: [["?options"]]
|
|
3633
|
+
},
|
|
3634
|
+
{
|
|
3635
|
+
name: "entries",
|
|
3636
|
+
signatures: [["o"]],
|
|
3637
|
+
receivers: ["ObjectConstructor"]
|
|
3638
|
+
},
|
|
3639
|
+
{
|
|
3640
|
+
name: "navigate",
|
|
3641
|
+
signatures: [["url","?options"]],
|
|
3642
|
+
receivers: ["Navigation"]
|
|
3643
|
+
},
|
|
3644
|
+
{
|
|
3645
|
+
name: "navigate",
|
|
3646
|
+
signatures: [["url"]],
|
|
3647
|
+
receivers: ["WindowClient"]
|
|
3648
|
+
},
|
|
3649
|
+
{
|
|
3650
|
+
name: "traverseTo",
|
|
3651
|
+
signatures: [["key","?options"]]
|
|
3652
|
+
},
|
|
3653
|
+
{
|
|
3654
|
+
name: "updateCurrentEntry",
|
|
3655
|
+
signatures: [["options"]]
|
|
3656
|
+
},
|
|
3657
|
+
{
|
|
3658
|
+
name: "addHandler",
|
|
3659
|
+
signatures: [["handler"]]
|
|
3660
|
+
},
|
|
3661
|
+
{
|
|
3662
|
+
name: "redirect",
|
|
3663
|
+
signatures: [["url","?options"]],
|
|
3664
|
+
receivers: ["NavigationPrecommitController"]
|
|
3665
|
+
},
|
|
3666
|
+
{
|
|
3667
|
+
name: "redirect",
|
|
3668
|
+
signatures: [["url","?status"]],
|
|
3669
|
+
receivers: ["Response"]
|
|
3670
|
+
},
|
|
3391
3671
|
{
|
|
3392
3672
|
name: "disable",
|
|
3393
3673
|
signatures: [["cap"]],
|
|
@@ -3561,6 +3841,10 @@ export const NativeFunctions = [
|
|
|
3561
3841
|
name: "setPeriodicWave",
|
|
3562
3842
|
signatures: [["periodicWave"]]
|
|
3563
3843
|
},
|
|
3844
|
+
{
|
|
3845
|
+
name: "moveBefore",
|
|
3846
|
+
signatures: [["node","child"]]
|
|
3847
|
+
},
|
|
3564
3848
|
{
|
|
3565
3849
|
name: "prepend",
|
|
3566
3850
|
signatures: [["...nodes"]]
|
|
@@ -3881,21 +4165,6 @@ export const NativeFunctions = [
|
|
|
3881
4165
|
signatures: [["dimension1Index","...dimensionNIndexes"]],
|
|
3882
4166
|
receivers: ["VBArray"]
|
|
3883
4167
|
},
|
|
3884
|
-
{
|
|
3885
|
-
name: "initialize",
|
|
3886
|
-
signatures: [["newItem"]],
|
|
3887
|
-
receivers: ["SVGLengthList","SVGNumberList","SVGPointList","SVGStringList","SVGTransformList"]
|
|
3888
|
-
},
|
|
3889
|
-
{
|
|
3890
|
-
name: "initialize",
|
|
3891
|
-
signatures: [["length"]],
|
|
3892
|
-
receivers: ["CrashReportContext"]
|
|
3893
|
-
},
|
|
3894
|
-
{
|
|
3895
|
-
name: "initialize",
|
|
3896
|
-
signatures: [["root"]],
|
|
3897
|
-
receivers: ["CustomElementRegistry"]
|
|
3898
|
-
},
|
|
3899
4168
|
{
|
|
3900
4169
|
name: "insertItemBefore",
|
|
3901
4170
|
signatures: [["newItem","index"]],
|
|
@@ -4008,6 +4277,44 @@ export const NativeFunctions = [
|
|
|
4008
4277
|
name: "setTranslate",
|
|
4009
4278
|
signatures: [["tx","ty"]]
|
|
4010
4279
|
},
|
|
4280
|
+
{
|
|
4281
|
+
name: "allowAttribute",
|
|
4282
|
+
signatures: [["attribute"]]
|
|
4283
|
+
},
|
|
4284
|
+
{
|
|
4285
|
+
name: "allowElement",
|
|
4286
|
+
signatures: [["element"]]
|
|
4287
|
+
},
|
|
4288
|
+
{
|
|
4289
|
+
name: "removeElement",
|
|
4290
|
+
signatures: [["element"]]
|
|
4291
|
+
},
|
|
4292
|
+
{
|
|
4293
|
+
name: "replaceElementWithChildren",
|
|
4294
|
+
signatures: [["element"]]
|
|
4295
|
+
},
|
|
4296
|
+
{
|
|
4297
|
+
name: "setComments",
|
|
4298
|
+
signatures: [["allow"]]
|
|
4299
|
+
},
|
|
4300
|
+
{
|
|
4301
|
+
name: "setDataAttributes",
|
|
4302
|
+
signatures: [["allow"]]
|
|
4303
|
+
},
|
|
4304
|
+
{
|
|
4305
|
+
name: "postTask",
|
|
4306
|
+
signatures: [["callback","?options"]]
|
|
4307
|
+
},
|
|
4308
|
+
{
|
|
4309
|
+
name: "lock",
|
|
4310
|
+
signatures: [["orientation"]],
|
|
4311
|
+
receivers: ["ScreenOrientation"]
|
|
4312
|
+
},
|
|
4313
|
+
{
|
|
4314
|
+
name: "lock",
|
|
4315
|
+
signatures: [["?keyCodes"]],
|
|
4316
|
+
receivers: ["Keyboard"]
|
|
4317
|
+
},
|
|
4011
4318
|
{
|
|
4012
4319
|
name: "addRange",
|
|
4013
4320
|
signatures: [["range"]]
|
|
@@ -4120,10 +4427,6 @@ export const NativeFunctions = [
|
|
|
4120
4427
|
name: "initStorageEvent",
|
|
4121
4428
|
signatures: [["type","?bubbles","?cancelable","?key","?oldValue","?newValue","?url","?storageArea"]]
|
|
4122
4429
|
},
|
|
4123
|
-
{
|
|
4124
|
-
name: "matchMedium",
|
|
4125
|
-
signatures: [["?mediaquery"]]
|
|
4126
|
-
},
|
|
4127
4430
|
{
|
|
4128
4431
|
name: "decrypt",
|
|
4129
4432
|
signatures: [["algorithm","key","data"]]
|
|
@@ -4183,6 +4486,10 @@ export const NativeFunctions = [
|
|
|
4183
4486
|
name: "wrapKey",
|
|
4184
4487
|
signatures: [["format","key","wrappingKey","wrapAlgorithm"]]
|
|
4185
4488
|
},
|
|
4489
|
+
{
|
|
4490
|
+
name: "setPriority",
|
|
4491
|
+
signatures: [["priority"]]
|
|
4492
|
+
},
|
|
4186
4493
|
{
|
|
4187
4494
|
name: "splitText",
|
|
4188
4495
|
signatures: [["offset"]]
|
|
@@ -4207,11 +4514,6 @@ export const NativeFunctions = [
|
|
|
4207
4514
|
name: "getCueById",
|
|
4208
4515
|
signatures: [["id"]]
|
|
4209
4516
|
},
|
|
4210
|
-
{
|
|
4211
|
-
name: "end",
|
|
4212
|
-
signatures: [["index"]],
|
|
4213
|
-
receivers: ["TimeRanges"]
|
|
4214
|
-
},
|
|
4215
4517
|
{
|
|
4216
4518
|
name: "initUIEvent",
|
|
4217
4519
|
signatures: [["typeArg","?bubblesArg","?cancelableArg","?viewArg","?detailArg"]]
|
|
@@ -4308,11 +4610,6 @@ export const NativeFunctions = [
|
|
|
4308
4610
|
name: "copyTexSubImage3D",
|
|
4309
4611
|
signatures: [["target","level","xoffset","yoffset","zoffset","x","y","width","height"]]
|
|
4310
4612
|
},
|
|
4311
|
-
{
|
|
4312
|
-
name: "createSampler",
|
|
4313
|
-
signatures: [["?descriptor"]],
|
|
4314
|
-
receivers: ["GPUDevice"]
|
|
4315
|
-
},
|
|
4316
4613
|
{
|
|
4317
4614
|
name: "deleteQuery",
|
|
4318
4615
|
signatures: [["query"]]
|
|
@@ -4948,11 +5245,6 @@ export const NativeFunctions = [
|
|
|
4948
5245
|
name: "createShader",
|
|
4949
5246
|
signatures: [["type"]]
|
|
4950
5247
|
},
|
|
4951
|
-
{
|
|
4952
|
-
name: "createTexture",
|
|
4953
|
-
signatures: [["descriptor"]],
|
|
4954
|
-
receivers: ["GPUDevice"]
|
|
4955
|
-
},
|
|
4956
5248
|
{
|
|
4957
5249
|
name: "cullFace",
|
|
4958
5250
|
signatures: [["mode"]]
|
|
@@ -5051,7 +5343,7 @@ export const NativeFunctions = [
|
|
|
5051
5343
|
},
|
|
5052
5344
|
{
|
|
5053
5345
|
name: "getExtension",
|
|
5054
|
-
signatures: [["
|
|
5346
|
+
signatures: [["name"],["extensionName"]]
|
|
5055
5347
|
},
|
|
5056
5348
|
{
|
|
5057
5349
|
name: "getFramebufferAttachmentParameter",
|
|
@@ -5542,6 +5834,16 @@ export const NativeFunctions = [
|
|
|
5542
5834
|
name: "warn",
|
|
5543
5835
|
signatures: [["...data"]]
|
|
5544
5836
|
},
|
|
5837
|
+
{
|
|
5838
|
+
name: "values",
|
|
5839
|
+
signatures: [["?options"]],
|
|
5840
|
+
receivers: ["ReadableStream"]
|
|
5841
|
+
},
|
|
5842
|
+
{
|
|
5843
|
+
name: "values",
|
|
5844
|
+
signatures: [["o"]],
|
|
5845
|
+
receivers: ["ObjectConstructor"]
|
|
5846
|
+
},
|
|
5545
5847
|
{
|
|
5546
5848
|
name: "importScripts",
|
|
5547
5849
|
signatures: [["...urls"]]
|
|
@@ -5563,21 +5865,157 @@ export const NativeFunctions = [
|
|
|
5563
5865
|
signatures: [["characters"]]
|
|
5564
5866
|
},
|
|
5565
5867
|
{
|
|
5566
|
-
name: "Skip",
|
|
5567
|
-
signatures: [["characters"]]
|
|
5868
|
+
name: "Skip",
|
|
5869
|
+
signatures: [["characters"]]
|
|
5870
|
+
},
|
|
5871
|
+
{
|
|
5872
|
+
name: "lbound",
|
|
5873
|
+
signatures: [["?dimension"]]
|
|
5874
|
+
},
|
|
5875
|
+
{
|
|
5876
|
+
name: "ubound",
|
|
5877
|
+
signatures: [["?dimension"]]
|
|
5878
|
+
},
|
|
5879
|
+
{
|
|
5880
|
+
name: "toArray",
|
|
5881
|
+
signatures: [["?options"]],
|
|
5882
|
+
receivers: ["Observable"]
|
|
5883
|
+
},
|
|
5884
|
+
{
|
|
5885
|
+
name: "clz32",
|
|
5886
|
+
signatures: [["x"]]
|
|
5887
|
+
},
|
|
5888
|
+
{
|
|
5889
|
+
name: "imul",
|
|
5890
|
+
signatures: [["x","y"]]
|
|
5891
|
+
},
|
|
5892
|
+
{
|
|
5893
|
+
name: "log10",
|
|
5894
|
+
signatures: [["x"]]
|
|
5895
|
+
},
|
|
5896
|
+
{
|
|
5897
|
+
name: "log2",
|
|
5898
|
+
signatures: [["x"]]
|
|
5899
|
+
},
|
|
5900
|
+
{
|
|
5901
|
+
name: "log1p",
|
|
5902
|
+
signatures: [["x"]]
|
|
5903
|
+
},
|
|
5904
|
+
{
|
|
5905
|
+
name: "expm1",
|
|
5906
|
+
signatures: [["x"]]
|
|
5907
|
+
},
|
|
5908
|
+
{
|
|
5909
|
+
name: "cosh",
|
|
5910
|
+
signatures: [["x"]]
|
|
5911
|
+
},
|
|
5912
|
+
{
|
|
5913
|
+
name: "sinh",
|
|
5914
|
+
signatures: [["x"]]
|
|
5915
|
+
},
|
|
5916
|
+
{
|
|
5917
|
+
name: "tanh",
|
|
5918
|
+
signatures: [["x"]],
|
|
5919
|
+
receivers: ["Math"]
|
|
5920
|
+
},
|
|
5921
|
+
{
|
|
5922
|
+
name: "tanh",
|
|
5923
|
+
signatures: [["input","?options"]],
|
|
5924
|
+
receivers: ["MLGraphBuilder"]
|
|
5925
|
+
},
|
|
5926
|
+
{
|
|
5927
|
+
name: "acosh",
|
|
5928
|
+
signatures: [["x"]]
|
|
5929
|
+
},
|
|
5930
|
+
{
|
|
5931
|
+
name: "asinh",
|
|
5932
|
+
signatures: [["x"]]
|
|
5933
|
+
},
|
|
5934
|
+
{
|
|
5935
|
+
name: "atanh",
|
|
5936
|
+
signatures: [["x"]]
|
|
5937
|
+
},
|
|
5938
|
+
{
|
|
5939
|
+
name: "hypot",
|
|
5940
|
+
signatures: [["...values"]]
|
|
5941
|
+
},
|
|
5942
|
+
{
|
|
5943
|
+
name: "trunc",
|
|
5944
|
+
signatures: [["x"]]
|
|
5945
|
+
},
|
|
5946
|
+
{
|
|
5947
|
+
name: "fround",
|
|
5948
|
+
signatures: [["x"]]
|
|
5949
|
+
},
|
|
5950
|
+
{
|
|
5951
|
+
name: "cbrt",
|
|
5952
|
+
signatures: [["x"]]
|
|
5953
|
+
},
|
|
5954
|
+
{
|
|
5955
|
+
name: "isInteger",
|
|
5956
|
+
signatures: [["number"]]
|
|
5957
|
+
},
|
|
5958
|
+
{
|
|
5959
|
+
name: "isSafeInteger",
|
|
5960
|
+
signatures: [["number"]]
|
|
5961
|
+
},
|
|
5962
|
+
{
|
|
5963
|
+
name: "getOwnPropertySymbols",
|
|
5964
|
+
signatures: [["o"]]
|
|
5965
|
+
},
|
|
5966
|
+
{
|
|
5967
|
+
name: "is",
|
|
5968
|
+
signatures: [["value1","value2"]]
|
|
5969
|
+
},
|
|
5970
|
+
{
|
|
5971
|
+
name: "setPrototypeOf",
|
|
5972
|
+
signatures: [["o","proto"]],
|
|
5973
|
+
receivers: ["ObjectConstructor"]
|
|
5974
|
+
},
|
|
5975
|
+
{
|
|
5976
|
+
name: "setPrototypeOf",
|
|
5977
|
+
signatures: [["target","v"]],
|
|
5978
|
+
receivers: ["ProxyHandler"]
|
|
5979
|
+
},
|
|
5980
|
+
{
|
|
5981
|
+
name: "codePointAt",
|
|
5982
|
+
signatures: [["pos"]]
|
|
5983
|
+
},
|
|
5984
|
+
{
|
|
5985
|
+
name: "endsWith",
|
|
5986
|
+
signatures: [["searchString","?endPosition"]]
|
|
5987
|
+
},
|
|
5988
|
+
{
|
|
5989
|
+
name: "repeat",
|
|
5990
|
+
signatures: [["count"]]
|
|
5991
|
+
},
|
|
5992
|
+
{
|
|
5993
|
+
name: "startsWith",
|
|
5994
|
+
signatures: [["searchString","?position"]]
|
|
5995
|
+
},
|
|
5996
|
+
{
|
|
5997
|
+
name: "anchor",
|
|
5998
|
+
signatures: [["name"]]
|
|
5999
|
+
},
|
|
6000
|
+
{
|
|
6001
|
+
name: "fontcolor",
|
|
6002
|
+
signatures: [["color"]]
|
|
6003
|
+
},
|
|
6004
|
+
{
|
|
6005
|
+
name: "fontsize",
|
|
6006
|
+
signatures: [["size"]]
|
|
5568
6007
|
},
|
|
5569
6008
|
{
|
|
5570
|
-
name: "
|
|
5571
|
-
signatures: [["
|
|
6009
|
+
name: "link",
|
|
6010
|
+
signatures: [["url"]]
|
|
5572
6011
|
},
|
|
5573
6012
|
{
|
|
5574
|
-
name: "
|
|
5575
|
-
signatures: [["
|
|
6013
|
+
name: "fromCodePoint",
|
|
6014
|
+
signatures: [["...codePoints"]]
|
|
5576
6015
|
},
|
|
5577
6016
|
{
|
|
5578
|
-
name: "
|
|
5579
|
-
signatures: [["
|
|
5580
|
-
receivers: ["Observable"]
|
|
6017
|
+
name: "raw",
|
|
6018
|
+
signatures: [["template","...substitutions"]]
|
|
5581
6019
|
},
|
|
5582
6020
|
{
|
|
5583
6021
|
name: "next",
|
|
@@ -5609,21 +6047,6 @@ export const NativeFunctions = [
|
|
|
5609
6047
|
signatures: [["?e"]],
|
|
5610
6048
|
receivers: ["Iterator","AsyncIterator"]
|
|
5611
6049
|
},
|
|
5612
|
-
{
|
|
5613
|
-
name: "entries",
|
|
5614
|
-
signatures: [["o"]],
|
|
5615
|
-
receivers: ["ObjectConstructor"]
|
|
5616
|
-
},
|
|
5617
|
-
{
|
|
5618
|
-
name: "values",
|
|
5619
|
-
signatures: [["o"]],
|
|
5620
|
-
receivers: ["ObjectConstructor"]
|
|
5621
|
-
},
|
|
5622
|
-
{
|
|
5623
|
-
name: "values",
|
|
5624
|
-
signatures: [["?options"]],
|
|
5625
|
-
receivers: ["ReadableStream"]
|
|
5626
|
-
},
|
|
5627
6050
|
{
|
|
5628
6051
|
name: "all",
|
|
5629
6052
|
signatures: [["values"]]
|
|
@@ -5648,16 +6071,6 @@ export const NativeFunctions = [
|
|
|
5648
6071
|
name: "ownKeys",
|
|
5649
6072
|
signatures: [["target"]]
|
|
5650
6073
|
},
|
|
5651
|
-
{
|
|
5652
|
-
name: "setPrototypeOf",
|
|
5653
|
-
signatures: [["target","v"]],
|
|
5654
|
-
receivers: ["ProxyHandler"]
|
|
5655
|
-
},
|
|
5656
|
-
{
|
|
5657
|
-
name: "setPrototypeOf",
|
|
5658
|
-
signatures: [["o","proto"]],
|
|
5659
|
-
receivers: ["ObjectConstructor"]
|
|
5660
|
-
},
|
|
5661
6074
|
{
|
|
5662
6075
|
name: "revocable",
|
|
5663
6076
|
signatures: [["target","handler"]]
|
|
@@ -5771,39 +6184,6 @@ export const NativeFunctions = [
|
|
|
5771
6184
|
name: "grow",
|
|
5772
6185
|
signatures: [["?newByteLength"]]
|
|
5773
6186
|
},
|
|
5774
|
-
{
|
|
5775
|
-
name: "use",
|
|
5776
|
-
signatures: [["value"]]
|
|
5777
|
-
},
|
|
5778
|
-
{
|
|
5779
|
-
name: "adopt",
|
|
5780
|
-
signatures: [["value","onDispose"]],
|
|
5781
|
-
receivers: ["DisposableStack"]
|
|
5782
|
-
},
|
|
5783
|
-
{
|
|
5784
|
-
name: "adopt",
|
|
5785
|
-
signatures: [["value","onDisposeAsync"]],
|
|
5786
|
-
receivers: ["AsyncDisposableStack"]
|
|
5787
|
-
},
|
|
5788
|
-
{
|
|
5789
|
-
name: "defer",
|
|
5790
|
-
signatures: [["onDispose"]],
|
|
5791
|
-
receivers: ["DisposableStack"]
|
|
5792
|
-
},
|
|
5793
|
-
{
|
|
5794
|
-
name: "defer",
|
|
5795
|
-
signatures: [["onDisposeAsync"]],
|
|
5796
|
-
receivers: ["AsyncDisposableStack"]
|
|
5797
|
-
},
|
|
5798
|
-
{
|
|
5799
|
-
name: "move",
|
|
5800
|
-
signatures: [["new_entry_name"],["destination_directory","?new_entry_name"]],
|
|
5801
|
-
receivers: ["FileSystemFileHandle","FileSystemHandle"]
|
|
5802
|
-
},
|
|
5803
|
-
{
|
|
5804
|
-
name: "try",
|
|
5805
|
-
signatures: [["callbackFn","...args"]]
|
|
5806
|
-
},
|
|
5807
6187
|
{
|
|
5808
6188
|
name: "findLast",
|
|
5809
6189
|
signatures: [["predicate","?thisArg"]]
|
|
@@ -5833,142 +6213,69 @@ export const NativeFunctions = [
|
|
|
5833
6213
|
signatures: [["byteOffset","value","?littleEndian"]]
|
|
5834
6214
|
},
|
|
5835
6215
|
{
|
|
5836
|
-
name: "
|
|
5837
|
-
signatures: [["
|
|
5838
|
-
},
|
|
5839
|
-
{
|
|
5840
|
-
name: "addInitializer",
|
|
5841
|
-
signatures: [["initializer"]]
|
|
6216
|
+
name: "try",
|
|
6217
|
+
signatures: [["callbackFn","...args"]]
|
|
5842
6218
|
},
|
|
5843
6219
|
{
|
|
5844
|
-
name: "
|
|
6220
|
+
name: "use",
|
|
5845
6221
|
signatures: [["value"]]
|
|
5846
6222
|
},
|
|
5847
6223
|
{
|
|
5848
|
-
name: "
|
|
5849
|
-
signatures: [["
|
|
5850
|
-
|
|
5851
|
-
{
|
|
5852
|
-
name: "imul",
|
|
5853
|
-
signatures: [["x","y"]]
|
|
5854
|
-
},
|
|
5855
|
-
{
|
|
5856
|
-
name: "log10",
|
|
5857
|
-
signatures: [["x"]]
|
|
5858
|
-
},
|
|
5859
|
-
{
|
|
5860
|
-
name: "log2",
|
|
5861
|
-
signatures: [["x"]]
|
|
5862
|
-
},
|
|
5863
|
-
{
|
|
5864
|
-
name: "log1p",
|
|
5865
|
-
signatures: [["x"]]
|
|
5866
|
-
},
|
|
5867
|
-
{
|
|
5868
|
-
name: "expm1",
|
|
5869
|
-
signatures: [["x"]]
|
|
5870
|
-
},
|
|
5871
|
-
{
|
|
5872
|
-
name: "cosh",
|
|
5873
|
-
signatures: [["x"]]
|
|
5874
|
-
},
|
|
5875
|
-
{
|
|
5876
|
-
name: "sinh",
|
|
5877
|
-
signatures: [["x"]]
|
|
5878
|
-
},
|
|
5879
|
-
{
|
|
5880
|
-
name: "tanh",
|
|
5881
|
-
signatures: [["x"]],
|
|
5882
|
-
receivers: ["Math"]
|
|
5883
|
-
},
|
|
5884
|
-
{
|
|
5885
|
-
name: "tanh",
|
|
5886
|
-
signatures: [["input","?options"]],
|
|
5887
|
-
receivers: ["MLGraphBuilder"]
|
|
5888
|
-
},
|
|
5889
|
-
{
|
|
5890
|
-
name: "acosh",
|
|
5891
|
-
signatures: [["x"]]
|
|
5892
|
-
},
|
|
5893
|
-
{
|
|
5894
|
-
name: "asinh",
|
|
5895
|
-
signatures: [["x"]]
|
|
5896
|
-
},
|
|
5897
|
-
{
|
|
5898
|
-
name: "atanh",
|
|
5899
|
-
signatures: [["x"]]
|
|
5900
|
-
},
|
|
5901
|
-
{
|
|
5902
|
-
name: "hypot",
|
|
5903
|
-
signatures: [["...values"]]
|
|
5904
|
-
},
|
|
5905
|
-
{
|
|
5906
|
-
name: "trunc",
|
|
5907
|
-
signatures: [["x"]]
|
|
5908
|
-
},
|
|
5909
|
-
{
|
|
5910
|
-
name: "fround",
|
|
5911
|
-
signatures: [["x"]]
|
|
5912
|
-
},
|
|
5913
|
-
{
|
|
5914
|
-
name: "cbrt",
|
|
5915
|
-
signatures: [["x"]]
|
|
5916
|
-
},
|
|
5917
|
-
{
|
|
5918
|
-
name: "isInteger",
|
|
5919
|
-
signatures: [["number"]]
|
|
5920
|
-
},
|
|
5921
|
-
{
|
|
5922
|
-
name: "isSafeInteger",
|
|
5923
|
-
signatures: [["number"]]
|
|
6224
|
+
name: "adopt",
|
|
6225
|
+
signatures: [["value","onDispose"]],
|
|
6226
|
+
receivers: ["DisposableStack"]
|
|
5924
6227
|
},
|
|
5925
6228
|
{
|
|
5926
|
-
name: "
|
|
5927
|
-
signatures: [["
|
|
6229
|
+
name: "adopt",
|
|
6230
|
+
signatures: [["value","onDisposeAsync"]],
|
|
6231
|
+
receivers: ["AsyncDisposableStack"]
|
|
5928
6232
|
},
|
|
5929
6233
|
{
|
|
5930
|
-
name: "
|
|
5931
|
-
signatures: [["
|
|
6234
|
+
name: "defer",
|
|
6235
|
+
signatures: [["onDispose"]],
|
|
6236
|
+
receivers: ["DisposableStack"]
|
|
5932
6237
|
},
|
|
5933
6238
|
{
|
|
5934
|
-
name: "
|
|
5935
|
-
signatures: [["
|
|
6239
|
+
name: "defer",
|
|
6240
|
+
signatures: [["onDisposeAsync"]],
|
|
6241
|
+
receivers: ["AsyncDisposableStack"]
|
|
5936
6242
|
},
|
|
5937
6243
|
{
|
|
5938
|
-
name: "
|
|
5939
|
-
signatures: [["
|
|
6244
|
+
name: "move",
|
|
6245
|
+
signatures: [["new_entry_name"],["destination_directory","?new_entry_name"]],
|
|
6246
|
+
receivers: ["FileSystemFileHandle","FileSystemHandle"]
|
|
5940
6247
|
},
|
|
5941
6248
|
{
|
|
5942
|
-
name: "
|
|
5943
|
-
signatures: [["
|
|
6249
|
+
name: "isError",
|
|
6250
|
+
signatures: [["error"]]
|
|
5944
6251
|
},
|
|
5945
6252
|
{
|
|
5946
|
-
name: "
|
|
5947
|
-
signatures: [["
|
|
6253
|
+
name: "toBase64",
|
|
6254
|
+
signatures: [["?options"]]
|
|
5948
6255
|
},
|
|
5949
6256
|
{
|
|
5950
|
-
name: "
|
|
5951
|
-
signatures: [["
|
|
6257
|
+
name: "setFromBase64",
|
|
6258
|
+
signatures: [["string","?options"]]
|
|
5952
6259
|
},
|
|
5953
6260
|
{
|
|
5954
|
-
name: "
|
|
5955
|
-
signatures: [["
|
|
6261
|
+
name: "setFromHex",
|
|
6262
|
+
signatures: [["string"]]
|
|
5956
6263
|
},
|
|
5957
6264
|
{
|
|
5958
|
-
name: "
|
|
5959
|
-
signatures: [["
|
|
6265
|
+
name: "fromBase64",
|
|
6266
|
+
signatures: [["string","?options"]]
|
|
5960
6267
|
},
|
|
5961
6268
|
{
|
|
5962
|
-
name: "
|
|
5963
|
-
signatures: [["
|
|
6269
|
+
name: "fromHex",
|
|
6270
|
+
signatures: [["string"]]
|
|
5964
6271
|
},
|
|
5965
6272
|
{
|
|
5966
|
-
name: "
|
|
5967
|
-
signatures: [["
|
|
6273
|
+
name: "addInitializer",
|
|
6274
|
+
signatures: [["initializer"]]
|
|
5968
6275
|
},
|
|
5969
6276
|
{
|
|
5970
|
-
name: "
|
|
5971
|
-
signatures: [["
|
|
6277
|
+
name: "init",
|
|
6278
|
+
signatures: [["value"]]
|
|
5972
6279
|
},
|
|
5973
6280
|
{
|
|
5974
6281
|
name: "flatMap",
|
|
@@ -6024,10 +6331,6 @@ export const NativeFunctions = [
|
|
|
6024
6331
|
name: "transferToFixedLength",
|
|
6025
6332
|
signatures: [["?newByteLength"]]
|
|
6026
6333
|
},
|
|
6027
|
-
{
|
|
6028
|
-
name: "fromAsync",
|
|
6029
|
-
signatures: [["iterableOrArrayLike","?mapFn","?thisArg"]]
|
|
6030
|
-
},
|
|
6031
6334
|
{
|
|
6032
6335
|
name: "union",
|
|
6033
6336
|
signatures: [["other"]]
|
|
@@ -6056,6 +6359,18 @@ export const NativeFunctions = [
|
|
|
6056
6359
|
name: "isDisjointFrom",
|
|
6057
6360
|
signatures: [["other"]]
|
|
6058
6361
|
},
|
|
6362
|
+
{
|
|
6363
|
+
name: "fromAsync",
|
|
6364
|
+
signatures: [["iterableOrArrayLike","?mapFn","?thisArg"]]
|
|
6365
|
+
},
|
|
6366
|
+
{
|
|
6367
|
+
name: "getOrInsert",
|
|
6368
|
+
signatures: [["key","defaultValue"]]
|
|
6369
|
+
},
|
|
6370
|
+
{
|
|
6371
|
+
name: "getOrInsertComputed",
|
|
6372
|
+
signatures: [["key","callback"]]
|
|
6373
|
+
},
|
|
6059
6374
|
{
|
|
6060
6375
|
name: "openWindow",
|
|
6061
6376
|
signatures: [["url"]]
|
|
@@ -6103,16 +6418,6 @@ export const NativeFunctions = [
|
|
|
6103
6418
|
name: "generateKeyFrame",
|
|
6104
6419
|
signatures: [["?rid"]]
|
|
6105
6420
|
},
|
|
6106
|
-
{
|
|
6107
|
-
name: "navigate",
|
|
6108
|
-
signatures: [["url"]],
|
|
6109
|
-
receivers: ["WindowClient"]
|
|
6110
|
-
},
|
|
6111
|
-
{
|
|
6112
|
-
name: "navigate",
|
|
6113
|
-
signatures: [["url","?options"]],
|
|
6114
|
-
receivers: ["Navigation"]
|
|
6115
|
-
},
|
|
6116
6421
|
{
|
|
6117
6422
|
name: "addAnimation",
|
|
6118
6423
|
signatures: [["animation","activateBehavior","?deactivateBehavior"]]
|
|
@@ -6574,6 +6879,10 @@ export const NativeFunctions = [
|
|
|
6574
6879
|
name: "registerProperty",
|
|
6575
6880
|
signatures: [["definition"]]
|
|
6576
6881
|
},
|
|
6882
|
+
{
|
|
6883
|
+
name: "matchMedium",
|
|
6884
|
+
signatures: [["?mediaquery"]]
|
|
6885
|
+
},
|
|
6577
6886
|
{
|
|
6578
6887
|
name: "ContentVisibilityAutoStateChangeEvent",
|
|
6579
6888
|
signatures: [["type","?eventInitDict"]]
|
|
@@ -6782,10 +7091,6 @@ export const NativeFunctions = [
|
|
|
6782
7091
|
name: "createValueRange",
|
|
6783
7092
|
signatures: [["start","end"]]
|
|
6784
7093
|
},
|
|
6785
|
-
{
|
|
6786
|
-
name: "moveBefore",
|
|
6787
|
-
signatures: [["node","child"]]
|
|
6788
|
-
},
|
|
6789
7094
|
{
|
|
6790
7095
|
name: "QuotaExceededError",
|
|
6791
7096
|
signatures: [["?message","?options"]]
|
|
@@ -6964,16 +7269,6 @@ export const NativeFunctions = [
|
|
|
6964
7269
|
name: "Response",
|
|
6965
7270
|
signatures: [["?body","?init"]]
|
|
6966
7271
|
},
|
|
6967
|
-
{
|
|
6968
|
-
name: "redirect",
|
|
6969
|
-
signatures: [["url","?status"]],
|
|
6970
|
-
receivers: ["Response"]
|
|
6971
|
-
},
|
|
6972
|
-
{
|
|
6973
|
-
name: "redirect",
|
|
6974
|
-
signatures: [["url","?options"]],
|
|
6975
|
-
receivers: ["NavigationPrecommitController"]
|
|
6976
|
-
},
|
|
6977
7272
|
{
|
|
6978
7273
|
name: "Blob",
|
|
6979
7274
|
signatures: [["?blobParts","?options"]]
|
|
@@ -7262,11 +7557,7 @@ export const NativeFunctions = [
|
|
|
7262
7557
|
},
|
|
7263
7558
|
{
|
|
7264
7559
|
name: "NavigateEvent",
|
|
7265
|
-
signatures: [["type","eventInit"]]
|
|
7266
|
-
},
|
|
7267
|
-
{
|
|
7268
|
-
name: "intercept",
|
|
7269
|
-
signatures: [["?options"]]
|
|
7560
|
+
signatures: [["type","eventInit"]]
|
|
7270
7561
|
},
|
|
7271
7562
|
{
|
|
7272
7563
|
name: "deferPageSwap",
|
|
@@ -7280,18 +7571,6 @@ export const NativeFunctions = [
|
|
|
7280
7571
|
name: "addRestoreCallback",
|
|
7281
7572
|
signatures: [["callback"]]
|
|
7282
7573
|
},
|
|
7283
|
-
{
|
|
7284
|
-
name: "addHandler",
|
|
7285
|
-
signatures: [["handler"]]
|
|
7286
|
-
},
|
|
7287
|
-
{
|
|
7288
|
-
name: "updateCurrentEntry",
|
|
7289
|
-
signatures: [["options"]]
|
|
7290
|
-
},
|
|
7291
|
-
{
|
|
7292
|
-
name: "traverseTo",
|
|
7293
|
-
signatures: [["key","?options"]]
|
|
7294
|
-
},
|
|
7295
7574
|
{
|
|
7296
7575
|
name: "OffscreenCanvas",
|
|
7297
7576
|
signatures: [["width","height"]]
|
|
@@ -7360,42 +7639,10 @@ export const NativeFunctions = [
|
|
|
7360
7639
|
name: "Sanitizer",
|
|
7361
7640
|
signatures: [["?configuration"]]
|
|
7362
7641
|
},
|
|
7363
|
-
{
|
|
7364
|
-
name: "allowElement",
|
|
7365
|
-
signatures: [["element"]]
|
|
7366
|
-
},
|
|
7367
|
-
{
|
|
7368
|
-
name: "removeElement",
|
|
7369
|
-
signatures: [["element"]]
|
|
7370
|
-
},
|
|
7371
|
-
{
|
|
7372
|
-
name: "replaceElementWithChildren",
|
|
7373
|
-
signatures: [["element"]]
|
|
7374
|
-
},
|
|
7375
|
-
{
|
|
7376
|
-
name: "allowAttribute",
|
|
7377
|
-
signatures: [["attribute"]]
|
|
7378
|
-
},
|
|
7379
|
-
{
|
|
7380
|
-
name: "setComments",
|
|
7381
|
-
signatures: [["allow"]]
|
|
7382
|
-
},
|
|
7383
|
-
{
|
|
7384
|
-
name: "setDataAttributes",
|
|
7385
|
-
signatures: [["allow"]]
|
|
7386
|
-
},
|
|
7387
|
-
{
|
|
7388
|
-
name: "postTask",
|
|
7389
|
-
signatures: [["callback","?options"]]
|
|
7390
|
-
},
|
|
7391
7642
|
{
|
|
7392
7643
|
name: "TaskController",
|
|
7393
7644
|
signatures: [["?init"]]
|
|
7394
7645
|
},
|
|
7395
|
-
{
|
|
7396
|
-
name: "setPriority",
|
|
7397
|
-
signatures: [["priority"]]
|
|
7398
|
-
},
|
|
7399
7646
|
{
|
|
7400
7647
|
name: "TaskPriorityChangeEvent",
|
|
7401
7648
|
signatures: [["type","eventInitDict"]]
|
|
@@ -7668,21 +7915,6 @@ export const NativeFunctions = [
|
|
|
7668
7915
|
name: "canonicalUUID",
|
|
7669
7916
|
signatures: [["alias"]]
|
|
7670
7917
|
},
|
|
7671
|
-
{
|
|
7672
|
-
name: "requestDevice",
|
|
7673
|
-
signatures: [["?options"]],
|
|
7674
|
-
receivers: ["Bluetooth"]
|
|
7675
|
-
},
|
|
7676
|
-
{
|
|
7677
|
-
name: "requestDevice",
|
|
7678
|
-
signatures: [["options"]],
|
|
7679
|
-
receivers: ["HID","USB"]
|
|
7680
|
-
},
|
|
7681
|
-
{
|
|
7682
|
-
name: "requestDevice",
|
|
7683
|
-
signatures: [["?descriptor"]],
|
|
7684
|
-
receivers: ["GPUAdapter"]
|
|
7685
|
-
},
|
|
7686
7918
|
{
|
|
7687
7919
|
name: "requestLEScan",
|
|
7688
7920
|
signatures: [["?options"]]
|
|
@@ -8029,16 +8261,6 @@ export const NativeFunctions = [
|
|
|
8029
8261
|
name: "IDBVersionChangeEvent",
|
|
8030
8262
|
signatures: [["type","?eventInitDict"]]
|
|
8031
8263
|
},
|
|
8032
|
-
{
|
|
8033
|
-
name: "lock",
|
|
8034
|
-
signatures: [["?keyCodes"]],
|
|
8035
|
-
receivers: ["Keyboard"]
|
|
8036
|
-
},
|
|
8037
|
-
{
|
|
8038
|
-
name: "lock",
|
|
8039
|
-
signatures: [["orientation"]],
|
|
8040
|
-
receivers: ["ScreenOrientation"]
|
|
8041
|
-
},
|
|
8042
8264
|
{
|
|
8043
8265
|
name: "setConsumer",
|
|
8044
8266
|
signatures: [["consumer"]]
|
|
@@ -9109,122 +9331,10 @@ export const NativeFunctions = [
|
|
|
9109
9331
|
name: "mapSync",
|
|
9110
9332
|
signatures: [["mode","?offset","?size"]]
|
|
9111
9333
|
},
|
|
9112
|
-
{
|
|
9113
|
-
name: "mapAsync",
|
|
9114
|
-
signatures: [["mode","?offset","?size"]]
|
|
9115
|
-
},
|
|
9116
|
-
{
|
|
9117
|
-
name: "getMappedRange",
|
|
9118
|
-
signatures: [["?offset","?size"]]
|
|
9119
|
-
},
|
|
9120
|
-
{
|
|
9121
|
-
name: "beginRenderPass",
|
|
9122
|
-
signatures: [["descriptor"]]
|
|
9123
|
-
},
|
|
9124
|
-
{
|
|
9125
|
-
name: "beginComputePass",
|
|
9126
|
-
signatures: [["?descriptor"]]
|
|
9127
|
-
},
|
|
9128
|
-
{
|
|
9129
|
-
name: "copyBufferToBuffer",
|
|
9130
|
-
signatures: [["source","destination","?size"],["source","sourceOffset","destination","destinationOffset","?size"]]
|
|
9131
|
-
},
|
|
9132
|
-
{
|
|
9133
|
-
name: "copyBufferToTexture",
|
|
9134
|
-
signatures: [["source","destination","copySize"]]
|
|
9135
|
-
},
|
|
9136
|
-
{
|
|
9137
|
-
name: "copyTextureToBuffer",
|
|
9138
|
-
signatures: [["source","destination","copySize"]]
|
|
9139
|
-
},
|
|
9140
|
-
{
|
|
9141
|
-
name: "copyTextureToTexture",
|
|
9142
|
-
signatures: [["source","destination","copySize"]]
|
|
9143
|
-
},
|
|
9144
|
-
{
|
|
9145
|
-
name: "pushDebugGroup",
|
|
9146
|
-
signatures: [["groupLabel"]]
|
|
9147
|
-
},
|
|
9148
|
-
{
|
|
9149
|
-
name: "insertDebugMarker",
|
|
9150
|
-
signatures: [["markerLabel"]]
|
|
9151
|
-
},
|
|
9152
|
-
{
|
|
9153
|
-
name: "resolveQuerySet",
|
|
9154
|
-
signatures: [["querySet","firstQuery","queryCount","destination","destinationOffset"]]
|
|
9155
|
-
},
|
|
9156
9334
|
{
|
|
9157
9335
|
name: "writeTimestamp",
|
|
9158
9336
|
signatures: [["querySet","queryIndex"]]
|
|
9159
9337
|
},
|
|
9160
|
-
{
|
|
9161
|
-
name: "clearBuffer",
|
|
9162
|
-
signatures: [["buffer","?offset","?size"]]
|
|
9163
|
-
},
|
|
9164
|
-
{
|
|
9165
|
-
name: "setPipeline",
|
|
9166
|
-
signatures: [["pipeline"]]
|
|
9167
|
-
},
|
|
9168
|
-
{
|
|
9169
|
-
name: "dispatchWorkgroups",
|
|
9170
|
-
signatures: [["workgroupCountX","?workgroupCountY","?workgroupCountZ"]]
|
|
9171
|
-
},
|
|
9172
|
-
{
|
|
9173
|
-
name: "dispatchWorkgroupsIndirect",
|
|
9174
|
-
signatures: [["indirectBuffer","indirectOffset"]]
|
|
9175
|
-
},
|
|
9176
|
-
{
|
|
9177
|
-
name: "importExternalTexture",
|
|
9178
|
-
signatures: [["descriptor"]]
|
|
9179
|
-
},
|
|
9180
|
-
{
|
|
9181
|
-
name: "createBindGroup",
|
|
9182
|
-
signatures: [["descriptor"]]
|
|
9183
|
-
},
|
|
9184
|
-
{
|
|
9185
|
-
name: "createBindGroupLayout",
|
|
9186
|
-
signatures: [["descriptor"]]
|
|
9187
|
-
},
|
|
9188
|
-
{
|
|
9189
|
-
name: "createPipelineLayout",
|
|
9190
|
-
signatures: [["descriptor"]]
|
|
9191
|
-
},
|
|
9192
|
-
{
|
|
9193
|
-
name: "createShaderModule",
|
|
9194
|
-
signatures: [["descriptor"]]
|
|
9195
|
-
},
|
|
9196
|
-
{
|
|
9197
|
-
name: "createRenderPipeline",
|
|
9198
|
-
signatures: [["descriptor"]]
|
|
9199
|
-
},
|
|
9200
|
-
{
|
|
9201
|
-
name: "createComputePipeline",
|
|
9202
|
-
signatures: [["descriptor"]]
|
|
9203
|
-
},
|
|
9204
|
-
{
|
|
9205
|
-
name: "createRenderPipelineAsync",
|
|
9206
|
-
signatures: [["descriptor"]]
|
|
9207
|
-
},
|
|
9208
|
-
{
|
|
9209
|
-
name: "createComputePipelineAsync",
|
|
9210
|
-
signatures: [["descriptor"]]
|
|
9211
|
-
},
|
|
9212
|
-
{
|
|
9213
|
-
name: "createCommandEncoder",
|
|
9214
|
-
signatures: [["?descriptor"]]
|
|
9215
|
-
},
|
|
9216
|
-
{
|
|
9217
|
-
name: "createRenderBundleEncoder",
|
|
9218
|
-
signatures: [["descriptor"]]
|
|
9219
|
-
},
|
|
9220
|
-
{
|
|
9221
|
-
name: "createQuerySet",
|
|
9222
|
-
signatures: [["descriptor"]]
|
|
9223
|
-
},
|
|
9224
|
-
{
|
|
9225
|
-
name: "pushErrorScope",
|
|
9226
|
-
signatures: [["filter"]]
|
|
9227
|
-
},
|
|
9228
9338
|
{
|
|
9229
9339
|
name: "GPUInternalError",
|
|
9230
9340
|
signatures: [["message"]]
|
|
@@ -9233,86 +9343,18 @@ export const NativeFunctions = [
|
|
|
9233
9343
|
name: "GPUOutOfMemoryError",
|
|
9234
9344
|
signatures: [["message"]]
|
|
9235
9345
|
},
|
|
9236
|
-
{
|
|
9237
|
-
name: "getBindGroupLayout",
|
|
9238
|
-
signatures: [["index"]]
|
|
9239
|
-
},
|
|
9240
9346
|
{
|
|
9241
9347
|
name: "GPUPipelineError",
|
|
9242
9348
|
signatures: [["?message","options"]]
|
|
9243
9349
|
},
|
|
9244
|
-
{
|
|
9245
|
-
name: "setBindGroup",
|
|
9246
|
-
signatures: [["index","bindGroup","?dynamicOffsets"],["index","bindGroup","dynamicOffsetsData","dynamicOffsetsDataStart","dynamicOffsetsDataLength"]]
|
|
9247
|
-
},
|
|
9248
9350
|
{
|
|
9249
9351
|
name: "setImmediates",
|
|
9250
9352
|
signatures: [["rangeOffset","data","?dataOffset","?size"]]
|
|
9251
9353
|
},
|
|
9252
|
-
{
|
|
9253
|
-
name: "writeBuffer",
|
|
9254
|
-
signatures: [["buffer","bufferOffset","data","?dataElementOffset","?dataElementCount"],["buffer","bufferOffset","data","?dataByteOffset","?byteSize"]]
|
|
9255
|
-
},
|
|
9256
|
-
{
|
|
9257
|
-
name: "writeTexture",
|
|
9258
|
-
signatures: [["destination","data","dataLayout","size"]]
|
|
9259
|
-
},
|
|
9260
|
-
{
|
|
9261
|
-
name: "copyExternalImageToTexture",
|
|
9262
|
-
signatures: [["source","destination","copySize"]]
|
|
9263
|
-
},
|
|
9264
9354
|
{
|
|
9265
9355
|
name: "copyElementImageToTexture",
|
|
9266
9356
|
signatures: [["source","destination"],["source","width","height","destination"],["source","sx","sy","swidth","sheight","destination"]]
|
|
9267
9357
|
},
|
|
9268
|
-
{
|
|
9269
|
-
name: "setIndexBuffer",
|
|
9270
|
-
signatures: [["buffer","format","?offset","?size"]]
|
|
9271
|
-
},
|
|
9272
|
-
{
|
|
9273
|
-
name: "setVertexBuffer",
|
|
9274
|
-
signatures: [["slot","buffer","?offset","?size"]]
|
|
9275
|
-
},
|
|
9276
|
-
{
|
|
9277
|
-
name: "draw",
|
|
9278
|
-
signatures: [["vertexCount","?instanceCount","?firstVertex","?firstInstance"]]
|
|
9279
|
-
},
|
|
9280
|
-
{
|
|
9281
|
-
name: "drawIndexed",
|
|
9282
|
-
signatures: [["indexCount","?instanceCount","?firstIndex","?baseVertex","?firstInstance"]]
|
|
9283
|
-
},
|
|
9284
|
-
{
|
|
9285
|
-
name: "drawIndirect",
|
|
9286
|
-
signatures: [["indirectBuffer","indirectOffset"]]
|
|
9287
|
-
},
|
|
9288
|
-
{
|
|
9289
|
-
name: "drawIndexedIndirect",
|
|
9290
|
-
signatures: [["indirectBuffer","indirectOffset"]]
|
|
9291
|
-
},
|
|
9292
|
-
{
|
|
9293
|
-
name: "setViewport",
|
|
9294
|
-
signatures: [["x","y","width","height","minDepth","maxDepth"]]
|
|
9295
|
-
},
|
|
9296
|
-
{
|
|
9297
|
-
name: "setScissorRect",
|
|
9298
|
-
signatures: [["x","y","width","height"]]
|
|
9299
|
-
},
|
|
9300
|
-
{
|
|
9301
|
-
name: "setBlendConstant",
|
|
9302
|
-
signatures: [["color"]]
|
|
9303
|
-
},
|
|
9304
|
-
{
|
|
9305
|
-
name: "setStencilReference",
|
|
9306
|
-
signatures: [["reference"]]
|
|
9307
|
-
},
|
|
9308
|
-
{
|
|
9309
|
-
name: "executeBundles",
|
|
9310
|
-
signatures: [["bundles"]]
|
|
9311
|
-
},
|
|
9312
|
-
{
|
|
9313
|
-
name: "beginOcclusionQuery",
|
|
9314
|
-
signatures: [["queryIndex"]]
|
|
9315
|
-
},
|
|
9316
9358
|
{
|
|
9317
9359
|
name: "multiDrawIndirect",
|
|
9318
9360
|
signatures: [["indirectBuffer","indirectOffset","maxDrawCount","?drawCountBuffer","?drawCountBufferOffset"]]
|
|
@@ -9321,10 +9363,6 @@ export const NativeFunctions = [
|
|
|
9321
9363
|
name: "multiDrawIndexedIndirect",
|
|
9322
9364
|
signatures: [["indirectBuffer","indirectOffset","maxDrawCount","?drawCountBuffer","?drawCountBufferOffset"]]
|
|
9323
9365
|
},
|
|
9324
|
-
{
|
|
9325
|
-
name: "createView",
|
|
9326
|
-
signatures: [["?descriptor"]]
|
|
9327
|
-
},
|
|
9328
9366
|
{
|
|
9329
9367
|
name: "GPUUncapturedErrorEvent",
|
|
9330
9368
|
signatures: [["type","gpuUncapturedErrorEventInitDict"]]
|
|
@@ -9333,10 +9371,6 @@ export const NativeFunctions = [
|
|
|
9333
9371
|
name: "GPUValidationError",
|
|
9334
9372
|
signatures: [["message"]]
|
|
9335
9373
|
},
|
|
9336
|
-
{
|
|
9337
|
-
name: "requestAdapter",
|
|
9338
|
-
signatures: [["?options"]]
|
|
9339
|
-
},
|
|
9340
9374
|
{
|
|
9341
9375
|
name: "MIDIConnectionEvent",
|
|
9342
9376
|
signatures: [["type","?eventInitDict"]]
|