惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tenable Blog
博客园_首页
Vercel News
Vercel News
WordPress大学
WordPress大学
美团技术团队
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Y
Y Combinator Blog
博客园 - 【当耐特】
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
腾讯CDC
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Recent Announcements
Recent Announcements
雷峰网
雷峰网
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
The Register - Security
The Register - Security
Jina AI
Jina AI
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Hugging Face - Blog
Hugging Face - Blog
P
Privacy & Cybersecurity Law Blog
Recorded Future
Recorded Future
Help Net Security
Help Net Security
N
News and Events Feed by Topic
博客园 - Franky
P
Proofpoint News Feed
L
LINUX DO - 热门话题
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
D
Docker
Google DeepMind News
Google DeepMind News
有赞技术团队
有赞技术团队
IT之家
IT之家
Security Latest
Security Latest
L
LangChain Blog
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks

Recent Commits to webidl:main

Editorial: update PropertyDescriptor [[Get]]/[[Set]] to [[Getter]]/[[… · whatwg/webidl@fad9b4c Editorial: use CreateBuiltinFunction for more built-in function objects · whatwg/webidl@9769865 Update DOMException language to reflect standardized stack accessor Editorial: note that Promise<T> arguments also accept T · whatwg/webidl@e1300e9 Review Draft Publication: March 2026 · whatwg/webidl@a652053 Meta: update repository files · whatwg/webidl@9db3040 Meta: update repository files · whatwg/webidl@9f8514a Meta: add two missing <tr> tags · whatwg/webidl@a6602fd Create an operation does not care about [LegacyLenientThis] · whatwg/webidl@4c55acb Add missing arguments for CreateBuiltinFunction · whatwg/webidl@fb0c9c9 Meta: export async_iterable · whatwg/webidl@25875a8 Review Draft Publication: September 2025 · whatwg/webidl@a79e69e Replace IsResizableArrayBuffer with IsFixedLengthArrayBuffer · whatwg/webidl@abc4414 Meta: link to Korean translations · whatwg/webidl@278f0bd Introduce new extended attribute grammars · whatwg/webidl@ef2df44 Upgrade QuotaExceededError to a DOMException derived interface Remove `async` as a keyword Do not throw if the attribute setter is called with no arguments · whatwg/webidl@909c3fe Change async_iterable<> type to async_sequence<> and async iterable<>…
Editorial: use CreateBuiltinFunction for (async) iterator return and … · whatwg/webidl@29fb50e
nicolo-ribau · 2026-06-22 · via Recent Commits to webidl:main
Original file line numberDiff line numberDiff line change

@@ -12946,7 +12946,8 @@ must be {{%Iterator.prototype%}}.

1294612946
1294712947

An [=iterator prototype object=] must have a <code class="idl">next</code> data property with attributes

1294812948

{ \[[Writable]]: <emu-val>true</emu-val>, \[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> }

12949-

and whose value is a [=built-in function object=] that behaves as follows:

12949+

and whose value is the [=built-in function object=] [$CreateBuiltinFunction$](|nextSteps|, 0, "<code>next</code>", « »),

12950+

where |nextSteps| is the following algorithm:

1295012951
1295112952

1. Let |interface| be the [=interface=] for which the

1295212953

[=iterator prototype object=] exists.

@@ -13119,7 +13120,8 @@ The \[[Prototype]] [=/internal slot=] of an [=asynchronous iterator prototype ob

1311913120

An [=asynchronous iterator prototype object=] must have a <code class="idl">next</code> data

1312013121

property with attributes { \[[Writable]]: <emu-val>true</emu-val>,

1312113122

\[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> }

13122-

and whose value is a [=built-in function object=] that behaves as follows:

13123+

and whose value is the [=built-in function object=] [$CreateBuiltinFunction$](|nextSteps|, 0, "<code>next</code>", « »),

13124+

where |nextSteps| is the following algorithm:

1312313125
1312413126

1. Let |interface| be the [=interface=] for which the

1312513127

[=asynchronous iterator prototype object=] exists.

@@ -13208,8 +13210,8 @@ The \[[Prototype]] [=/internal slot=] of an [=asynchronous iterator prototype ob

1320813210

[=asynchronous iterator prototype object=] must have a <code class="idl">return</code> data

1320913211

property with attributes { \[[Writable]]: <emu-val>true</emu-val>,

1321013212

\[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> }

13211-

and whose value is a [=built-in function object=], taking one argument |value|, that behaves as

13212-

follows:

13213+

and whose value is the [=built-in function object=] [$CreateBuiltinFunction$](|returnSteps|, 1, "<code>return</code>", « »),

13214+

where |returnSteps| is the following algorithm taking one argument |value|:

1321313215
1321413216

1. Let |interface| be the [=interface=] for which the

1321513217

[=asynchronous iterator prototype object=] exists.