Skip to content

Commit

Permalink
Publish curated data from f021301
Browse files Browse the repository at this point in the history
Curated data generated from raw data at f021301
  • Loading branch information
curation-bot committed Sep 22, 2024
1 parent e7dbca3 commit dd87737
Show file tree
Hide file tree
Showing 10 changed files with 122 additions and 63 deletions.
74 changes: 53 additions & 21 deletions ed/algorithms/observable.json

Large diffs are not rendered by default.

13 changes: 6 additions & 7 deletions ed/dfns/observable.json
Original file line number Diff line number Diff line change
Expand Up @@ -1280,15 +1280,15 @@
"definedIn": "pre"
},
{
"id": "dom-observable-inspect-inspect_observer-inspect_observer",
"href": "https://wicg.github.io/observable/#dom-observable-inspect-inspect_observer-inspect_observer",
"id": "dom-observable-inspect-inspectorunion-inspectorunion",
"href": "https://wicg.github.io/observable/#dom-observable-inspect-inspectorunion-inspectorunion",
"linkingText": [
"inspect_observer"
"inspectorUnion"
],
"localLinkingText": [],
"type": "argument",
"for": [
"Observable/inspect(inspect_observer)",
"Observable/inspect(inspectorUnion)",
"Observable/inspect()"
],
"access": "public",
Expand Down Expand Up @@ -1998,9 +1998,8 @@
"id": "dom-observable-inspect",
"href": "https://wicg.github.io/observable/#dom-observable-inspect",
"linkingText": [
"inspect(inspect_observer)",
"inspect()",
"inspect(inspector_union)"
"inspect(inspectorUnion)",
"inspect()"
],
"localLinkingText": [],
"type": "method",
Expand Down
21 changes: 21 additions & 0 deletions ed/dfns/permissions-policy-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,27 @@
},
"definedIn": "prose"
},
{
"id": "policy-controlled-feature-tokens",
"href": "https://w3c.github.io/webappsec-permissions-policy/#policy-controlled-feature-tokens",
"linkingText": [
"tokens"
],
"localLinkingText": [],
"type": "dfn",
"for": [
"policy-controlled-feature"
],
"access": "public",
"informative": false,
"heading": {
"id": "features",
"href": "https://w3c.github.io/webappsec-permissions-policy/#features",
"title": "Policy-controlled Features",
"number": "4.1"
},
"definedIn": "prose"
},
{
"id": "supported-features",
"href": "https://w3c.github.io/webappsec-permissions-policy/#supported-features",
Expand Down
2 changes: 1 addition & 1 deletion ed/idl/observable.idl
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ interface Observable {
Observable drop(unsigned long long amount);
Observable flatMap(Mapper mapper);
Observable switchMap(Mapper mapper);
Observable inspect(optional ObservableInspectorUnion inspect_observer = {});
Observable inspect(optional ObservableInspectorUnion inspectorUnion = {});
Observable catch(CatchCallback callback);
Observable finally(VoidFunction callback);

Expand Down
2 changes: 1 addition & 1 deletion ed/idlnames/Observable.idl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface Observable {
Observable drop(unsigned long long amount);
Observable flatMap(Mapper mapper);
Observable switchMap(Mapper mapper);
Observable inspect(optional ObservableInspectorUnion inspect_observer = {});
Observable inspect(optional ObservableInspectorUnion inspectorUnion = {});
Observable catch(CatchCallback callback);
Observable finally(VoidFunction callback);

Expand Down
2 changes: 1 addition & 1 deletion ed/idlnamesparsed/Observable.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"title": "Observable",
"url": "https://wicg.github.io/observable/"
},
"fragment": "[Exposed=*]\ninterface Observable {\n constructor(SubscribeCallback callback);\n undefined subscribe(optional ObserverUnion observer = {}, optional SubscribeOptions options = {});\n\n // Constructs a native Observable from value if it’s any of the following:\n // - Observable\n // - AsyncIterable\n // - Iterable\n // - Promise\n static Observable from(any value);\n\n // Observable-returning operators. See \"Operators\" section in the spec.\n //\n // takeUntil() can consume promises, iterables, async iterables, and other\n // observables.\n Observable takeUntil(any notifier);\n Observable map(Mapper mapper);\n Observable filter(Predicate predicate);\n Observable take(unsigned long long amount);\n Observable drop(unsigned long long amount);\n Observable flatMap(Mapper mapper);\n Observable switchMap(Mapper mapper);\n Observable inspect(optional ObservableInspectorUnion inspect_observer = {});\n Observable catch(CatchCallback callback);\n Observable finally(VoidFunction callback);\n\n // Promise-returning operators.\n Promise<sequence<any>> toArray(optional SubscribeOptions options = {});\n Promise<undefined> forEach(Visitor callback, optional SubscribeOptions options = {});\n Promise<boolean> every(Predicate predicate, optional SubscribeOptions options = {});\n Promise<any> first(optional SubscribeOptions options = {});\n Promise<any> last(optional SubscribeOptions options = {});\n Promise<any> find(Predicate predicate, optional SubscribeOptions options = {});\n Promise<boolean> some(Predicate predicate, optional SubscribeOptions options = {});\n Promise<any> reduce(Reducer reducer, optional any initialValue, optional SubscribeOptions options = {});\n};",
"fragment": "[Exposed=*]\ninterface Observable {\n constructor(SubscribeCallback callback);\n undefined subscribe(optional ObserverUnion observer = {}, optional SubscribeOptions options = {});\n\n // Constructs a native Observable from value if it’s any of the following:\n // - Observable\n // - AsyncIterable\n // - Iterable\n // - Promise\n static Observable from(any value);\n\n // Observable-returning operators. See \"Operators\" section in the spec.\n //\n // takeUntil() can consume promises, iterables, async iterables, and other\n // observables.\n Observable takeUntil(any notifier);\n Observable map(Mapper mapper);\n Observable filter(Predicate predicate);\n Observable take(unsigned long long amount);\n Observable drop(unsigned long long amount);\n Observable flatMap(Mapper mapper);\n Observable switchMap(Mapper mapper);\n Observable inspect(optional ObservableInspectorUnion inspectorUnion = {});\n Observable catch(CatchCallback callback);\n Observable finally(VoidFunction callback);\n\n // Promise-returning operators.\n Promise<sequence<any>> toArray(optional SubscribeOptions options = {});\n Promise<undefined> forEach(Visitor callback, optional SubscribeOptions options = {});\n Promise<boolean> every(Predicate predicate, optional SubscribeOptions options = {});\n Promise<any> first(optional SubscribeOptions options = {});\n Promise<any> last(optional SubscribeOptions options = {});\n Promise<any> find(Predicate predicate, optional SubscribeOptions options = {});\n Promise<boolean> some(Predicate predicate, optional SubscribeOptions options = {});\n Promise<any> reduce(Reducer reducer, optional any initialValue, optional SubscribeOptions options = {});\n};",
"href": "https://wicg.github.io/observable/#observable"
},
"extended": [],
Expand Down
4 changes: 2 additions & 2 deletions ed/idlparsed/observable.json
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@
"href": "https://wicg.github.io/observable/#callbackdef-catchcallback"
},
"Observable": {
"fragment": "[Exposed=*]\ninterface Observable {\n constructor(SubscribeCallback callback);\n undefined subscribe(optional ObserverUnion observer = {}, optional SubscribeOptions options = {});\n\n // Constructs a native Observable from value if it’s any of the following:\n // - Observable\n // - AsyncIterable\n // - Iterable\n // - Promise\n static Observable from(any value);\n\n // Observable-returning operators. See \"Operators\" section in the spec.\n //\n // takeUntil() can consume promises, iterables, async iterables, and other\n // observables.\n Observable takeUntil(any notifier);\n Observable map(Mapper mapper);\n Observable filter(Predicate predicate);\n Observable take(unsigned long long amount);\n Observable drop(unsigned long long amount);\n Observable flatMap(Mapper mapper);\n Observable switchMap(Mapper mapper);\n Observable inspect(optional ObservableInspectorUnion inspect_observer = {});\n Observable catch(CatchCallback callback);\n Observable finally(VoidFunction callback);\n\n // Promise-returning operators.\n Promise<sequence<any>> toArray(optional SubscribeOptions options = {});\n Promise<undefined> forEach(Visitor callback, optional SubscribeOptions options = {});\n Promise<boolean> every(Predicate predicate, optional SubscribeOptions options = {});\n Promise<any> first(optional SubscribeOptions options = {});\n Promise<any> last(optional SubscribeOptions options = {});\n Promise<any> find(Predicate predicate, optional SubscribeOptions options = {});\n Promise<boolean> some(Predicate predicate, optional SubscribeOptions options = {});\n Promise<any> reduce(Reducer reducer, optional any initialValue, optional SubscribeOptions options = {});\n};",
"fragment": "[Exposed=*]\ninterface Observable {\n constructor(SubscribeCallback callback);\n undefined subscribe(optional ObserverUnion observer = {}, optional SubscribeOptions options = {});\n\n // Constructs a native Observable from value if it’s any of the following:\n // - Observable\n // - AsyncIterable\n // - Iterable\n // - Promise\n static Observable from(any value);\n\n // Observable-returning operators. See \"Operators\" section in the spec.\n //\n // takeUntil() can consume promises, iterables, async iterables, and other\n // observables.\n Observable takeUntil(any notifier);\n Observable map(Mapper mapper);\n Observable filter(Predicate predicate);\n Observable take(unsigned long long amount);\n Observable drop(unsigned long long amount);\n Observable flatMap(Mapper mapper);\n Observable switchMap(Mapper mapper);\n Observable inspect(optional ObservableInspectorUnion inspectorUnion = {});\n Observable catch(CatchCallback callback);\n Observable finally(VoidFunction callback);\n\n // Promise-returning operators.\n Promise<sequence<any>> toArray(optional SubscribeOptions options = {});\n Promise<undefined> forEach(Visitor callback, optional SubscribeOptions options = {});\n Promise<boolean> every(Predicate predicate, optional SubscribeOptions options = {});\n Promise<any> first(optional SubscribeOptions options = {});\n Promise<any> last(optional SubscribeOptions options = {});\n Promise<any> find(Predicate predicate, optional SubscribeOptions options = {});\n Promise<boolean> some(Predicate predicate, optional SubscribeOptions options = {});\n Promise<any> reduce(Reducer reducer, optional any initialValue, optional SubscribeOptions options = {});\n};",
"type": "interface",
"name": "Observable",
"inheritance": null,
Expand Down Expand Up @@ -1130,7 +1130,7 @@
"arguments": [
{
"type": "argument",
"name": "inspect_observer",
"name": "inspectorUnion",
"extAttrs": [],
"idlType": {
"type": "argument-type",
Expand Down
40 changes: 23 additions & 17 deletions ed/ids/observable.json
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@
"https://wicg.github.io/observable/#ref-for-observable%E2%91%A8",
"https://wicg.github.io/observable/#ref-for-dom-observable-inspect",
"https://wicg.github.io/observable/#ref-for-typedefdef-observableinspectorunion",
"https://wicg.github.io/observable/#dom-observable-inspect-inspect_observer-inspect_observer",
"https://wicg.github.io/observable/#dom-observable-inspect-inspectorunion-inspectorunion",
"https://wicg.github.io/observable/#ref-for-observable%E2%91%A0%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-dom-observable-catch",
"https://wicg.github.io/observable/#ref-for-callbackdef-catchcallback",
Expand Down Expand Up @@ -1003,11 +1003,17 @@
"https://wicg.github.io/observable/#ref-for-abortsignal-remove%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-subscriber-subscription-controller%E2%91%A0%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-abortcontroller-signal%E2%91%A0%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A0%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A0%E2%91%A8",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-error%E2%91%A1%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-error%E2%91%A1%E2%91%A2",
"https://wicg.github.io/observable/#ref-for-internal-observer-complete-steps%E2%91%A0%E2%91%A2",
"https://wicg.github.io/observable/#ref-for-abortsignal-remove%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-subscriber-subscription-controller%E2%91%A0%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-abortcontroller-signal%E2%91%A0%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A0%E2%91%A6",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-error%E2%91%A1%E2%91%A3",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-complete%E2%91%A0%E2%91%A6",
"https://wicg.github.io/observable/#ref-for-dictdef-subscribeoptions%E2%91%A1%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-dom-subscribeoptions-signal%E2%91%A0%E2%91%A4",
Expand All @@ -1028,19 +1034,19 @@
"https://wicg.github.io/observable/#ref-for-internal-observer-next-steps%E2%91%A0%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-next%E2%91%A0%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-internal-observer-error-steps%E2%91%A0%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A0%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A0%E2%91%A8",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-error%E2%91%A1%E2%91%A2",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A0%E2%91%A7",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-error%E2%91%A1%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-dom-observable-from%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-error%E2%91%A1%E2%91%A3",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-error%E2%91%A1%E2%91%A5",
"https://wicg.github.io/observable/#issue-4eb2abb1%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-dom-observable-from%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-internal-observer%E2%91%A0%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-internal-observer-next-steps%E2%91%A0%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-next%E2%91%A0%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-internal-observer-error-steps%E2%91%A0%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-error%E2%91%A1%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-error%E2%91%A1%E2%91%A6",
"https://wicg.github.io/observable/#ref-for-internal-observer-complete-steps%E2%91%A0%E2%91%A3",
"https://wicg.github.io/observable/#ref-for-dom-subscriber-complete%E2%91%A0%E2%91%A7",
"https://wicg.github.io/observable/#ref-for-dictdef-subscribeoptions%E2%91%A1%E2%91%A0",
Expand Down Expand Up @@ -1146,8 +1152,8 @@
"https://wicg.github.io/observable/#ref-for-idl-unsigned-long-long%E2%91%A0%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-internal-observer%E2%91%A0%E2%91%A8",
"https://wicg.github.io/observable/#ref-for-internal-observer-next-steps%E2%91%A1%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A0%E2%91%A6",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A0%E2%91%A8",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A2",
"https://wicg.github.io/observable/#ref-for-reject%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-abortcontroller-signal-abort%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-internal-observer-error-steps%E2%91%A1%E2%93%AA",
Expand Down Expand Up @@ -1185,8 +1191,8 @@
"https://wicg.github.io/observable/#ref-for-idl-unsigned-long-long%E2%91%A0%E2%91%A2",
"https://wicg.github.io/observable/#ref-for-internal-observer%E2%91%A1%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-internal-observer-next-steps%E2%91%A1%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A0%E2%91%A7",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A1%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A3",
"https://wicg.github.io/observable/#ref-for-reject%E2%91%A0%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-abortcontroller-signal-abort%E2%91%A2",
"https://wicg.github.io/observable/#ref-for-resolve%E2%91%A1",
Expand Down Expand Up @@ -1294,8 +1300,8 @@
"https://wicg.github.io/observable/#ref-for-idl-unsigned-long-long%E2%91%A0%E2%91%A3",
"https://wicg.github.io/observable/#ref-for-internal-observer%E2%91%A1%E2%91%A2",
"https://wicg.github.io/observable/#ref-for-internal-observer-next-steps%E2%91%A1%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A0%E2%91%A8",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A2",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A1%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-reject%E2%91%A1%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-abortcontroller-signal-abort%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-resolve%E2%91%A7",
Expand Down Expand Up @@ -1335,8 +1341,8 @@
"https://wicg.github.io/observable/#ref-for-idl-unsigned-long-long%E2%91%A0%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-internal-observer%E2%91%A1%E2%91%A3",
"https://wicg.github.io/observable/#ref-for-internal-observer-next-steps%E2%91%A1%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A1%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A3",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A1%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A5",
"https://wicg.github.io/observable/#ref-for-reject%E2%91%A1%E2%91%A3",
"https://wicg.github.io/observable/#ref-for-abortcontroller-signal-abort%E2%91%A7",
"https://wicg.github.io/observable/#ref-for-resolve%E2%91%A0%E2%93%AA",
Expand Down Expand Up @@ -1379,11 +1385,11 @@
"https://wicg.github.io/observable/#ref-for-dom-reducer-currentvalue",
"https://wicg.github.io/observable/#ref-for-dom-reducer-currentvalue%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-dom-reducer-accumulator",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A1%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-invoke-a-callback-function%E2%91%A1%E2%91%A2",
"https://wicg.github.io/observable/#ref-for-dom-reducer-accumulator%E2%91%A0",
"https://wicg.github.io/observable/#ref-for-dom-reducer-currentvalue%E2%91%A1",
"https://wicg.github.io/observable/#ref-for-dom-reducer-index",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A4",
"https://wicg.github.io/observable/#ref-for-an-exception-was-thrown%E2%91%A1%E2%91%A6",
"https://wicg.github.io/observable/#ref-for-reject%E2%91%A1%E2%91%A7",
"https://wicg.github.io/observable/#ref-for-abortcontroller-signal-abort%E2%91%A0%E2%93%AA",
"https://wicg.github.io/observable/#ref-for-internal-observer-error-steps%E2%91%A1%E2%91%A5",
Expand Down
Loading

0 comments on commit dd87737

Please sign in to comment.